diff --git a/Content.IntegrationTests/Tests/PostMapInitTest.cs b/Content.IntegrationTests/Tests/PostMapInitTest.cs index 66e1151bd9..c2d0d483e7 100644 --- a/Content.IntegrationTests/Tests/PostMapInitTest.cs +++ b/Content.IntegrationTests/Tests/PostMapInitTest.cs @@ -44,19 +44,9 @@ public sealed class PostMapInitTest private static readonly string[] GameMaps = { - "Angle", - "Arena", "CentComm", "Dev", - "Glacier", - "Hammurabi", - "Lighthouse", - "Northway", - "Ovni", - "Pebble", - "Shoukou", - "TheHive", - "Tortuga", + "ParkStation", }; /// diff --git a/Content.IntegrationTests/Tests/PrototypeSaveTest.cs b/Content.IntegrationTests/Tests/PrototypeSaveTest.cs index 443dff7cb8..5c464c58c1 100644 --- a/Content.IntegrationTests/Tests/PrototypeSaveTest.cs +++ b/Content.IntegrationTests/Tests/PrototypeSaveTest.cs @@ -36,15 +36,51 @@ public sealed class PrototypeSaveTest // Don't add to this list unless you have a good reason // Or it is just temporary because tests stopped working and now master has too many broken entities. - // Sorry, I'm adding to the list :) - "ClothingOuterPurpleCoat", - "MagicMedipen", - "Sleeper", + // TODO: I don't want to figure out what's wrong with these right now - Death "SleeperPod", - "SleeperParty", + "SurveillanceCameraService", + "BenchParkMiddle", + "MobRevenant", + "SurveillanceCameraEngineering", + "ChairCarp", + "SurveillanceCameraConstructed", + "BenchParkRight", + "SiliconChargerIndustrial", + "Sleeper", + "SurveillanceCameraGeneral", + "BenchSofaCorpLeft", + "BenchSofaMiddle", + "WeaponFlamethrower", + "SurveillanceCameraCommand", + "BenchSofaCorpCorner", + "BenchPewLeft", + "BenchParkBambooMiddle", "SleeperClockwork", + "ChairBrass", + "BenchSteelMiddle", + "BenchParkBambooLeft", + "SurveillanceCameraSecurity", + "BenchSteelLeft", + "BenchPewRight", + "BenchParkLeft", + "ClothingOuterPurpleCoat", + "BenchSteelWhiteMiddle", + "BenchSteelWhiteRight", + "BenchSofaCorner", + "SleeperParty", + "SurveillanceCameraScience", + "BenchSofaLeft", + "BenchPewMiddle", + "BenchSofaCorpRight", + "BenchSteelRight", + "BenchSteelWhiteLeft", + "BenchSofaRight", + "BenchParkBambooRight", + "SurveillanceCameraMedical", + "SurveillanceCameraSupply", "SleeperSyndicate", - "WeaponFlamethrower", + "BenchSofaCorpMiddle", + "MobObserverTelegnostic", }; [Test] diff --git a/Content.Server/Administration/UI/AdminAnnounceEui.cs b/Content.Server/Administration/UI/AdminAnnounceEui.cs index e053609b80..315f7ba76e 100644 --- a/Content.Server/Administration/UI/AdminAnnounceEui.cs +++ b/Content.Server/Administration/UI/AdminAnnounceEui.cs @@ -17,14 +17,14 @@ public sealed class AdminAnnounceEui : BaseEui [Dependency] private readonly IAdminManager _adminManager = default!; [Dependency] private readonly IChatManager _chatManager = default!; [Dependency] private readonly IPrototypeManager _proto = default!; - private readonly AnnouncerSystem _announcerSystem; + private readonly AnnouncerSystem _announcerSystem; // Parkstation-RandomAnnouncers private readonly ChatSystem _chatSystem; public AdminAnnounceEui() { IoCManager.InjectDependencies(this); _chatSystem = IoCManager.Resolve().GetEntitySystem(); - _announcerSystem = IoCManager.Resolve().GetEntitySystem(); + _announcerSystem = IoCManager.Resolve().GetEntitySystem(); // Parkstation-RandomAnnouncers } public override void Opened() diff --git a/Content.Server/AlertLevel/AlertLevelSystem.cs b/Content.Server/AlertLevel/AlertLevelSystem.cs index 1ddbe299b5..6c9aed7525 100644 --- a/Content.Server/AlertLevel/AlertLevelSystem.cs +++ b/Content.Server/AlertLevel/AlertLevelSystem.cs @@ -15,7 +15,7 @@ public sealed class AlertLevelSystem : EntitySystem [Dependency] private readonly IPrototypeManager _prototypeManager = default!; [Dependency] private readonly ChatSystem _chatSystem = default!; [Dependency] private readonly StationSystem _stationSystem = default!; - [Dependency] private readonly AnnouncerSystem _announcerSystem = default!; + [Dependency] private readonly AnnouncerSystem _announcerSystem = default!; // Parkstation-RandomAnnouncers [Dependency] private readonly IConfigurationManager _cfg = default!; // Until stations are a prototype, this is how it's going to have to be. @@ -173,6 +173,7 @@ public void SetLevel(EntityUid station, string level, bool playSound, bool annou // var playDefault = false; if (playSound) { + // Parkstation-RandomAnnouncers Start // if (detail.Sound != null) // { // var filter = _stationSystem.GetInOwningStation(station); @@ -184,14 +185,17 @@ public void SetLevel(EntityUid station, string level, bool playSound, bool annou // } _announcerSystem.SendAnnouncementAudio($"alert{level}", _stationSystem.GetInOwningStation(station)); + // Parkstation-RandomAnnouncers End } if (announce) { + // Parkstation-RandomAnnouncers Start // _chatSystem.DispatchStationAnnouncement(station, announcementFull, playDefaultSound: playDefault, // colorOverride: detail.Color, sender: stationName); _announcerSystem.SendAnnouncementMessage($"alert{level}", announcementFull, stationName, detail.Color, station); + // Parkstation-RandomAnnouncers End } RaiseLocalEvent(new AlertLevelChangedEvent(station, level)); diff --git a/Content.Server/Communications/CommunicationsConsoleSystem.cs b/Content.Server/Communications/CommunicationsConsoleSystem.cs index 63f36f65e2..46a02773a3 100644 --- a/Content.Server/Communications/CommunicationsConsoleSystem.cs +++ b/Content.Server/Communications/CommunicationsConsoleSystem.cs @@ -38,7 +38,7 @@ public sealed class CommunicationsConsoleSystem : EntitySystem [Dependency] private readonly StationSystem _stationSystem = default!; [Dependency] private readonly IConfigurationManager _cfg = default!; [Dependency] private readonly IAdminLogManager _adminLogger = default!; - [Dependency] private readonly AnnouncerSystem _announcerSystem = default!; + [Dependency] private readonly AnnouncerSystem _announcerSystem = default!; // Parkstation-RandomAnnouncers [Dependency] private readonly UserInterfaceSystem _uiSystem = default!; private const int MaxMessageLength = 256; @@ -273,16 +273,20 @@ private void OnAnnounceMessage(EntityUid uid, CommunicationsConsoleComponent com msg += "\n" + Loc.GetString("comms-console-announcement-sent-by") + " " + author; if (comp.AnnounceGlobal) { + // Parkstation-RandomAnnouncers Start // _chatSystem.DispatchGlobalAnnouncement(msg, title, announcementSound: comp.AnnouncementSound, colorOverride: comp.AnnouncementColor); _announcerSystem.SendAnnouncement("announce", Filter.Broadcast(), msg, title, comp.AnnouncementColor); + // Parkstation-RandomAnnouncers End if (message.Session.AttachedEntity != null) _adminLogger.Add(LogType.Chat, LogImpact.Low, $"{ToPrettyString(message.Session.AttachedEntity.Value):player} has sent the following global announcement: {msg}"); return; } + // Parkstation-RandomAnnouncers Start // _chatSystem.DispatchStationAnnouncement(uid, msg, title, colorOverride: comp.AnnouncementColor); _announcerSystem.SendAnnouncement("announce", Filter.Broadcast(), msg, title, comp.AnnouncementColor); + // Parkstation-RandomAnnouncers End if (message.Session.AttachedEntity != null) _adminLogger.Add(LogType.Chat, LogImpact.Low, $"{ToPrettyString(message.Session.AttachedEntity.Value):player} has sent the following station announcement: {msg}"); diff --git a/Content.Server/Entry/IgnoredComponents.cs b/Content.Server/Entry/IgnoredComponents.cs index 5cad53c459..3294b43030 100644 --- a/Content.Server/Entry/IgnoredComponents.cs +++ b/Content.Server/Entry/IgnoredComponents.cs @@ -10,7 +10,6 @@ public static class IgnoredComponents "ItemStatus", "Marker", "GuidebookControlsTest", - "GuidebookBook", "GuideHelp", "Clickable", "Icon", diff --git a/Content.Server/GameTicking/GameTicker.RoundFlow.cs b/Content.Server/GameTicking/GameTicker.RoundFlow.cs index 88d78f6e98..12c3bfade1 100644 --- a/Content.Server/GameTicking/GameTicker.RoundFlow.cs +++ b/Content.Server/GameTicking/GameTicker.RoundFlow.cs @@ -27,7 +27,7 @@ namespace Content.Server.GameTicking public sealed partial class GameTicker { [Dependency] private readonly ITaskManager _taskManager = default!; - [Dependency] private readonly AnnouncerSystem _announcerSystem = default!; + [Dependency] private readonly AnnouncerSystem _announcerSystem = default!; // Parkstation-RandomAnnouncers private static readonly Counter RoundNumberMetric = Metrics.CreateCounter( "ss14_round_number", @@ -563,6 +563,7 @@ private void AnnounceRound() var proto = _robustRandom.Pick(options); + // Parkstation-RandomAnnouncers Start // if (proto.Message != null) // _chatSystem.DispatchGlobalAnnouncement(Loc.GetString(proto.Message), playSound: true); // @@ -570,6 +571,7 @@ private void AnnounceRound() // SoundSystem.Play(proto.Sound.GetSound(), Filter.Broadcast()); _announcerSystem.SendAnnouncement(proto.ID, Filter.Broadcast(), Loc.GetString(proto.Message ?? "game-ticker-welcome-to-the-station")); + // Parkstation-RandomAnnouncers End } } diff --git a/Content.Server/Nyanotrasen/Fugitive/FugitiveSystem.cs b/Content.Server/Nyanotrasen/Fugitive/FugitiveSystem.cs index 3e65d6f550..ea676de5fa 100644 --- a/Content.Server/Nyanotrasen/Fugitive/FugitiveSystem.cs +++ b/Content.Server/Nyanotrasen/Fugitive/FugitiveSystem.cs @@ -45,7 +45,7 @@ public sealed class FugitiveSystem : EntitySystem [Dependency] private readonly PopupSystem _popupSystem = default!; [Dependency] private readonly StunSystem _stun = default!; [Dependency] private readonly AudioSystem _audioSystem = default!; - [Dependency] private readonly AnnouncerSystem _announcerSystem = default!; + [Dependency] private readonly AnnouncerSystem _announcerSystem = default!; // Parkstation-RandomAnnouncers [Dependency] private readonly MindSystem _mindSystem = default!; public override void Initialize() @@ -63,8 +63,10 @@ public override void Update(float frameTime) { if (cd.AnnounceTime != null && _timing.CurTime > cd.AnnounceTime) { + // Parkstation-RandomAnnouncers Start // _chat.DispatchGlobalAnnouncement(Loc.GetString("station-event-fugitive-hunt-announcement"), sender: Loc.GetString("fugitive-announcement-GALPOL"), colorOverride: Color.Yellow); _announcerSystem.SendAnnouncement("commandreport", Filter.Broadcast(), Loc.GetString("station-event-fugitive-hunt-announcement"), Loc.GetString("fugitive-announcement-GALPOL"), Color.Yellow); + // Parkstation-RandomAnnouncers End foreach (var console in EntityQuery()) { diff --git a/Content.Server/Shuttles/Systems/EmergencyShuttleSystem.cs b/Content.Server/Shuttles/Systems/EmergencyShuttleSystem.cs index f1dbf7eacd..2d9cd7ce31 100644 --- a/Content.Server/Shuttles/Systems/EmergencyShuttleSystem.cs +++ b/Content.Server/Shuttles/Systems/EmergencyShuttleSystem.cs @@ -54,7 +54,7 @@ public sealed partial class EmergencyShuttleSystem : EntitySystem [Dependency] private readonly ShuttleSystem _shuttle = default!; [Dependency] private readonly StationSystem _station = default!; [Dependency] private readonly UserInterfaceSystem _uiSystem = default!; - [Dependency] private readonly AnnouncerSystem _announcer = default!; + [Dependency] private readonly AnnouncerSystem _announcer = default!; // Parkstation-RandomAnnouncers private ISawmill _sawmill = default!; @@ -188,15 +188,17 @@ public void CallEmergencyShuttle(EntityUid stationUid, StationEmergencyShuttleCo if (targetGrid == null) { _logger.Add(LogType.EmergencyShuttle, LogImpact.High, $"Emergency shuttle {ToPrettyString(stationUid)} unable to dock with station {ToPrettyString(stationUid)}"); + // Parkstation-RandomAnnouncers Start // _chatSystem.DispatchStationAnnouncement(stationUid, Loc.GetString("emergency-shuttle-good-luck"), playDefaultSound: false); - // // TODO: Need filter extensions or something don't blame me. - // _audio.PlayGlobal("/Audio/Misc/notice1.ogg", Filter.Broadcast(), true); + // // TODO: Need filter extensions or something don't blame me. + // _audio.PlayGlobal("/Audio/Misc/notice1.ogg", Filter.Broadcast(), true); - _announcer.SendAnnouncement("shuttledock", Filter.Broadcast(), - Loc.GetString("emergency-shuttle-good-luck"), - Loc.GetString("comms-console-announcement-title-centcom")); - return; - } + _announcer.SendAnnouncement("shuttledock", Filter.Broadcast(), + Loc.GetString("emergency-shuttle-good-luck"), + Loc.GetString("comms-console-announcement-title-centcom")); + // Parkstation-RandomAnnouncers End + return; + } var xformQuery = GetEntityQuery(); @@ -205,24 +207,28 @@ public void CallEmergencyShuttle(EntityUid stationUid, StationEmergencyShuttleCo if (TryComp(targetGrid.Value, out var targetXform)) { var angle = _dock.GetAngle(stationShuttle.EmergencyShuttle.Value, xform, targetGrid.Value, targetXform, xformQuery); + // Parkstation-RandomAnnouncers Start // _chatSystem.DispatchStationAnnouncement(stationUid, Loc.GetString("emergency-shuttle-docked", ("time", $"{_consoleAccumulator:0}"), ("direction", angle.GetDir())), playDefaultSound: false); - _announcer.SendAnnouncementMessage("shuttledock", - Loc.GetString("emergency-shuttle-docked",("time", $"{_consoleAccumulator:0}"), ("direction", angle.GetDir())), - Loc.GetString("comms-console-announcement-title-centcom")); - } + _announcer.SendAnnouncementMessage("shuttledock", + Loc.GetString("emergency-shuttle-docked",("time", $"{_consoleAccumulator:0}"), ("direction", angle.GetDir())), + Loc.GetString("comms-console-announcement-title-centcom")); + // Parkstation-RandomAnnouncers End + } _logger.Add(LogType.EmergencyShuttle, LogImpact.High, $"Emergency shuttle {ToPrettyString(stationUid)} docked with stations"); // TODO: Need filter extensions or something don't blame me. + // Parkstation-RandomAnnouncers Start // _audio.PlayGlobal("/Audio/Announcements/shuttle_dock.ogg", Filter.Broadcast(), true); - _announcer.SendAnnouncementAudio("shuttledock", Filter.Broadcast()); - } - else - { - if (TryComp(targetGrid.Value, out var targetXform)) - { - var angle = _dock.GetAngle(stationShuttle.EmergencyShuttle.Value, xform, targetGrid.Value, targetXform, xformQuery); - _chatSystem.DispatchStationAnnouncement(stationUid, Loc.GetString("emergency-shuttle-nearby", ("direction", angle.GetDir())), playDefaultSound: false); - } + _announcer.SendAnnouncementAudio("shuttledock", Filter.Broadcast()); + // Parkstation-RandomAnnouncers End + } + else + { + if (TryComp(targetGrid.Value, out var targetXform)) + { + var angle = _dock.GetAngle(stationShuttle.EmergencyShuttle.Value, xform, targetGrid.Value, targetXform, xformQuery); + _chatSystem.DispatchStationAnnouncement(stationUid, Loc.GetString("emergency-shuttle-nearby", ("direction", angle.GetDir())), playDefaultSound: false); + } _logger.Add(LogType.EmergencyShuttle, LogImpact.High, $"Emergency shuttle {ToPrettyString(stationUid)} unable to find a valid docking port for {ToPrettyString(stationUid)}"); // TODO: Need filter extensions or something don't blame me. diff --git a/Content.Server/SimpleStation14/EndOfRoundStats/SlippedCount/SlippedCountStatSystem.cs b/Content.Server/SimpleStation14/EndOfRoundStats/SlippedCount/SlippedCountStatSystem.cs index b0085c8860..9ef8f25780 100644 --- a/Content.Server/SimpleStation14/EndOfRoundStats/SlippedCount/SlippedCountStatSystem.cs +++ b/Content.Server/SimpleStation14/EndOfRoundStats/SlippedCount/SlippedCountStatSystem.cs @@ -5,6 +5,7 @@ using Content.Shared.GameTicking; using Content.Shared.SimpleStation14.CCVar; using Content.Shared.Slippery; +using Content.Shared.StepTrigger.Components; using Robust.Shared.Configuration; using Robust.Shared.Timing; @@ -28,14 +29,14 @@ public override void Initialize() { base.Initialize(); - SubscribeLocalEvent(OnSlip); + SubscribeLocalEvent(OnSlip); SubscribeLocalEvent(OnRoundEnd); SubscribeLocalEvent(OnRoundRestart); } - private void OnSlip(EntityUid uid, SlipperyComponent slipComp, ref SlipEvent args) + private void OnSlip(EntityUid uid, StepTriggerComponent component, ref SlipEvent args) { string? username = null; diff --git a/Content.Server/SimpleStation14/Power/Systems/RandomBatteryChargeSystem.cs b/Content.Server/SimpleStation14/Power/Systems/RandomBatteryChargeSystem.cs index eb3b53628a..5baae28c0a 100644 --- a/Content.Server/SimpleStation14/Power/Systems/RandomBatteryChargeSystem.cs +++ b/Content.Server/SimpleStation14/Power/Systems/RandomBatteryChargeSystem.cs @@ -20,10 +20,7 @@ public override void Initialize() private void OnBatteryInit(EntityUid uid, RandomBatteryChargeComponent component, ComponentInit args) { - var batteryComp = Comp(uid); - DebugTools.AssertNotNull(batteryComp); - - if (batteryComp == null) + if (!TryComp(uid, out var batteryComp)) return; var (minMaxMod, maxMaxMod) = component.BatteryMaxMinMax; diff --git a/Content.Server/SimpleStation14/Species/Shadowkin/Systems/ShadowkinPowerSystem.DarkSwap.cs b/Content.Server/SimpleStation14/Species/Shadowkin/Systems/ShadowkinPowerSystem.DarkSwap.cs index 186552508c..7ba38ca5ea 100644 --- a/Content.Server/SimpleStation14/Species/Shadowkin/Systems/ShadowkinPowerSystem.DarkSwap.cs +++ b/Content.Server/SimpleStation14/Species/Shadowkin/Systems/ShadowkinPowerSystem.DarkSwap.cs @@ -74,6 +74,7 @@ private void DarkSwap(EntityUid uid, ShadowkinDarkSwapPowerComponent component, args.Performer, !hasComp, !hasComp, + !hasComp, true, args.StaminaCostOn, args.PowerCostOn, @@ -94,6 +95,7 @@ public void SetDarkened( EntityUid performer, bool addComp, bool invisible, + bool pacify, bool darken, float staminaCostOn, float powerCostOn, @@ -115,6 +117,7 @@ public void SetDarkened( { var comp = _entity.EnsureComponent(performer); comp.Invisible = invisible; + comp.Pacify = pacify; comp.Darken = darken; RaiseNetworkEvent(new ShadowkinDarkSwappedEvent(performer, true)); @@ -142,7 +145,8 @@ public void SetDarkened( private void OnInvisStartup(EntityUid uid, ShadowkinDarkSwappedComponent component, ComponentStartup args) { - EnsureComp(uid); + if (component.Pacify) + EnsureComp(uid); if (component.Invisible) SetCanSeeInvisibility(uid, true); @@ -172,7 +176,8 @@ private void OnInvisShutdown(EntityUid uid, ShadowkinDarkSwappedComponent compon public void SetCanSeeInvisibility(EntityUid uid, bool set) { - var visibility = _entity.EnsureComponent(uid); + if (!TryComp(uid, out var visibility)) + return; if (set) { @@ -185,7 +190,7 @@ public void SetCanSeeInvisibility(EntityUid uid, bool set) _visibility.RemoveLayer(uid, visibility, (int) VisibilityFlags.Normal, false); _visibility.RefreshVisibility(uid); - if (!_entity.TryGetComponent(uid, out var _)) + if (!_entity.TryGetComponent(uid, out _)) _stealth.SetVisibility(uid, 0.8f, _entity.EnsureComponent(uid)); } else @@ -199,7 +204,7 @@ public void SetCanSeeInvisibility(EntityUid uid, bool set) _visibility.AddLayer(uid, visibility, (int) VisibilityFlags.Normal, false); _visibility.RefreshVisibility(uid); - if (!_entity.TryGetComponent(uid, out var _)) + if (!_entity.TryGetComponent(uid, out _)) _entity.RemoveComponent(uid); } } diff --git a/Content.Server/SimpleStation14/Traits/Systems/HeightAdjustedSystem.cs b/Content.Server/SimpleStation14/Traits/Systems/HeightAdjustedSystem.cs index a321d41eb3..c1d4e05b94 100644 --- a/Content.Server/SimpleStation14/Traits/Systems/HeightAdjustedSystem.cs +++ b/Content.Server/SimpleStation14/Traits/Systems/HeightAdjustedSystem.cs @@ -29,6 +29,9 @@ private void Startup(EntityUid uid, HeightAdjustedComponent component, Component // Set density of the entity using SetDensity if (_entityManager.TryGetComponent(uid, out var fixtures)) { + if (fixtures.FixtureCount == 0) + return; + var density = fixtures.Fixtures.Values.First().Density; component.OriginalDensity = density; var newDensity = density * (component.Width + component.Height) / 2; diff --git a/Content.Server/StationEvents/Events/AnomalySpawnRule.cs b/Content.Server/StationEvents/Events/AnomalySpawnRule.cs index eb54d9afb0..e2b4583595 100644 --- a/Content.Server/StationEvents/Events/AnomalySpawnRule.cs +++ b/Content.Server/StationEvents/Events/AnomalySpawnRule.cs @@ -11,7 +11,7 @@ namespace Content.Server.StationEvents.Events; public sealed class AnomalySpawnRule : StationEventSystem { [Dependency] private readonly AnomalySystem _anomaly = default!; - [Dependency] private readonly AnnouncerSystem _announcerSystem = default!; + [Dependency] private readonly AnnouncerSystem _announcerSystem = default!; // Parkstation-RandomAnnouncers protected override void Added(EntityUid uid, AnomalySpawnRuleComponent component, GameRuleComponent gameRule, GameRuleAddedEvent args) { @@ -19,8 +19,10 @@ protected override void Added(EntityUid uid, AnomalySpawnRuleComponent component var str = Loc.GetString("anomaly-spawn-event-announcement", ("sighting", Loc.GetString($"anomaly-spawn-sighting-{RobustRandom.Next(1, 6)}"))); + // Parkstation-RandomAnnouncers Start // ChatSystem.DispatchGlobalAnnouncement(str, colorOverride: Color.FromHex("#18abf5")); _announcerSystem.SendAnnouncement("anomalyspawn", Filter.Broadcast(), str, colorOverride: Color.FromHex("#18abf5")); + // Parkstation-RandomAnnouncers End } protected override void Started(EntityUid uid, AnomalySpawnRuleComponent component, GameRuleComponent gameRule, GameRuleStartedEvent args) diff --git a/Content.Server/StationEvents/Events/BreakerFlipRule.cs b/Content.Server/StationEvents/Events/BreakerFlipRule.cs index b73950694f..d9c0a6ebfa 100644 --- a/Content.Server/StationEvents/Events/BreakerFlipRule.cs +++ b/Content.Server/StationEvents/Events/BreakerFlipRule.cs @@ -15,7 +15,7 @@ namespace Content.Server.StationEvents.Events; public sealed class BreakerFlipRule : StationEventSystem { [Dependency] private readonly ApcSystem _apcSystem = default!; - [Dependency] private readonly AnnouncerSystem _announcerSystem = default!; + [Dependency] private readonly AnnouncerSystem _announcerSystem = default!; // Parkstation-RandomAnnouncers protected override void Added(EntityUid uid, BreakerFlipRuleComponent component, GameRuleComponent gameRule, GameRuleAddedEvent args) { @@ -23,7 +23,7 @@ protected override void Added(EntityUid uid, BreakerFlipRuleComponent component, var str = Loc.GetString("station-event-breaker-flip-announcement", ("data", Loc.GetString(Loc.GetString($"random-sentience-event-data-{RobustRandom.Next(1, 6)}")))); - _announcerSystem.SendAnnouncement(args.RuleId, Filter.Broadcast(), str, colorOverride: Color.Gold); + _announcerSystem.SendAnnouncement(args.RuleId, Filter.Broadcast(), str, colorOverride: Color.Gold); // Parkstation-RandomAnnouncers } protected override void Started(EntityUid uid, BreakerFlipRuleComponent component, GameRuleComponent gameRule, GameRuleStartedEvent args) diff --git a/Content.Server/StationEvents/Events/FalseAlarmRule.cs b/Content.Server/StationEvents/Events/FalseAlarmRule.cs index c2cb0fcffb..3ea54b6373 100644 --- a/Content.Server/StationEvents/Events/FalseAlarmRule.cs +++ b/Content.Server/StationEvents/Events/FalseAlarmRule.cs @@ -12,7 +12,7 @@ namespace Content.Server.StationEvents.Events; public sealed class FalseAlarmRule : StationEventSystem { [Dependency] private readonly EventManagerSystem _event = default!; - [Dependency] private readonly AnnouncerSystem _announcer = default!; + [Dependency] private readonly AnnouncerSystem _announcer = default!; // Parkstation-RandomAnnouncers protected override void Started(EntityUid uid, FalseAlarmRuleComponent component, GameRuleComponent gameRule, GameRuleStartedEvent args) { @@ -23,7 +23,7 @@ protected override void Started(EntityUid uid, FalseAlarmRuleComponent component if (picked.StartAnnouncement != null) { - _announcer.SendAnnouncement(args.RuleId, Filter.Broadcast(), Loc.GetString(picked.StartAnnouncement), colorOverride: Color.Gold); + _announcer.SendAnnouncement(args.RuleId, Filter.Broadcast(), Loc.GetString(picked.StartAnnouncement), colorOverride: Color.Gold); // Parkstation-RandomAnnouncers } } } diff --git a/Content.Server/StationEvents/Events/PowerGridCheckRule.cs b/Content.Server/StationEvents/Events/PowerGridCheckRule.cs index acddc939c1..1266239c87 100644 --- a/Content.Server/StationEvents/Events/PowerGridCheckRule.cs +++ b/Content.Server/StationEvents/Events/PowerGridCheckRule.cs @@ -7,6 +7,7 @@ using Content.Server.Power.EntitySystems; using Timer = Robust.Shared.Timing.Timer; using Content.Server.GameTicking.Rules.Components; +using Content.Server.SimpleStation14.Announcements.Systems; using Content.Server.Station.Components; using Content.Server.StationEvents.Components; @@ -16,6 +17,7 @@ namespace Content.Server.StationEvents.Events public sealed class PowerGridCheckRule : StationEventSystem { [Dependency] private readonly ApcSystem _apcSystem = default!; + [Dependency] private readonly AnnouncerSystem _announcer = default!; // Parkstation-RandomAnnouncers public override void Initialize() { @@ -65,7 +67,10 @@ protected override void Ended(EntityUid uid, PowerGridCheckRuleComponent compone component.AnnounceCancelToken = new CancellationTokenSource(); Timer.Spawn(3000, () => { - Audio.PlayGlobal("/Audio/Announcements/power_on.ogg", Filter.Broadcast(), true, AudioParams.Default.WithVolume(-4f)); + // Parkstation-RandomAnnouncers Start + // Audio.PlayGlobal("/Audio/Announcements/power_on.ogg", Filter.Broadcast(), true, AudioParams.Default.WithVolume(-4f)); + _announcer.SendAnnouncementAudio("powrgridcheckcomplete", Filter.Broadcast()); + // Parkstation-RandomAnnouncers End }, component.AnnounceCancelToken.Token); component.Unpowered.Clear(); } diff --git a/Content.Server/StationEvents/Events/RandomSentienceRule.cs b/Content.Server/StationEvents/Events/RandomSentienceRule.cs index eb42e3c046..e79af06961 100644 --- a/Content.Server/StationEvents/Events/RandomSentienceRule.cs +++ b/Content.Server/StationEvents/Events/RandomSentienceRule.cs @@ -9,7 +9,7 @@ namespace Content.Server.StationEvents.Events; public sealed class RandomSentienceRule : StationEventSystem { - [Dependency] private readonly AnnouncerSystem _announcerSystem = default!; + [Dependency] private readonly AnnouncerSystem _announcerSystem = default!; // Parkstation-RandomAnnouncers protected override void Started(EntityUid uid, RandomSentienceRuleComponent component, GameRuleComponent gameRule, GameRuleStartedEvent args) { @@ -49,6 +49,7 @@ protected override void Started(EntityUid uid, RandomSentienceRuleComponent comp if(station == null) continue; stationsToNotify.Add((EntityUid) station); } + // Parkstation-RandomAnnouncers Start // foreach (var station in stationsToNotify) // { // ChatSystem.DispatchStationAnnouncement( @@ -66,5 +67,6 @@ protected override void Started(EntityUid uid, RandomSentienceRuleComponent comp ("data", Loc.GetString($"random-sentience-event-data-{RobustRandom.Next(1, 6)}")), ("strength", Loc.GetString($"random-sentience-event-strength-{RobustRandom.Next(1, 8)}"))), colorOverride: Color.Gold); + // Parkstation-RandomAnnouncers End } } diff --git a/Content.Server/StationEvents/Events/StationEventSystem.cs b/Content.Server/StationEvents/Events/StationEventSystem.cs index 291944f156..4dd0f16b7e 100644 --- a/Content.Server/StationEvents/Events/StationEventSystem.cs +++ b/Content.Server/StationEvents/Events/StationEventSystem.cs @@ -35,7 +35,7 @@ public abstract class StationEventSystem : GameRuleSystem where T : Compon [Dependency] protected readonly SharedAudioSystem Audio = default!; [Dependency] private readonly SharedTransformSystem _transform = default!; [Dependency] protected readonly StationSystem StationSystem = default!; - [Dependency] private readonly AnnouncerSystem _announcerSystem = default!; + [Dependency] private readonly AnnouncerSystem _announcerSystem = default!; // Parkstation-RandomAnnouncers protected ISawmill Sawmill = default!; @@ -97,8 +97,10 @@ protected override void Ended(EntityUid uid, T component, GameRuleComponent game if (stationEvent.EndAnnouncement != null) { + // Parkstation-RandomAnnouncers Start // ChatSystem.DispatchGlobalAnnouncement(Loc.GetString(stationEvent.EndAnnouncement), playSound: false, colorOverride: Color.Gold); _announcerSystem.SendAnnouncement($"{args.RuleId}complete", Filter.Broadcast(), Loc.GetString(stationEvent.EndAnnouncement), colorOverride: Color.Gold); + // Parkstation-RandomAnnouncers End } // Audio.PlayGlobal(stationEvent.EndAudio, Filter.Broadcast(), true); diff --git a/Content.Shared/Roles/StartingGearPrototype.cs b/Content.Shared/Roles/StartingGearPrototype.cs index 06a7d3b6aa..45903c2ea3 100644 --- a/Content.Shared/Roles/StartingGearPrototype.cs +++ b/Content.Shared/Roles/StartingGearPrototype.cs @@ -25,19 +25,19 @@ public sealed class StartingGearPrototype : IPrototype // Underwear [DataField("underpants", customTypeSerializer:typeof(PrototypeIdSerializer))] - private string _underpants = string.Empty; + private string? _underpants; [DataField("underpantsskirt", customTypeSerializer:typeof(PrototypeIdSerializer))] - private string _underpantsskirt = string.Empty; + private string? _underpantsskirt; [DataField("undershirt", customTypeSerializer:typeof(PrototypeIdSerializer))] - private string _undershirt = string.Empty; + private string? _undershirt; [DataField("undershirtskirt", customTypeSerializer:typeof(PrototypeIdSerializer))] - private string _undershirtskirt = string.Empty; + private string? _undershirtskirt; [DataField("undersocks", customTypeSerializer:typeof(PrototypeIdSerializer))] - private string _undersocks = string.Empty; + private string? _undersocks; public IReadOnlyDictionary Inhand => _inHand; /// @@ -82,17 +82,17 @@ public string GetGear(string slot, HumanoidCharacterProfile? profile) // Handles custom underwear per role. - if (slot == "underpants" && profile.Clothing != ClothingPreference.Jumpskirt && !string.IsNullOrEmpty(_underpants) && _underpants != "empty") + if (slot == "underpants" && profile.Clothing != ClothingPreference.Jumpskirt && !string.IsNullOrEmpty(_underpants) && _underpants != "Nothing") return _underpants; - if (slot == "underpants" && profile.Clothing == ClothingPreference.Jumpskirt && !string.IsNullOrEmpty(_underpantsskirt) && _underpantsskirt != "empty") + if (slot == "underpants" && profile.Clothing == ClothingPreference.Jumpskirt && !string.IsNullOrEmpty(_underpantsskirt) && _underpantsskirt != "Nothing") return _underpantsskirt; - if (slot == "undershirt" && profile.Clothing != ClothingPreference.Jumpskirt && !string.IsNullOrEmpty(_undershirt) && _undershirt != "empty") + if (slot == "undershirt" && profile.Clothing != ClothingPreference.Jumpskirt && !string.IsNullOrEmpty(_undershirt) && _undershirt != "Nothing") return _undershirt; - if (slot == "undershirt" && profile.Clothing == ClothingPreference.Jumpskirt && !string.IsNullOrEmpty(_undershirtskirt) && _undershirtskirt != "empty") + if (slot == "undershirt" && profile.Clothing == ClothingPreference.Jumpskirt && !string.IsNullOrEmpty(_undershirtskirt) && _undershirtskirt != "Nothing") return _undershirtskirt; - if (slot == "socks" && !string.IsNullOrEmpty(_undersocks) && _undersocks != "empty") + if (slot == "socks" && !string.IsNullOrEmpty(_undersocks) && _undersocks != "Nothing") return _undersocks; } diff --git a/Content.Shared/SimpleStation14/Species/Shadowkin/Components/ShadowkinDarkSwappedComponent.cs b/Content.Shared/SimpleStation14/Species/Shadowkin/Components/ShadowkinDarkSwappedComponent.cs index f1d9616d39..4c93bbc496 100644 --- a/Content.Shared/SimpleStation14/Species/Shadowkin/Components/ShadowkinDarkSwappedComponent.cs +++ b/Content.Shared/SimpleStation14/Species/Shadowkin/Components/ShadowkinDarkSwappedComponent.cs @@ -11,6 +11,12 @@ public sealed class ShadowkinDarkSwappedComponent : Component [DataField("invisible")] public bool Invisible = true; + /// + /// If it should be pacified + /// + [DataField("pacify")] + public bool Pacify = true; + /// /// If it should dim nearby lights /// diff --git a/Resources/Audio/Announcements/RoundEnd/apc_destroyed.ogg b/Resources/Audio/Announcements/RoundEnd/apc_destroyed.ogg new file mode 100644 index 0000000000..a3e140678f Binary files /dev/null and b/Resources/Audio/Announcements/RoundEnd/apc_destroyed.ogg differ diff --git a/Resources/Audio/Announcements/RoundEnd/bangin_donk.ogg b/Resources/Audio/Announcements/RoundEnd/bangin_donk.ogg new file mode 100644 index 0000000000..b3a3624de5 Binary files /dev/null and b/Resources/Audio/Announcements/RoundEnd/bangin_donk.ogg differ diff --git a/Resources/Audio/Announcements/RoundEnd/wasthisstorybasedno.ogg b/Resources/Audio/Announcements/RoundEnd/wasthisstorybasedno.ogg new file mode 100644 index 0000000000..5f0964b298 Binary files /dev/null and b/Resources/Audio/Announcements/RoundEnd/wasthisstorybasedno.ogg differ diff --git a/Resources/Audio/Announcements/RoundEnd/wasthisstorybasedyes.ogg b/Resources/Audio/Announcements/RoundEnd/wasthisstorybasedyes.ogg new file mode 100644 index 0000000000..caf82b85a1 Binary files /dev/null and b/Resources/Audio/Announcements/RoundEnd/wasthisstorybasedyes.ogg differ diff --git a/Resources/Maps/SimpleStation14/syndiecomms.yml b/Resources/Maps/SimpleStation14/syndiecomms.yml deleted file mode 100644 index d453ff0b6d..0000000000 --- a/Resources/Maps/SimpleStation14/syndiecomms.yml +++ /dev/null @@ -1,7514 +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: FloorBlue - 14: FloorBlueCircuit - 15: FloorBoxing - 16: FloorCarpetClown - 17: FloorCarpetOffice - 18: FloorCave - 19: FloorCaveDrought - 20: FloorClown - 21: FloorDark - 22: FloorDarkDiagonal - 23: FloorDarkDiagonalMini - 24: FloorDarkHerringbone - 25: FloorDarkMini - 26: FloorDarkMono - 27: FloorDarkOffset - 28: FloorDarkPavement - 29: FloorDarkPavementVertical - 30: FloorDarkPlastic - 31: FloorDirt - 32: FloorEighties - 33: FloorElevatorShaft - 34: FloorFreezer - 35: FloorGlass - 36: FloorGold - 37: FloorGrass - 38: FloorGrassDark - 39: FloorGrassJungle - 40: FloorGrassLight - 41: FloorGreenCircuit - 42: FloorGym - 43: FloorHydro - 44: FloorKitchen - 45: FloorLaundry - 46: FloorLino - 47: FloorMetalDiamond - 48: FloorMime - 49: FloorMono - 50: FloorPlastic - 51: FloorRGlass - 52: FloorReinforced - 53: FloorRockVault - 54: FloorShowroom - 55: FloorShuttleBlue - 56: FloorShuttleOrange - 57: FloorShuttlePurple - 58: FloorShuttleRed - 59: FloorShuttleWhite - 60: FloorSilver - 61: FloorSnow - 62: FloorSteel - 63: FloorSteelDiagonal - 64: FloorSteelDiagonalMini - 65: FloorSteelDirty - 66: FloorSteelHerringbone - 67: FloorSteelMini - 68: FloorSteelMono - 69: FloorSteelOffset - 70: FloorSteelPavement - 71: FloorSteelPavementVertical - 72: FloorTechMaint - 73: FloorTechMaint2 - 74: FloorTechMaint3 - 75: FloorWhite - 76: FloorWhiteDiagonal - 77: FloorWhiteDiagonalMini - 78: FloorWhiteHerringbone - 79: FloorWhiteMini - 80: FloorWhiteMono - 81: FloorWhiteOffset - 82: FloorWhitePavement - 83: FloorWhitePavementVertical - 84: FloorWhitePlastic - 85: FloorWood - 86: FloorWoodTile - 87: Lattice - 88: Plating -entities: -- uid: 0 - components: - - name: Syndie Comms Outpost - type: MetaData - - type: Transform - - index: 69 - type: Map - - type: PhysicsMap - - type: Broadphase - - type: OccluderTree -- uid: 1 - components: - - name: Syndie Comms Outpost - type: MetaData - - pos: -0.20231247,0.2942295 - parent: 0 - type: Transform - - chunks: - -1,-1: - ind: -1,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABYAAAASAAAAEgAAABIAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWAAAAEgAAABIAAAASAAAAEgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAABIAAAASAAAAEgAAABIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABYAAAASAAAAEgAAABIAAAASAAAAAAAAAAAAAAAAAAAAFgAAABYAAAAWAAAAFgAAABYAAAAWAAAAFgAAABYAAAAWAAAAFgAAABYAAAAWAAAAFgAAAAAAAAAAAAAAAAAAABYAAAAHQAAAB0AAAAdAAAAHQAAAB0AAAAEAAAABAAAAAQAAAAEAAAAHAAAABwAAAAcAAAAAAAAAAAAAAAAAAAAWAAAAB0AAAAdAAAAHQAAAB0AAAAdAAAABAAAAAQAAAAEAAAABAAAABwAAAAcAAAAHAAAAAAAAAAAAAAAAAAAAFgAAABYAAAAWAAAAFgAAAAaAAAAWAAAAFgAAABYAAAAWAAAAFgAAABYAAAAGgAAAFgAAAAAAAAAAAAAAAAAAABYAAAAGwAAABsAAAAbAAAAGwAAABsAAAAbAAAAGwAAABsAAAAbAAAAGwAAABsAAAAbAAAAAAAAAAAAAAAAAAAAWAAAABsAAAAbAAAAGwAAABsAAAAbAAAAGwAAABsAAAAbAAAAGwAAABsAAAAbAAAAGwAAAAAAAAAAAAAAAAAAAFgAAAAbAAAAGwAAABsAAAAbAAAAGwAAABsAAAAbAAAAGwAAABsAAAAbAAAAGwAAABsAAAAAAAAAAAAAAAAAAABYAAAAWAAAAFgAAABYAAAAGgAAAFgAAABYAAAAWAAAAFgAAABYAAAAWAAAAFgAAABYAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAYAAAAGAAAABgAAAAYAAAAGAAAAFgAAAA0AAAANAAAADQAAAA0AAAANAAAAAAAAAAAAAAAAAAAAAAAAABYAAAAGAAAABgAAAAYAAAAGAAAABgAAABYAAAANAAAADQAAAA0AAAANAAAADQAAAAAAAAAAAAAAAAAAAAAAAAAWAAAABgAAAAYAAAAGAAAABgAAAAYAAAAWAAAADQAAAA0AAAANAAAADQAAAA0AAAAAAAAAAAAAAAAAAAAAAAAAFgAAABYAAAAWAAAAFgAAABYAAAAWAAAAFgAAAA0AAAANAAAADQAAAA0AAAANAAAAA== - 0,-1: - ind: 0,-1 - tiles: SAAAAEgAAABYAAAAGwAAABsAAABYAAAASAAAAEgAAABIAAAAWAAAAEgAAABIAAAASAAAAFgAAAAAAAAAAAAAAEgAAABIAAAAWAAAABsAAAAbAAAAWAAAAEgAAABIAAAASAAAAFgAAABIAAAASAAAAEgAAABYAAAAAAAAAAAAAABIAAAASAAAAFgAAAAbAAAAGwAAAFgAAABIAAAASAAAAEgAAABYAAAASAAAAEgAAABIAAAAWAAAAAAAAAAAAAAASAAAAEgAAABYAAAAGwAAABsAAABYAAAAWAAAAFgAAABYAAAAWAAAAFgAAABYAAAAWAAAAFgAAAAAAAAAAAAAAFgAAABYAAAAWAAAABsAAAAbAAAAWAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAHAAAAFgAAAAbAAAAGwAAAFgAAABYAAAAWAAAAFgAAABYAAAAWAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAABwAAABYAAAAGwAAABsAAABYAAAAWAAAADUAAAA1AAAANQAAAFgAAABYAAAAWAAAAAAAAAAAAAAAAAAAAFgAAABYAAAAWAAAABsAAAAbAAAAWAAAAFgAAAA1AAAANQAAADUAAAA1AAAANQAAAFgAAAAAAAAAAAAAAAAAAAAbAAAAGwAAABoAAAAbAAAAGwAAABoAAAA1AAAANQAAADUAAAA1AAAANQAAADUAAABYAAAAAAAAAAAAAAAAAAAAGwAAABsAAAAaAAAAGwAAABsAAAAaAAAANQAAADUAAAA1AAAANQAAADUAAAA1AAAAWAAAAAAAAAAAAAAAAAAAABsAAAAbAAAAGgAAABsAAAAbAAAAGgAAADUAAAA1AAAANQAAADUAAAA1AAAANQAAAFgAAAAAAAAAAAAAAAAAAABYAAAAWAAAAFgAAAAbAAAAGwAAAFgAAABYAAAANQAAADUAAAA1AAAANQAAADUAAABYAAAAAAAAAAAAAAAAAAAANAAAADQAAABYAAAAGwAAABsAAABYAAAAWAAAADUAAAA1AAAANQAAAFgAAABYAAAAWAAAAAAAAAAAAAAAAAAAADQAAAA0AAAAWAAAABsAAAAbAAAAWAAAAFgAAABYAAAAWAAAAFgAAABYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA0AAAANAAAAFgAAAAbAAAAGwAAAFgAAABYAAAAWAAAAFgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANAAAADQAAAAaAAAAGwAAABsAAAA0AAAANAAAADQAAAA0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - 0,0: - ind: 0,0 - tiles: NAAAADQAAAAaAAAAGwAAABsAAAA0AAAANAAAADQAAAA0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAA0AAAAWAAAABsAAAAbAAAAWAAAAFgAAABYAAAAWAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABYAAAAWAAAAFgAAAAbAAAAGwAAAFgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABYAAAAWAAAAFgAAABYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - -1,0: - ind: -1,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAA0AAAANAAAADQAAAA0AAAANAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABYAAAAWAAAAFgAAABYAAAAWAAAAFgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - 0,-2: - ind: 0,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAABYAAAAWAAAAFgAAABYAAAAWAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABYAAAANQAAADUAAAA1AAAANQAAAFgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWAAAADUAAAA1AAAANQAAADUAAABYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABYAAAAWAAAAFgAAAA1AAAANQAAADUAAAA1AAAAWAAAAFgAAABYAAAAWAAAAFgAAABYAAAAWAAAAAAAAAAAAAAAGwAAABsAAABYAAAANQAAADUAAAA1AAAANQAAAFgAAABMAAAATAAAAEwAAABMAAAATAAAAFgAAAAAAAAAAAAAABsAAAAbAAAAWAAAADUAAAA1AAAANQAAADUAAABYAAAATAAAAEwAAABMAAAATAAAAEwAAABYAAAAAAAAAAAAAAAbAAAAGwAAAFgAAAA1AAAANQAAADUAAAA1AAAAWAAAAEwAAABMAAAATAAAAEwAAABMAAAAWAAAAAAAAAAAAAAAGgAAAFgAAABYAAAAWAAAABoAAABYAAAAWAAAAFgAAAAaAAAAWAAAAFgAAABYAAAAWAAAAFgAAAAAAAAAAAAAABsAAAAbAAAAGwAAABsAAAAbAAAAGwAAABsAAAAbAAAAGwAAABsAAAAbAAAAGwAAABsAAABYAAAAAAAAAAAAAAAbAAAAGwAAABsAAAAbAAAAGwAAABsAAAAbAAAAGwAAABsAAAAbAAAAGwAAABsAAAAbAAAAWAAAAAAAAAAAAAAAGgAAAFgAAABYAAAAGwAAABsAAABYAAAAWAAAABoAAABYAAAAWAAAAFgAAAAaAAAAWAAAAFgAAAAAAAAAAAAAAA== - -1,-2: - ind: -1,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAABYAAAAWAAAAFgAAABYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABYAAAAGwAAABsAAAAbAAAAGwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWAAAABsAAAAbAAAAGwAAABsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAbAAAAGwAAABsAAAAbAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABYAAAAWAAAAFgAAABYAAAAWAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWAAAABsAAAAbAAAAGwAAABsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAbAAAAGwAAABsAAAAbAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABYAAAAWAAAAFgAAABYAAAAWAAAAA== - type: MapGrid - - type: Broadphase - - angularDamping: 0.05 - linearDamping: 0.05 - fixedRotation: False - bodyType: Dynamic - type: Physics - - fixtures: [] - type: Fixtures - - type: OccluderTree - - type: Shuttle - - type: GridPathfinding - - gravityShakeSound: !type:SoundPathSpecifier - path: /Audio/Effects/alert.ogg - enabled: True - type: Gravity - - chunkCollection: - 0,-1: - 0: - color: '#FFFFFFFF' - id: ArrowsGreyscale - coordinates: 8,-19 - 1: - color: '#FFFFFFFF' - id: BrickTileDarkCornerNw - coordinates: 7,-4 - 2: - color: '#FFFFFFFF' - id: BrickTileDarkCornerSw - coordinates: 7,-10 - 3: - color: '#FFFFFFFF' - id: BrickTileDarkCornerSe - coordinates: 9,-10 - 4: - color: '#FFFFFFFF' - id: BrickTileDarkCornerSe - coordinates: 11,-9 - 5: - color: '#FFFFFFFF' - id: BrickTileDarkCornerNe - coordinates: 9,-4 - 6: - color: '#FFFFFFFF' - id: BrickTileDarkCornerNe - coordinates: 11,-5 - 7: - color: '#FFFFFFFF' - id: BrickTileDarkLineN - coordinates: 8,-4 - 8: - color: '#FFFFFFFF' - id: BrickTileDarkLineN - coordinates: 10,-5 - 9: - color: '#FFFFFFFF' - id: BrickTileDarkLineE - coordinates: 11,-6 - 10: - color: '#FFFFFFFF' - id: BrickTileDarkLineE - coordinates: 11,-7 - 11: - color: '#FFFFFFFF' - id: BrickTileDarkLineE - coordinates: 11,-8 - 12: - color: '#FFFFFFFF' - id: BrickTileDarkLineS - coordinates: 10,-9 - 13: - color: '#FFFFFFFF' - id: BrickTileDarkLineS - coordinates: 8,-10 - 14: - color: '#FFFFFFFF' - id: BrickTileDarkLineW - coordinates: 7,-9 - 15: - color: '#FFFFFFFF' - id: BrickTileDarkLineW - coordinates: 7,-5 - 16: - color: '#FFFFFFFF' - id: BrickTileDarkLineS - coordinates: 6,-8 - 17: - color: '#FFFFFFFF' - id: BrickTileDarkLineN - coordinates: 6,-6 - 18: - color: '#FFFFFFFF' - id: BrickTileDarkInnerSw - coordinates: 7,-8 - 19: - color: '#FFFFFFFF' - id: BrickTileDarkInnerNw - coordinates: 7,-6 - 20: - color: '#FFFFFFFF' - id: BrickTileDarkInnerSe - coordinates: 9,-9 - 21: - color: '#FFFFFFFF' - id: BrickTileDarkInnerNe - coordinates: 9,-5 - 23: - color: '#FFFFFFFF' - id: WarnCornerGreyscaleSE - coordinates: 1,-16 - 24: - angle: 3.141592653589793 rad - color: '#FFFFFFFF' - id: ArrowsGreyscale - coordinates: 1,-16 - 28: - angle: 3.141592653589793 rad - color: '#FFFFFFFF' - id: Arrows - coordinates: 0,-16 - 29: - color: '#FFFFFFFF' - id: WarnLineGreyscaleS - coordinates: 0,-16 - 34: - color: '#FFFFFFFF' - id: WarnCornerGreyscaleNE - coordinates: 1,-13 - 36: - color: '#FFFFFFFF' - id: WarnLineGreyscaleE - coordinates: 1,-14 - 37: - color: '#FFFFFFFF' - id: WarnLineGreyscaleE - coordinates: 1,-15 - 38: - color: '#FFFFFFFF' - id: WarnLineGreyscaleN - coordinates: 0,-13 - 44: - angle: 3.141592653589793 rad - color: '#52B4E996' - id: ArrowsGreyscale - coordinates: 10,-16 - 45: - angle: 3.141592653589793 rad - color: '#52B4E996' - id: ArrowsGreyscale - coordinates: 6,-16 - 46: - angle: 3.141592653589793 rad - color: '#3a3ade96' - id: ArrowsGreyscale - coordinates: 7,-16 - 47: - angle: 3.141592653589793 rad - color: '#3a3ade96' - id: ArrowsGreyscale - coordinates: 8,-16 - 48: - angle: 3.141592653589793 rad - color: '#3a3ade96' - id: ArrowsGreyscale - coordinates: 11,-16 - 49: - angle: 3.141592653589793 rad - color: '#EFB34196' - id: ArrowsGreyscale - coordinates: 12,-16 - 75: - color: '#3a3ade96' - id: MiniTileSteelLineN - coordinates: 0,-6 - 88: - color: '#3a3ade96' - id: MiniTileSteelLineS - coordinates: 0,-8 - 89: - color: '#3a3ade96' - id: MiniTileSteelLineN - coordinates: 1,-6 - 90: - color: '#3a3ade96' - id: MiniTileSteelLineS - coordinates: 1,-8 - 91: - color: '#3a3ade96' - id: MiniTileSteelLineW - coordinates: 3,-5 - 92: - color: '#3a3ade96' - id: MiniTileSteelLineW - coordinates: 3,-4 - 93: - color: '#3a3ade96' - id: MiniTileSteelLineW - coordinates: 3,-3 - 94: - color: '#3a3ade96' - id: MiniTileSteelLineW - coordinates: 3,-9 - 95: - color: '#3a3ade96' - id: MiniTileSteelLineW - coordinates: 3,-10 - 96: - color: '#3a3ade96' - id: MiniTileSteelLineW - coordinates: 3,-11 - 97: - color: '#3a3ade96' - id: MiniTileSteelInnerSw - coordinates: 3,-8 - 98: - color: '#3a3ade96' - id: MiniTileSteelInnerNw - coordinates: 3,-6 - 99: - color: '#3a3ade96' - id: MiniTileSteelLineS - coordinates: 2,-8 - 100: - color: '#3a3ade96' - id: MiniTileSteelLineN - coordinates: 2,-6 - 101: - color: '#3a3ade96' - id: MiniTileSteelLineW - coordinates: 3,-2 - 106: - color: '#3a3ade96' - id: MiniTileSteelLineE - coordinates: 4,-2 - 107: - color: '#3a3ade96' - id: MiniTileSteelLineE - coordinates: 4,-3 - 108: - color: '#3a3ade96' - id: MiniTileSteelLineE - coordinates: 4,-4 - 109: - color: '#3a3ade96' - id: MiniTileSteelLineE - coordinates: 4,-5 - 110: - color: '#3a3ade96' - id: MiniTileSteelLineE - coordinates: 4,-9 - 111: - color: '#3a3ade96' - id: MiniTileSteelLineE - coordinates: 4,-10 - 112: - color: '#3a3ade96' - id: MiniTileSteelLineE - coordinates: 4,-11 - 113: - color: '#3a3ade96' - id: MiniTileSteelInnerSe - coordinates: 4,-8 - 114: - color: '#3a3ade96' - id: MiniTileSteelInnerNe - coordinates: 4,-6 - 115: - color: '#3a3ade70' - id: MiniTileSteelInnerNw - coordinates: 5,-6 - 116: - color: '#3a3ade70' - id: MiniTileSteelInnerSw - coordinates: 5,-8 - 117: - color: '#FFFFFFFF' - id: MiniTileDarkInnerSe - coordinates: 5,-8 - 118: - color: '#FFFFFFFF' - id: MiniTileDarkInnerNe - coordinates: 5,-6 - 119: - color: '#3a3ade96' - id: MiniTileSteelLineS - coordinates: 2,-1 - 120: - color: '#3a3ade96' - id: MiniTileSteelInnerSw - coordinates: 3,-1 - 122: - color: '#3a3ade96' - id: MiniTileSteelInnerSe - coordinates: 4,-1 - 134: - color: '#3a3adeFF' - id: MiniTileSteelCornerSe - coordinates: 1,-4 - 135: - color: '#3a3adeFF' - id: MiniTileSteelLineS - coordinates: 0,-4 - 143: - color: '#3a3adeFF' - id: MiniTileSteelLineE - coordinates: 1,-3 - 144: - color: '#3a3adeFF' - id: MiniTileSteelLineE - coordinates: 1,-2 - 145: - color: '#3a3adeFF' - id: MiniTileSteelInnerSe - coordinates: 1,-1 - 146: - color: '#3a3adeFF' - id: MiniTileSteelLineS - coordinates: 6,-1 - 147: - color: '#3a3adeFF' - id: MiniTileSteelLineS - coordinates: 7,-1 - 148: - color: '#3a3adeFF' - id: MiniTileSteelLineS - coordinates: 8,-1 - 153: - color: '#3a3adeFF' - id: MiniTileSteelLineS - coordinates: 5,-1 - 154: - color: '#3a3ade96' - id: MiniTileSteelLineE - coordinates: 4,-12 - 155: - color: '#3a3ade96' - id: MiniTileSteelLineE - coordinates: 4,-13 - 156: - color: '#3a3ade96' - id: MiniTileSteelLineE - coordinates: 4,-14 - 157: - color: '#3a3ade96' - id: MiniTileSteelLineE - coordinates: 4,-15 - 158: - color: '#3a3ade96' - id: MiniTileSteelLineE - coordinates: 4,-16 - 159: - color: '#3a3ade96' - id: MiniTileSteelLineE - coordinates: 4,-17 - 160: - color: '#3a3ade96' - id: MiniTileSteelLineW - coordinates: 3,-12 - 161: - color: '#3a3ade96' - id: MiniTileSteelLineW - coordinates: 3,-13 - 162: - color: '#3a3ade96' - id: MiniTileSteelLineW - coordinates: 3,-14 - 163: - color: '#3a3ade96' - id: MiniTileSteelLineW - coordinates: 3,-15 - 164: - color: '#3a3ade96' - id: MiniTileSteelLineW - coordinates: 3,-16 - 165: - color: '#3a3ade96' - id: MiniTileSteelLineW - coordinates: 3,-17 - 166: - color: '#3a3ade96' - id: MiniTileSteelInnerNw - coordinates: 3,-18 - 167: - color: '#3a3ade96' - id: MiniTileSteelInnerNe - coordinates: 4,-18 - 168: - color: '#3a3ade96' - id: MiniTileSteelLineN - coordinates: 5,-18 - 169: - color: '#3a3ade96' - id: MiniTileSteelLineN - coordinates: 7,-18 - 170: - color: '#3a3ade96' - id: MiniTileSteelLineN - coordinates: 9,-18 - 171: - color: '#3a3ade96' - id: MiniTileSteelCornerNe - coordinates: 12,-18 - 172: - color: '#3a3ade96' - id: MiniTileSteelCornerSe - coordinates: 12,-19 - 175: - color: '#3a3ade96' - id: MiniTileSteelLineS - coordinates: 11,-19 - 176: - color: '#3a3ade96' - id: MiniTileSteelLineS - coordinates: 10,-19 - 177: - color: '#3a3ade96' - id: MiniTileSteelLineS - coordinates: 9,-19 - 178: - color: '#3a3ade96' - id: MiniTileSteelLineS - coordinates: 7,-19 - 179: - color: '#3a3ade96' - id: MiniTileSteelLineS - coordinates: 6,-19 - 180: - color: '#3a3ade96' - id: MiniTileSteelLineS - coordinates: 5,-19 - 181: - color: '#3a3ade96' - id: MiniTileSteelLineS - coordinates: 4,-19 - 182: - color: '#3a3ade96' - id: MiniTileSteelLineS - coordinates: 3,-19 - 183: - color: '#3a3ade96' - id: MiniTileSteelLineS - coordinates: 2,-19 - 184: - color: '#3a3ade96' - id: MiniTileSteelLineS - coordinates: 1,-19 - 191: - color: '#3a3ade96' - id: MiniTileSteelLineN - coordinates: 0,-18 - 192: - color: '#3a3ade96' - id: MiniTileSteelLineN - coordinates: 2,-18 - 193: - color: '#3a3adeFF' - id: BrickTileSteelLineN - coordinates: 9,-21 - 194: - color: '#3a3adeFF' - id: BrickTileSteelLineN - coordinates: 10,-21 - 195: - color: '#3a3adeFF' - id: BrickTileSteelLineN - coordinates: 11,-21 - 196: - color: '#3a3adeFF' - id: BrickTileSteelCornerNe - coordinates: 12,-21 - 197: - color: '#3a3adeFF' - id: BrickTileSteelCornerSw - coordinates: 8,-23 - 198: - color: '#3a3adeFF' - id: BrickTileSteelCornerSe - coordinates: 12,-23 - 199: - color: '#3a3adeFF' - id: BrickTileSteelLineS - coordinates: 11,-23 - 200: - color: '#3a3adeFF' - id: BrickTileSteelLineS - coordinates: 10,-23 - 201: - color: '#3a3adeFF' - id: BrickTileSteelLineS - coordinates: 9,-23 - 202: - color: '#3a3adeFF' - id: BrickTileSteelLineW - coordinates: 8,-22 - 203: - color: '#3a3adeFF' - id: BrickTileSteelLineE - coordinates: 12,-22 - 204: - color: '#3a3ade96' - id: BrickTileSteelLineN - coordinates: 10,-18 - 205: - color: '#3a3adeFF' - id: BrickTileSteelLineW - coordinates: 8,-21 - 206: - color: '#3a3adeFF' - id: BrickTileSteelInnerNe - coordinates: 8,-21 - 207: - color: '#3a3ade96' - id: MiniTileSteelLineE - coordinates: 8,-20 - 208: - color: '#3a3ade96' - id: MiniTileSteelLineW - coordinates: 8,-20 - 209: - color: '#3a3ade96' - id: MiniTileSteelInnerSw - coordinates: 8,-19 - 210: - color: '#3a3ade96' - id: MiniTileSteelInnerSe - coordinates: 8,-19 - 211: - color: '#3a3ade96' - id: MiniTileSteelLineN - coordinates: 1,-18 - 212: - color: '#3a3ade96' - id: MiniTileSteelLineN - coordinates: 6,-18 - 213: - color: '#3a3ade96' - id: MiniTileSteelLineN - coordinates: 11,-18 - 214: - color: '#3a3ade96' - id: MiniTileSteelInnerSw - coordinates: 0,-19 - 215: - color: '#3a3ade96' - id: MiniTileSteelInnerSe - coordinates: 0,-19 - 216: - color: '#3a3ade96' - id: MiniTileSteelLineE - coordinates: 0,-20 - 217: - color: '#3a3ade96' - id: MiniTileSteelLineW - coordinates: 0,-20 - 218: - color: '#3a3ade96' - id: MiniTileSteelInnerNw - coordinates: 0,-21 - 219: - color: '#3a3ade96' - id: MiniTileSteelInnerNe - coordinates: 0,-21 - 220: - color: '#3a3ade96' - id: MiniTileSteelCornerNe - coordinates: 1,-21 - 221: - color: '#3a3ade96' - id: MiniTileSteelCornerSe - coordinates: 1,-23 - 227: - color: '#3a3ade96' - id: MiniTileSteelLineE - coordinates: 1,-22 - 232: - color: '#3a3ade96' - id: MiniTileSteelLineS - coordinates: 0,-23 - 233: - color: '#FFFFFFFF' - id: WarnCornerGreyscaleSW - coordinates: 6,-16 - 234: - color: '#FFFFFFFF' - id: WarnCornerGreyscaleSE - coordinates: 8,-16 - 235: - color: '#FFFFFFFF' - id: WarnCornerGreyscaleNE - coordinates: 8,-14 - 236: - color: '#FFFFFFFF' - id: WarnCornerGreyscaleNW - coordinates: 6,-14 - 237: - color: '#FFFFFFFF' - id: WarnCornerGreyscaleNW - coordinates: 10,-14 - 238: - color: '#FFFFFFFF' - id: WarnCornerGreyscaleNE - coordinates: 12,-14 - 239: - color: '#FFFFFFFF' - id: WarnCornerGreyscaleSW - coordinates: 10,-16 - 240: - color: '#FFFFFFFF' - id: WarnCornerGreyscaleSE - coordinates: 12,-16 - 241: - color: '#FFFFFFFF' - id: WarnLineGreyscaleE - coordinates: 12,-15 - 242: - color: '#FFFFFFFF' - id: WarnLineGreyscaleE - coordinates: 8,-15 - 243: - color: '#FFFFFFFF' - id: WarnLineGreyscaleN - coordinates: 11,-14 - 244: - color: '#FFFFFFFF' - id: WarnLineGreyscaleN - coordinates: 7,-14 - 245: - color: '#FFFFFFFF' - id: WarnLineGreyscaleS - coordinates: 11,-16 - 246: - color: '#FFFFFFFF' - id: WarnLineGreyscaleS - coordinates: 7,-16 - 247: - color: '#FFFFFFFF' - id: WarnLineGreyscaleW - coordinates: 10,-15 - 248: - color: '#FFFFFFFF' - id: WarnLineGreyscaleW - coordinates: 6,-15 - 249: - color: '#FFFFFFFF' - id: WarnLineGreyscaleW - coordinates: 8,-17 - 250: - color: '#3a3ade96' - id: MiniTileSteelLineN - coordinates: 8,-18 - 251: - color: '#D4D4D428' - id: ArrowsGreyscale - coordinates: 0,-19 - -1,-1: - 22: - color: '#FFFFFFFF' - id: WarnCornerGreyscaleSW - coordinates: -4,-16 - 25: - angle: 3.141592653589793 rad - color: '#FFFFFFFF' - id: ArrowsGreyscale - coordinates: -3,-16 - 26: - angle: 3.141592653589793 rad - color: '#FFFFFFFF' - id: Arrows - coordinates: -2,-16 - 27: - angle: 3.141592653589793 rad - color: '#FFFFFFFF' - id: Arrows - coordinates: -4,-16 - 30: - color: '#FFFFFFFF' - id: WarnLineGreyscaleS - coordinates: -2,-16 - 31: - color: '#FFFFFFFF' - id: WarnLineGreyscaleS - coordinates: -3,-16 - 32: - color: '#FFFFFFFF' - id: WarnLineGreyscaleS - coordinates: -1,-16 - 33: - angle: 3.141592653589793 rad - color: '#FFFFFFFF' - id: ArrowsGreyscale - coordinates: -1,-16 - 35: - color: '#FFFFFFFF' - id: WarnCornerGreyscaleNW - coordinates: -4,-13 - 39: - color: '#FFFFFFFF' - id: WarnLineGreyscaleN - coordinates: -1,-13 - 40: - color: '#FFFFFFFF' - id: WarnLineGreyscaleN - coordinates: -2,-13 - 41: - color: '#FFFFFFFF' - id: WarnLineGreyscaleN - coordinates: -3,-13 - 42: - color: '#FFFFFFFF' - id: WarnLineGreyscaleW - coordinates: -4,-14 - 43: - color: '#FFFFFFFF' - id: WarnLineGreyscaleW - coordinates: -4,-15 - 50: - color: '#FFFFFFFF' - id: BrickTileDarkCornerNe - coordinates: -7,-2 - 51: - color: '#FFFFFFFF' - id: BrickTileDarkCornerNw - coordinates: -11,-2 - 52: - color: '#FFFFFFFF' - id: BrickTileDarkCornerSw - coordinates: -11,-4 - 53: - color: '#FFFFFFFF' - id: BrickTileDarkCornerSe - coordinates: -7,-4 - 54: - color: '#FFFFFFFF' - id: BrickTileDarkLineN - coordinates: -10,-2 - 55: - color: '#FFFFFFFF' - id: BrickTileDarkLineN - coordinates: -9,-2 - 56: - color: '#FFFFFFFF' - id: BrickTileDarkLineN - coordinates: -8,-2 - 57: - color: '#FFFFFFFF' - id: BrickTileDarkLineE - coordinates: -7,-3 - 58: - color: '#FFFFFFFF' - id: BrickTileDarkLineS - coordinates: -8,-4 - 59: - color: '#FFFFFFFF' - id: BrickTileDarkLineS - coordinates: -9,-4 - 60: - color: '#FFFFFFFF' - id: BrickTileDarkLineS - coordinates: -10,-4 - 61: - color: '#FFFFFFFF' - id: BrickTileDarkLineW - coordinates: -11,-3 - 62: - color: '#3a3ade96' - id: MiniTileSteelCornerNw - coordinates: -12,-6 - 63: - color: '#3a3ade96' - id: MiniTileSteelCornerSw - coordinates: -12,-8 - 64: - color: '#3a3ade96' - id: MiniTileSteelLineN - coordinates: -11,-6 - 65: - color: '#3a3ade96' - id: MiniTileSteelLineN - coordinates: -10,-6 - 66: - color: '#3a3ade96' - id: MiniTileSteelLineN - coordinates: -9,-6 - 67: - color: '#3a3ade96' - id: MiniTileSteelLineN - coordinates: -8,-6 - 68: - color: '#3a3ade96' - id: MiniTileSteelLineN - coordinates: -7,-6 - 69: - color: '#3a3ade96' - id: MiniTileSteelLineN - coordinates: -6,-6 - 70: - color: '#3a3ade96' - id: MiniTileSteelLineN - coordinates: -5,-6 - 71: - color: '#3a3ade96' - id: MiniTileSteelLineN - coordinates: -4,-6 - 72: - color: '#3a3ade96' - id: MiniTileSteelLineN - coordinates: -3,-6 - 73: - color: '#3a3ade96' - id: MiniTileSteelLineN - coordinates: -2,-6 - 74: - color: '#3a3ade96' - id: MiniTileSteelLineN - coordinates: -1,-6 - 76: - color: '#3a3ade96' - id: MiniTileSteelLineW - coordinates: -12,-7 - 77: - color: '#3a3ade96' - id: MiniTileSteelLineS - coordinates: -11,-8 - 78: - color: '#3a3ade96' - id: MiniTileSteelLineS - coordinates: -10,-8 - 79: - color: '#3a3ade96' - id: MiniTileSteelLineS - coordinates: -9,-8 - 80: - color: '#3a3ade96' - id: MiniTileSteelLineS - coordinates: -8,-8 - 81: - color: '#3a3ade96' - id: MiniTileSteelLineS - coordinates: -7,-8 - 82: - color: '#3a3ade96' - id: MiniTileSteelLineS - coordinates: -6,-8 - 83: - color: '#3a3ade96' - id: MiniTileSteelLineS - coordinates: -5,-8 - 84: - color: '#3a3ade96' - id: MiniTileSteelLineS - coordinates: -4,-8 - 85: - color: '#3a3ade96' - id: MiniTileSteelLineS - coordinates: -3,-8 - 86: - color: '#3a3ade96' - id: MiniTileSteelLineS - coordinates: -2,-8 - 87: - color: '#3a3ade96' - id: MiniTileSteelLineS - coordinates: -1,-8 - 133: - color: '#3a3adeFF' - id: MiniTileSteelCornerSw - coordinates: -5,-4 - 136: - color: '#3a3adeFF' - id: MiniTileSteelLineS - coordinates: -1,-4 - 137: - color: '#3a3adeFF' - id: MiniTileSteelLineS - coordinates: -2,-4 - 138: - color: '#3a3adeFF' - id: MiniTileSteelLineS - coordinates: -3,-4 - 139: - color: '#3a3adeFF' - id: MiniTileSteelLineS - coordinates: -4,-4 - 140: - color: '#3a3adeFF' - id: MiniTileSteelLineW - coordinates: -5,-1 - 141: - color: '#3a3adeFF' - id: MiniTileSteelLineW - coordinates: -5,-2 - 142: - color: '#3a3adeFF' - id: MiniTileSteelLineW - coordinates: -5,-3 - 173: - color: '#3a3ade96' - id: MiniTileSteelCornerNw - coordinates: -4,-18 - 174: - color: '#3a3ade96' - id: MiniTileSteelCornerSw - coordinates: -4,-19 - 185: - color: '#3a3ade96' - id: MiniTileSteelLineS - coordinates: -1,-19 - 186: - color: '#3a3ade96' - id: MiniTileSteelLineS - coordinates: -2,-19 - 187: - color: '#3a3ade96' - id: MiniTileSteelLineS - coordinates: -3,-19 - 188: - color: '#3a3ade96' - id: MiniTileSteelLineN - coordinates: -3,-18 - 189: - color: '#3a3ade96' - id: MiniTileSteelLineN - coordinates: -2,-18 - 190: - color: '#3a3ade96' - id: MiniTileSteelLineN - coordinates: -1,-18 - 222: - color: '#3a3ade96' - id: MiniTileSteelCornerNw - coordinates: -4,-21 - 223: - color: '#3a3ade96' - id: MiniTileSteelCornerSw - coordinates: -4,-23 - 224: - color: '#3a3ade96' - id: MiniTileSteelLineN - coordinates: -1,-21 - 225: - color: '#3a3ade96' - id: MiniTileSteelLineN - coordinates: -3,-21 - 226: - color: '#3a3ade96' - id: MiniTileSteelLineN - coordinates: -2,-21 - 228: - color: '#3a3ade96' - id: MiniTileSteelLineW - coordinates: -4,-22 - 229: - color: '#3a3ade96' - id: MiniTileSteelLineS - coordinates: -3,-23 - 230: - color: '#3a3ade96' - id: MiniTileSteelLineS - coordinates: -2,-23 - 231: - color: '#3a3ade96' - id: MiniTileSteelLineS - coordinates: -1,-23 - 0,0: - 102: - color: '#3a3ade96' - id: MiniTileSteelLineW - coordinates: 3,1 - 103: - color: '#3a3ade96' - id: MiniTileSteelCornerNw - coordinates: 3,2 - 104: - color: '#3a3ade96' - id: MiniTileSteelCornerNe - coordinates: 4,2 - 105: - color: '#3a3ade96' - id: MiniTileSteelLineE - coordinates: 4,1 - 121: - color: '#3a3ade96' - id: MiniTileSteelInnerNw - coordinates: 3,0 - 123: - color: '#3a3ade96' - id: MiniTileSteelInnerNe - coordinates: 4,0 - 124: - color: '#3a3adeFF' - id: MiniTileSteelLineN - 129: - color: '#3a3adeFF' - id: MiniTileSteelEndN - coordinates: 1,1 - 130: - color: '#3a3adeFF' - id: MiniTileSteelInnerNw - coordinates: 1,0 - 131: - color: '#3a3adeFF' - id: MiniTileSteelInnerNe - coordinates: 1,0 - 149: - color: '#3a3adeFF' - id: MiniTileSteelLineN - coordinates: 6,0 - 150: - color: '#3a3adeFF' - id: MiniTileSteelLineN - coordinates: 7,0 - 151: - color: '#3a3adeFF' - id: MiniTileSteelLineN - coordinates: 8,0 - 152: - color: '#3a3adeFF' - id: MiniTileSteelLineN - coordinates: 5,0 - -1,0: - 125: - color: '#3a3adeFF' - id: MiniTileSteelLineN - coordinates: -1,0 - 126: - color: '#3a3adeFF' - id: MiniTileSteelLineN - coordinates: -2,0 - 127: - color: '#3a3adeFF' - id: MiniTileSteelLineN - coordinates: -3,0 - 128: - color: '#3a3adeFF' - id: MiniTileSteelLineN - coordinates: -4,0 - 132: - color: '#3a3adeFF' - id: MiniTileSteelCornerNw - coordinates: -5,0 - type: DecalGrid - - tiles: - -2,-2: 0 - -2,-1: 0 - -1,-2: 0 - -1,-1: 0 - 0,-2: 0 - 0,-1: 0 - 0,0: 0 - -2,0: 0 - -1,0: 0 - -6,-5: 0 - -6,-4: 0 - -6,-3: 0 - -6,-2: 0 - -6,-1: 0 - -5,-5: 0 - -5,-4: 0 - -5,-3: 0 - -5,-2: 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 - -2,-4: 0 - -2,-3: 0 - -1,-5: 0 - -1,-4: 0 - -1,-3: 0 - 0,-5: 0 - 0,-4: 0 - 0,-3: 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: 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,-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,-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,-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,-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 - 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 - 11,-10: 0 - 11,-9: 0 - 11,-8: 0 - 11,-7: 0 - 11,-6: 0 - 11,-5: 0 - 11,-4: 0 - 12,-10: 0 - 12,-9: 0 - 12,-8: 0 - 12,-7: 0 - 12,-6: 0 - 12,-5: 0 - 12,-4: 0 - 0,1: 0 - 0,2: 0 - 1,0: 0 - 1,1: 0 - 1,2: 0 - 2,0: 0 - 2,1: 0 - 2,2: 0 - 2,3: 0 - 2,4: 0 - 2,5: 0 - 3,0: 0 - 3,1: 0 - 3,2: 0 - 3,3: 0 - 3,4: 0 - 3,5: 0 - 4,0: 0 - 4,1: 0 - 4,2: 0 - 4,3: 0 - 4,4: 0 - 4,5: 0 - 5,0: 0 - 5,1: 0 - 5,2: 0 - 5,3: 0 - 5,4: 0 - 5,5: 0 - 6,0: 0 - 6,1: 0 - 7,0: 0 - 7,1: 0 - 8,0: 0 - 8,1: 0 - -6,0: 0 - -6,1: 0 - -5,0: 0 - -5,1: 0 - -4,0: 0 - -4,1: 0 - -3,0: 0 - -3,1: 0 - -2,1: 0 - -1,1: 0 - 0,-20: 0 - 0,-19: 0 - 0,-18: 0 - 0,-17: 0 - 1,-20: 0 - 1,-19: 0 - 1,-18: 0 - 1,-17: 0 - 2,-20: 0 - 2,-19: 0 - 2,-18: 0 - 2,-17: 0 - 3,-20: 0 - 3,-19: 0 - 3,-18: 0 - 3,-17: 0 - 4,-20: 0 - 4,-19: 0 - 4,-18: 0 - 4,-17: 0 - 5,-20: 0 - 5,-19: 0 - 5,-18: 0 - 5,-17: 0 - 6,-20: 0 - 6,-19: 0 - 6,-18: 0 - 6,-17: 0 - 7,-20: 0 - 7,-19: 0 - 7,-18: 0 - 7,-17: 0 - 8,-20: 0 - 8,-19: 0 - 8,-18: 0 - 8,-17: 0 - 9,-20: 0 - 9,-19: 0 - 9,-18: 0 - 9,-17: 0 - 10,-20: 0 - 10,-19: 0 - 10,-18: 0 - 10,-17: 0 - 11,-20: 0 - 11,-19: 0 - 11,-18: 0 - 11,-17: 0 - 12,-20: 0 - 12,-19: 0 - 12,-18: 0 - 12,-17: 0 - 13,-20: 0 - 13,-19: 0 - 13,-18: 0 - 13,-17: 0 - -6,-20: 0 - -6,-19: 0 - -6,-18: 0 - -6,-17: 0 - -5,-20: 0 - -5,-19: 0 - -5,-18: 0 - -5,-17: 0 - -4,-20: 0 - -4,-19: 0 - -4,-18: 0 - -4,-17: 0 - -3,-20: 0 - -3,-19: 0 - -3,-18: 0 - -3,-17: 0 - -2,-20: 0 - -2,-19: 0 - -2,-18: 0 - -2,-17: 0 - -1,-20: 0 - -1,-19: 0 - -1,-18: 0 - -1,-17: 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 - -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,-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,-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,-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,-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,-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,-12: 0 - -6,-11: 0 - -6,-10: 0 - -6,-9: 0 - -6,-8: 0 - -6,-7: 0 - -6,-6: 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 - -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 - -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 - -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 - -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 - 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 - 6,-16: 0 - 6,-15: 0 - 6,-14: 0 - 6,-13: 0 - 7,-16: 0 - 7,-15: 0 - 7,-14: 0 - 7,-13: 0 - 8,-16: 0 - 8,-15: 0 - 8,-14: 0 - 8,-13: 0 - 9,-16: 0 - 9,-15: 0 - 9,-14: 0 - 9,-13: 0 - 10,-16: 0 - 10,-15: 0 - 10,-14: 0 - 10,-13: 0 - 11,-16: 0 - 11,-15: 0 - 11,-14: 0 - 11,-13: 0 - 12,-16: 0 - 12,-15: 0 - 12,-14: 0 - 12,-13: 0 - 13,-16: 0 - 13,-15: 0 - 13,-14: 0 - 13,-13: 0 - 0,-24: 0 - 0,-23: 0 - 0,-22: 0 - 0,-21: 0 - 1,-24: 0 - 1,-23: 0 - 1,-22: 0 - 1,-21: 0 - 2,-27: 0 - 2,-26: 0 - 2,-25: 0 - 2,-24: 0 - 2,-23: 0 - 2,-22: 0 - 2,-21: 0 - 3,-27: 0 - 3,-26: 0 - 3,-25: 0 - 3,-24: 0 - 3,-23: 0 - 3,-22: 0 - 3,-21: 0 - 4,-27: 0 - 4,-26: 0 - 4,-25: 0 - 4,-24: 0 - 4,-23: 0 - 4,-22: 0 - 4,-21: 0 - 5,-27: 0 - 5,-26: 0 - 5,-25: 0 - 5,-24: 0 - 5,-23: 0 - 5,-22: 0 - 5,-21: 0 - 6,-27: 0 - 6,-26: 0 - 6,-25: 0 - 6,-24: 0 - 6,-23: 0 - 6,-22: 0 - 6,-21: 0 - 7,-27: 0 - 7,-26: 0 - 7,-25: 0 - 7,-24: 0 - 7,-23: 0 - 7,-22: 0 - 7,-21: 0 - 8,-24: 0 - 8,-23: 0 - 8,-22: 0 - 8,-21: 0 - 9,-24: 0 - 9,-23: 0 - 9,-22: 0 - 9,-21: 0 - 10,-24: 0 - 10,-23: 0 - 10,-22: 0 - 10,-21: 0 - 11,-24: 0 - 11,-23: 0 - 11,-22: 0 - 11,-21: 0 - 12,-24: 0 - 12,-23: 0 - 12,-22: 0 - 12,-21: 0 - 13,-24: 0 - 13,-23: 0 - 13,-22: 0 - 13,-21: 0 - -5,-24: 0 - -5,-23: 0 - -5,-22: 0 - -5,-21: 0 - -4,-24: 0 - -4,-23: 0 - -4,-22: 0 - -4,-21: 0 - -3,-24: 0 - -3,-23: 0 - -3,-22: 0 - -3,-21: 0 - -2,-24: 0 - -2,-23: 0 - -2,-22: 0 - -2,-21: 0 - -1,-24: 0 - -1,-23: 0 - -1,-22: 0 - -1,-21: 0 - uniqueMixes: - - volume: 2500 - temperature: 293.15 - moles: - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: GridAtmosphere - - type: OccluderTree - - type: GridPathfinding - - type: RadiationGridResistance -- uid: 2 - type: WallPlastitanium - components: - - pos: 8.5,-1.5 - parent: 1 - type: Transform -- uid: 3 - type: WallPlastitanium - components: - - pos: -2.5,1.5 - parent: 1 - type: Transform -- uid: 4 - type: WallPlastitanium - components: - - pos: -1.5,1.5 - parent: 1 - type: Transform -- uid: 5 - type: WallPlastitanium - components: - - pos: -0.5,1.5 - parent: 1 - type: Transform -- uid: 6 - type: AirlockMaintGlass - components: - - pos: 2.5,0.5 - parent: 1 - type: Transform -- uid: 7 - type: WallPlastitanium - components: - - pos: 0.5,2.5 - parent: 1 - type: Transform -- uid: 8 - type: WallPlastitanium - components: - - pos: 1.5,2.5 - parent: 1 - type: Transform -- uid: 9 - type: WallPlastitanium - components: - - pos: 2.5,2.5 - parent: 1 - type: Transform -- uid: 10 - type: WallPlastitanium - components: - - pos: 2.5,1.5 - parent: 1 - type: Transform -- uid: 11 - type: WallPlastitanium - components: - - pos: 0.5,1.5 - parent: 1 - type: Transform -- uid: 12 - type: WallPlastitanium - components: - - pos: 2.5,-1.5 - parent: 1 - type: Transform -- uid: 13 - type: WallPlastitanium - components: - - pos: 2.5,-2.5 - parent: 1 - type: Transform -- uid: 14 - type: GeneratorRTG - components: - - pos: -4.5,0.5 - parent: 1 - type: Transform -- uid: 15 - type: CableHV - components: - - pos: -4.5,0.5 - parent: 1 - type: Transform -- uid: 16 - type: CableMV - components: - - pos: -2.5,0.5 - parent: 1 - type: Transform -- uid: 17 - type: CableMV - components: - - pos: -3.5,0.5 - parent: 1 - type: Transform -- uid: 18 - type: CableMV - components: - - pos: -4.5,0.5 - parent: 1 - type: Transform -- uid: 19 - type: GeneratorRTG - components: - - pos: -2.5,0.5 - parent: 1 - type: Transform -- uid: 20 - type: GeneratorRTG - components: - - pos: -3.5,0.5 - parent: 1 - type: Transform -- uid: 21 - type: AirlockMaintGlass - components: - - pos: 2.5,-0.5 - parent: 1 - type: Transform -- uid: 22 - type: CableHV - components: - - pos: 1.5,1.5 - parent: 1 - type: Transform -- uid: 23 - type: CableHV - components: - - pos: 0.5,1.5 - parent: 1 - type: Transform -- uid: 24 - type: CableHV - components: - - pos: 0.5,0.5 - parent: 1 - type: Transform -- uid: 25 - type: CableHV - components: - - pos: -0.5,0.5 - parent: 1 - type: Transform -- uid: 26 - type: CableHV - components: - - pos: -1.5,0.5 - parent: 1 - type: Transform -- uid: 27 - type: WallPlastitanium - components: - - pos: -5.5,-3.5 - parent: 1 - type: Transform -- uid: 28 - type: WallPlastitanium - components: - - pos: -5.5,1.5 - parent: 1 - type: Transform -- uid: 29 - type: VendingMachineYouTool - components: - - flags: SessionSpecific - type: MetaData - - pos: 1.5,-2.5 - parent: 1 - type: Transform -- uid: 30 - type: CableApcExtension - components: - - pos: 1.5,1.5 - parent: 1 - type: Transform -- uid: 31 - type: CableApcExtension - components: - - pos: 0.5,1.5 - parent: 1 - type: Transform -- uid: 32 - type: CableApcExtension - components: - - pos: 0.5,0.5 - parent: 1 - type: Transform -- uid: 33 - type: CableApcExtension - components: - - pos: -0.5,0.5 - parent: 1 - type: Transform -- uid: 34 - type: CableApcExtension - components: - - pos: -1.5,0.5 - parent: 1 - type: Transform -- uid: 35 - type: WallPlastitanium - components: - - pos: -5.5,-1.5 - parent: 1 - type: Transform -- uid: 36 - type: WallPlastitanium - components: - - pos: -5.5,0.5 - parent: 1 - type: Transform -- uid: 37 - type: WallPlastitanium - components: - - pos: -3.5,1.5 - parent: 1 - type: Transform -- uid: 38 - type: CableMV - components: - - pos: 1.5,1.5 - parent: 1 - type: Transform -- uid: 39 - type: CableMV - components: - - pos: 0.5,1.5 - parent: 1 - type: Transform -- uid: 40 - type: CableMV - components: - - pos: 0.5,0.5 - parent: 1 - type: Transform -- uid: 41 - type: CableMV - components: - - pos: -0.5,0.5 - parent: 1 - type: Transform -- uid: 42 - type: CableMV - components: - - pos: -1.5,0.5 - parent: 1 - type: Transform -- uid: 43 - type: WallPlastitanium - components: - - pos: -5.5,-2.5 - parent: 1 - type: Transform -- uid: 44 - type: WallPlastitanium - components: - - pos: -5.5,-0.5 - parent: 1 - type: Transform -- uid: 45 - type: WallPlastitanium - components: - - pos: -4.5,1.5 - parent: 1 - type: Transform -- uid: 46 - type: WallPlastitanium - components: - - pos: -5.5,-4.5 - parent: 1 - type: Transform -- uid: 47 - type: CableHV - components: - - pos: -2.5,0.5 - parent: 1 - type: Transform -- uid: 48 - type: CableHV - components: - - pos: -3.5,0.5 - parent: 1 - type: Transform -- uid: 49 - type: GeneratorRTG - components: - - pos: -1.5,0.5 - parent: 1 - type: Transform -- uid: 50 - type: CableTerminal - components: - - rot: -1.5707963267948966 rad - pos: 0.5,-3.5 - parent: 1 - type: Transform -- uid: 51 - type: APCHighCapacity - components: - - pos: 0.5,1.5 - parent: 1 - type: Transform -- uid: 52 - type: SubstationBasic - components: - - pos: 1.5,1.5 - parent: 1 - type: Transform -- uid: 53 - type: SignEngineering - components: - - pos: 2.5,-1.5 - parent: 1 - type: Transform -- uid: 54 - type: VendingMachineEngivend - components: - - flags: SessionSpecific - type: MetaData - - pos: 1.5,-1.5 - parent: 1 - type: Transform - missingComponents: - - AccessReader -- uid: 55 - type: VendingMachineEngiDrobe - components: - - flags: SessionSpecific - type: MetaData - - pos: 1.5,-3.5 - parent: 1 - type: Transform - missingComponents: - - AccessReader -- uid: 56 - type: WallPlastitanium - components: - - pos: 2.5,3.5 - parent: 1 - type: Transform -- uid: 57 - type: ClothingOuterHardsuitSyndicate - components: - - pos: 3.2254841,2.5191092 - parent: 1 - type: Transform -- uid: 58 - type: ClothingOuterHardsuitSalvage - components: - - pos: 4.729425,2.5900652 - parent: 1 - type: Transform -- uid: 59 - type: WallPlastitanium - components: - - pos: -4.5,-20.5 - parent: 1 - type: Transform -- uid: 60 - type: ClothingOuterHardsuitSyndicate - components: - - pos: 3.7220688,2.4907274 - parent: 1 - type: Transform -- uid: 61 - type: ClothingHeadHelmetSyndicate - components: - - pos: 3.211296,2.5049186 - parent: 1 - type: Transform -- uid: 62 - type: ClothingOuterHardsuitEngineering - components: - - pos: 4.2895927,2.5758739 - parent: 1 - type: Transform -- uid: 63 - type: WallPlastitanium - components: - - pos: 5.5,3.5 - parent: 1 - type: Transform -- uid: 64 - type: WallPlastitanium - components: - - pos: 5.5,2.5 - parent: 1 - type: Transform -- uid: 65 - type: WallPlastitanium - components: - - pos: -4.5,-21.5 - parent: 1 - type: Transform -- uid: 66 - type: ClothingHeadHelmetSyndicate - components: - - pos: 3.7078805,2.4339628 - parent: 1 - type: Transform -- uid: 67 - type: WindoorSecure - components: - - rot: 3.141592653589793 rad - pos: 3.5,1.5 - parent: 1 - type: Transform -- uid: 68 - type: WindoorSecure - components: - - rot: 3.141592653589793 rad - pos: 4.5,1.5 - parent: 1 - type: Transform -- uid: 69 - type: WallPlastitanium - components: - - pos: 5.5,1.5 - parent: 1 - type: Transform -- uid: 70 - type: WallPlastitanium - components: - - pos: 6.5,1.5 - parent: 1 - type: Transform -- uid: 71 - type: WallPlastitanium - components: - - pos: 7.5,1.5 - parent: 1 - type: Transform -- uid: 72 - type: AirlockExternalGlass - components: - - pos: 5.5,-0.5 - parent: 1 - type: Transform -- uid: 73 - type: AirlockExternalGlass - components: - - pos: 8.5,-0.5 - parent: 1 - type: Transform -- uid: 74 - type: AirlockExternalGlass - components: - - pos: 8.5,0.5 - parent: 1 - type: Transform -- uid: 75 - type: AirlockExternalGlass - components: - - pos: 5.5,0.5 - parent: 1 - type: Transform -- uid: 76 - type: WallPlastitanium - components: - - pos: 8.5,1.5 - parent: 1 - type: Transform -- uid: 77 - type: SignGravity - components: - - pos: 2.5,1.5 - parent: 1 - type: Transform -- uid: 78 - type: WallPlastitanium - components: - - pos: 7.5,-1.5 - parent: 1 - type: Transform -- uid: 79 - type: WallPlastitanium - components: - - pos: 6.5,-1.5 - parent: 1 - type: Transform -- uid: 80 - type: WallPlastitanium - components: - - pos: 5.5,-1.5 - parent: 1 - type: Transform -- uid: 81 - type: WallPlastitanium - components: - - pos: 12.5,-3.5 - parent: 1 - type: Transform -- uid: 82 - type: WallPlastitanium - components: - - pos: 5.5,-2.5 - parent: 1 - type: Transform -- uid: 83 - type: WallPlastitanium - components: - - pos: 5.5,-3.5 - parent: 1 - type: Transform -- uid: 84 - type: WallPlastitanium - components: - - pos: 5.5,-4.5 - parent: 1 - type: Transform -- uid: 85 - type: WallPlastitanium - components: - - pos: 6.5,-4.5 - parent: 1 - type: Transform -- uid: 86 - type: WallPlastitanium - components: - - pos: 6.5,-3.5 - parent: 1 - type: Transform -- uid: 87 - type: WallPlastitanium - components: - - pos: 6.5,-2.5 - parent: 1 - type: Transform -- uid: 88 - type: WallPlastitanium - components: - - pos: 7.5,-2.5 - parent: 1 - type: Transform -- uid: 89 - type: WallPlastitanium - components: - - pos: 8.5,-2.5 - parent: 1 - type: Transform -- uid: 90 - type: WallPlastitanium - components: - - pos: 9.5,-2.5 - parent: 1 - type: Transform -- uid: 91 - type: WallPlastitanium - components: - - pos: 10.5,-2.5 - parent: 1 - type: Transform -- uid: 92 - type: WallPlastitanium - components: - - pos: 10.5,-3.5 - parent: 1 - type: Transform -- uid: 93 - type: WallPlastitanium - components: - - pos: 11.5,-3.5 - parent: 1 - type: Transform -- uid: 94 - type: WallPlastitanium - components: - - pos: 12.5,-4.5 - parent: 1 - type: Transform -- uid: 95 - type: WallPlastitanium - components: - - pos: 12.5,-5.5 - parent: 1 - type: Transform -- uid: 96 - type: WallPlastitanium - components: - - pos: 12.5,-6.5 - parent: 1 - type: Transform -- uid: 97 - type: WallPlastitanium - components: - - pos: 12.5,-7.5 - parent: 1 - type: Transform -- uid: 98 - type: WallPlastitanium - components: - - pos: 12.5,-8.5 - parent: 1 - type: Transform -- uid: 99 - type: CableApcExtension - components: - - pos: -2.5,0.5 - parent: 1 - type: Transform -- uid: 100 - type: WallPlastitanium - components: - - pos: 12.5,-9.5 - parent: 1 - type: Transform -- uid: 101 - type: WallPlastitanium - components: - - pos: 11.5,-9.5 - parent: 1 - type: Transform -- uid: 102 - type: WallPlastitanium - components: - - pos: 10.5,-9.5 - parent: 1 - type: Transform -- uid: 103 - type: WallPlastitanium - components: - - pos: 10.5,-10.5 - parent: 1 - type: Transform -- uid: 104 - type: WallPlastitanium - components: - - pos: 9.5,-10.5 - parent: 1 - type: Transform -- uid: 105 - type: WallPlastitanium - components: - - pos: 8.5,-10.5 - parent: 1 - type: Transform -- uid: 106 - type: WallPlastitanium - components: - - pos: 7.5,-10.5 - parent: 1 - type: Transform -- uid: 107 - type: WallPlastitanium - components: - - pos: 6.5,-10.5 - parent: 1 - type: Transform -- uid: 108 - type: WallPlastitanium - components: - - pos: 6.5,-9.5 - parent: 1 - type: Transform -- uid: 109 - type: WallPlastitanium - components: - - pos: 6.5,-8.5 - parent: 1 - type: Transform -- uid: 110 - type: WallPlastitanium - components: - - pos: 5.5,-10.5 - parent: 1 - type: Transform -- uid: 111 - type: WallPlastitanium - components: - - pos: 5.5,-9.5 - parent: 1 - type: Transform -- uid: 112 - type: WallPlastitanium - components: - - pos: 5.5,-8.5 - parent: 1 - type: Transform -- uid: 113 - type: WallPlastitanium - components: - - pos: 2.5,-3.5 - parent: 1 - type: Transform -- uid: 114 - type: WallPlastitanium - components: - - pos: 2.5,-4.5 - parent: 1 - type: Transform -- uid: 115 - type: AirlockGlass - components: - - pos: 2.5,-7.5 - parent: 1 - type: Transform -- uid: 116 - type: AirlockGlass - components: - - pos: 2.5,-6.5 - parent: 1 - type: Transform -- uid: 117 - type: AirlockGlass - components: - - pos: 2.5,-5.5 - parent: 1 - type: Transform -- uid: 118 - type: WallPlastitanium - components: - - pos: 2.5,-8.5 - parent: 1 - type: Transform -- uid: 119 - type: WallPlastitanium - components: - - pos: 2.5,-9.5 - parent: 1 - type: Transform -- uid: 120 - type: WallPlastitanium - components: - - pos: 2.5,-10.5 - parent: 1 - type: Transform -- uid: 121 - type: WallPlastitanium - components: - - pos: 2.5,-11.5 - parent: 1 - type: Transform -- uid: 122 - type: WallPlastitanium - components: - - pos: 2.5,-12.5 - parent: 1 - type: Transform -- uid: 123 - type: WallPlastitanium - components: - - pos: 2.5,-13.5 - parent: 1 - type: Transform -- uid: 124 - type: WallPlastitanium - components: - - pos: 2.5,-14.5 - parent: 1 - type: Transform -- uid: 125 - type: WallPlastitanium - components: - - pos: 2.5,-15.5 - parent: 1 - type: Transform -- uid: 126 - type: WallPlastitanium - components: - - pos: 2.5,-16.5 - parent: 1 - type: Transform -- uid: 127 - type: WallPlastitanium - components: - - pos: 1.5,-8.5 - parent: 1 - type: Transform -- uid: 128 - type: AirlockMaint - components: - - pos: 0.5,-16.5 - parent: 1 - type: Transform -- uid: 129 - type: WallPlastitanium - components: - - pos: -0.5,-16.5 - parent: 1 - type: Transform -- uid: 130 - type: WallPlastitanium - components: - - pos: -1.5,-16.5 - parent: 1 - type: Transform -- uid: 131 - type: WallPlastitanium - components: - - pos: -2.5,-16.5 - parent: 1 - type: Transform -- uid: 132 - type: WallPlastitanium - components: - - pos: -3.5,-16.5 - parent: 1 - type: Transform -- uid: 133 - type: WallPlastitanium - components: - - pos: -4.5,-16.5 - parent: 1 - type: Transform -- uid: 134 - type: WallPlastitanium - components: - - pos: -6.5,-8.5 - parent: 1 - type: Transform -- uid: 135 - type: WallPlastitanium - components: - - pos: 13.5,-18.5 - parent: 1 - type: Transform -- uid: 136 - type: WallPlastitanium - components: - - pos: -4.5,-19.5 - parent: 1 - type: Transform -- uid: 137 - type: WallPlastitanium - components: - - pos: -3.5,-19.5 - parent: 1 - type: Transform -- uid: 138 - type: WallPlastitanium - components: - - pos: -2.5,-19.5 - parent: 1 - type: Transform -- uid: 139 - type: WallPlastitanium - components: - - pos: -1.5,-19.5 - parent: 1 - type: Transform -- uid: 140 - type: WallPlastitanium - components: - - pos: -0.5,-19.5 - parent: 1 - type: Transform -- uid: 141 - type: SignSmoking - components: - - pos: -0.5,-19.5 - parent: 1 - type: Transform -- uid: 142 - type: WallPlastitanium - components: - - pos: 1.5,-19.5 - parent: 1 - type: Transform -- uid: 143 - type: WallPlastitanium - components: - - pos: 2.5,-19.5 - parent: 1 - type: Transform -- uid: 144 - type: WallPlastitanium - components: - - pos: 3.5,-19.5 - parent: 1 - type: Transform -- uid: 145 - type: EngineeringTechFab - components: - - pos: 3.5,-20.5 - parent: 1 - type: Transform -- uid: 146 - type: WallPlastitanium - components: - - pos: 5.5,-19.5 - parent: 1 - type: Transform -- uid: 147 - type: WallPlastitanium - components: - - pos: 6.5,-19.5 - parent: 1 - type: Transform -- uid: 148 - type: WallPlastitanium - components: - - pos: 7.5,-19.5 - parent: 1 - type: Transform -- uid: 149 - type: chem_master - components: - - pos: 9.5,-22.5 - parent: 1 - type: Transform -- uid: 150 - type: WallPlastitanium - components: - - pos: 9.5,-19.5 - parent: 1 - type: Transform -- uid: 151 - type: WallPlastitanium - components: - - pos: 10.5,-19.5 - parent: 1 - type: Transform -- uid: 152 - type: WallPlastitanium - components: - - pos: 11.5,-19.5 - parent: 1 - type: Transform -- uid: 153 - type: WallPlastitanium - components: - - pos: 12.5,-19.5 - parent: 1 - type: Transform -- uid: 154 - type: WallPlastitanium - components: - - pos: 13.5,-19.5 - parent: 1 - type: Transform -- uid: 155 - type: WallPlastitanium - components: - - pos: 13.5,-16.5 - parent: 1 - type: Transform -- uid: 156 - type: WallPlastitanium - components: - - pos: 12.5,-16.5 - parent: 1 - type: Transform -- uid: 157 - type: AirlockMaint - components: - - pos: 11.5,-16.5 - parent: 1 - type: Transform -- uid: 158 - type: OxygenCanister - components: - - pos: 6.5,-13.5 - parent: 1 - type: Transform -- uid: 159 - type: WallPlastitanium - components: - - pos: 9.5,-16.5 - parent: 1 - type: Transform -- uid: 160 - type: WallPlastitanium - components: - - pos: 8.5,-16.5 - parent: 1 - type: Transform -- uid: 161 - type: WallPlastitanium - components: - - pos: 6.5,-16.5 - parent: 1 - type: Transform -- uid: 162 - type: WallPlastitanium - components: - - pos: 9.5,-13.5 - parent: 1 - type: Transform -- uid: 163 - type: WallPlastitanium - components: - - pos: 5.5,-16.5 - parent: 1 - type: Transform -- uid: 164 - type: WallPlastitanium - components: - - pos: 5.5,-15.5 - parent: 1 - type: Transform -- uid: 165 - type: WallPlastitanium - components: - - pos: 5.5,-14.5 - parent: 1 - type: Transform -- uid: 166 - type: WallPlastitanium - components: - - pos: 5.5,-13.5 - parent: 1 - type: Transform -- uid: 167 - type: WallPlastitanium - components: - - pos: 5.5,-12.5 - parent: 1 - type: Transform -- uid: 168 - type: WallPlastitanium - components: - - pos: 5.5,-11.5 - parent: 1 - type: Transform -- uid: 169 - type: CableApcExtension - components: - - pos: -3.5,0.5 - parent: 1 - type: Transform -- uid: 170 - type: CableApcExtension - components: - - pos: -4.5,0.5 - parent: 1 - type: Transform -- uid: 171 - type: WallPlastitanium - components: - - pos: -4.5,-4.5 - parent: 1 - type: Transform -- uid: 172 - type: WallPlastitanium - components: - - pos: -3.5,-4.5 - parent: 1 - type: Transform -- uid: 173 - type: WallPlastitanium - components: - - pos: -2.5,-4.5 - parent: 1 - type: Transform -- uid: 174 - type: WallPlastitanium - components: - - pos: -1.5,-4.5 - parent: 1 - type: Transform -- uid: 175 - type: WallPlastitanium - components: - - pos: -0.5,-4.5 - parent: 1 - type: Transform -- uid: 176 - type: WallPlastitanium - components: - - pos: 0.5,-4.5 - parent: 1 - type: Transform -- uid: 177 - type: WallPlastitanium - components: - - pos: 1.5,-4.5 - parent: 1 - type: Transform -- uid: 178 - type: CableHV - components: - - pos: -4.5,-0.5 - parent: 1 - type: Transform -- uid: 179 - type: CableHV - components: - - pos: -4.5,-1.5 - parent: 1 - type: Transform -- uid: 180 - type: CableHV - components: - - pos: -4.5,-2.5 - parent: 1 - type: Transform -- uid: 181 - type: CableHV - components: - - pos: -4.5,-3.5 - parent: 1 - type: Transform -- uid: 182 - type: CableHV - components: - - pos: -3.5,-3.5 - parent: 1 - type: Transform -- uid: 183 - type: CableHV - components: - - pos: -2.5,-3.5 - parent: 1 - type: Transform -- uid: 184 - type: CableHV - components: - - pos: -1.5,-3.5 - parent: 1 - type: Transform -- uid: 185 - type: CableHV - components: - - pos: -0.5,-3.5 - parent: 1 - type: Transform -- uid: 186 - type: CableHV - components: - - pos: 0.5,-3.5 - parent: 1 - type: Transform -- uid: 187 - type: CableHV - components: - - pos: 1.5,-3.5 - parent: 1 - type: Transform -- uid: 188 - type: CableHV - components: - - pos: 1.5,-2.5 - parent: 1 - type: Transform -- uid: 189 - type: CableHV - components: - - pos: 1.5,-1.5 - parent: 1 - type: Transform -- uid: 190 - type: CableHV - components: - - pos: 1.5,-0.5 - parent: 1 - type: Transform -- uid: 191 - type: CableHV - components: - - pos: 1.5,0.5 - parent: 1 - type: Transform -- uid: 192 - type: CableMV - components: - - pos: 1.5,0.5 - parent: 1 - type: Transform -- uid: 193 - type: CableMV - components: - - pos: 1.5,-0.5 - parent: 1 - type: Transform -- uid: 194 - type: CableMV - components: - - pos: 1.5,-1.5 - parent: 1 - type: Transform -- uid: 195 - type: CableMV - components: - - pos: 1.5,-2.5 - parent: 1 - type: Transform -- uid: 196 - type: CableMV - components: - - pos: 1.5,-3.5 - parent: 1 - type: Transform -- uid: 197 - type: CableMV - components: - - pos: 0.5,-3.5 - parent: 1 - type: Transform -- uid: 198 - type: CableMV - components: - - pos: -0.5,-3.5 - parent: 1 - type: Transform -- uid: 199 - type: CableMV - components: - - pos: -1.5,-3.5 - parent: 1 - type: Transform -- uid: 200 - type: CableMV - components: - - pos: -2.5,-3.5 - parent: 1 - type: Transform -- uid: 201 - type: CableMV - components: - - pos: -3.5,-3.5 - parent: 1 - type: Transform -- uid: 202 - type: CableMV - components: - - pos: -4.5,-3.5 - parent: 1 - type: Transform -- uid: 203 - type: CableMV - components: - - pos: -4.5,-2.5 - parent: 1 - type: Transform -- uid: 204 - type: CableMV - components: - - pos: -4.5,-1.5 - parent: 1 - type: Transform -- uid: 205 - type: CableMV - components: - - pos: -4.5,-0.5 - parent: 1 - type: Transform -- uid: 206 - type: CableApcExtension - components: - - pos: 1.5,0.5 - parent: 1 - type: Transform -- uid: 207 - type: CableApcExtension - components: - - pos: 1.5,-0.5 - parent: 1 - type: Transform -- uid: 208 - type: CableApcExtension - components: - - pos: 1.5,-1.5 - parent: 1 - type: Transform -- uid: 209 - type: CableApcExtension - components: - - pos: 1.5,-2.5 - parent: 1 - type: Transform -- uid: 210 - type: CableApcExtension - components: - - pos: 1.5,-3.5 - parent: 1 - type: Transform -- uid: 211 - type: CableApcExtension - components: - - pos: -0.5,-3.5 - parent: 1 - type: Transform -- uid: 212 - type: CableApcExtension - components: - - pos: 0.5,-3.5 - parent: 1 - type: Transform -- uid: 213 - type: CableApcExtension - components: - - pos: -1.5,-3.5 - parent: 1 - type: Transform -- uid: 214 - type: CableApcExtension - components: - - pos: -2.5,-3.5 - parent: 1 - type: Transform -- uid: 215 - type: CableApcExtension - components: - - pos: -3.5,-3.5 - parent: 1 - type: Transform -- uid: 216 - type: CableApcExtension - components: - - pos: -4.5,-3.5 - parent: 1 - type: Transform -- uid: 217 - type: CableApcExtension - components: - - pos: -4.5,-2.5 - parent: 1 - type: Transform -- uid: 218 - type: CableApcExtension - components: - - pos: -4.5,-1.5 - parent: 1 - type: Transform -- uid: 219 - type: CableApcExtension - components: - - pos: -4.5,-0.5 - parent: 1 - type: Transform -- uid: 220 - type: GravityGenerator - components: - - pos: -3.5,-2.5 - parent: 1 - type: Transform -- uid: 221 - type: CableHV - components: - - pos: 3.5,0.5 - parent: 1 - type: Transform -- uid: 222 - type: AirlockGlass - components: - - pos: 5.5,-5.5 - parent: 1 - type: Transform -- uid: 223 - type: AirlockGlass - components: - - pos: 5.5,-6.5 - parent: 1 - type: Transform -- uid: 224 - type: AirlockGlass - components: - - pos: 5.5,-7.5 - parent: 1 - type: Transform -- uid: 225 - type: FirelockGlass - components: - - pos: 6.5,-5.5 - parent: 1 - type: Transform -- uid: 226 - type: FirelockGlass - components: - - pos: 6.5,-6.5 - parent: 1 - type: Transform -- uid: 227 - type: FirelockGlass - components: - - pos: 6.5,-7.5 - parent: 1 - type: Transform -- uid: 228 - type: FirelockGlass - components: - - pos: 2.5,0.5 - parent: 1 - type: Transform -- uid: 229 - type: FirelockGlass - components: - - pos: 2.5,-0.5 - parent: 1 - type: Transform -- uid: 230 - type: AtmosDeviceFanTiny - components: - - rot: 3.141592653589793 rad - pos: 8.5,-0.5 - parent: 1 - type: Transform -- uid: 231 - type: AtmosDeviceFanTiny - components: - - rot: 3.141592653589793 rad - pos: 8.5,0.5 - parent: 1 - type: Transform -- uid: 232 - type: WallPlastitanium - components: - - pos: 13.5,-15.5 - parent: 1 - type: Transform -- uid: 233 - type: WallPlastitanium - components: - - pos: 13.5,-14.5 - parent: 1 - type: Transform -- uid: 234 - type: WallPlastitanium - components: - - pos: 13.5,-13.5 - parent: 1 - type: Transform -- uid: 235 - type: WallPlastitanium - components: - - pos: 13.5,-12.5 - parent: 1 - type: Transform -- uid: 236 - type: WallPlastitanium - components: - - pos: 12.5,-12.5 - parent: 1 - type: Transform -- uid: 237 - type: WallPlastitanium - components: - - pos: 11.5,-12.5 - parent: 1 - type: Transform -- uid: 238 - type: WallPlastitanium - components: - - pos: 10.5,-12.5 - parent: 1 - type: Transform -- uid: 239 - type: WallPlastitanium - components: - - pos: 9.5,-12.5 - parent: 1 - type: Transform -- uid: 240 - type: WallPlastitanium - components: - - pos: 8.5,-12.5 - parent: 1 - type: Transform -- uid: 241 - type: WallPlastitanium - components: - - pos: 7.5,-12.5 - parent: 1 - type: Transform -- uid: 242 - type: WallPlastitanium - components: - - pos: 6.5,-12.5 - parent: 1 - type: Transform -- uid: 243 - type: WallPlastitanium - components: - - pos: -4.5,-15.5 - parent: 1 - type: Transform -- uid: 244 - type: WallPlastitanium - components: - - pos: 9.5,-14.5 - parent: 1 - type: Transform -- uid: 245 - type: WallPlastitanium - components: - - pos: 9.5,-15.5 - parent: 1 - type: Transform -- uid: 246 - type: OxygenCanister - components: - - pos: 6.5,-14.5 - parent: 1 - type: Transform -- uid: 247 - type: SignCanisters - components: - - pos: 6.5,-16.5 - parent: 1 - type: Transform -- uid: 248 - type: NitrogenCanister - components: - - pos: 7.5,-13.5 - parent: 1 - type: Transform -- uid: 249 - type: NitrogenCanister - components: - - pos: 7.5,-14.5 - parent: 1 - type: Transform -- uid: 250 - type: NitrousOxideCanister - components: - - pos: 8.5,-13.5 - parent: 1 - type: Transform -- uid: 251 - type: PlasmaCanister - components: - - pos: 8.5,-14.5 - parent: 1 - type: Transform -- uid: 252 - type: ClosetEmergencyFilledRandom - components: - - pos: 10.5,-13.5 - parent: 1 - type: Transform -- uid: 253 - type: ClosetEmergencyFilledRandom - components: - - pos: 10.5,-14.5 - parent: 1 - type: Transform -- uid: 254 - type: ClosetFireFilled - components: - - pos: 11.5,-13.5 - parent: 1 - type: Transform -- uid: 255 - type: ClosetFireFilled - components: - - pos: 11.5,-14.5 - parent: 1 - type: Transform -- uid: 256 - type: ClosetRadiationSuitFilled - components: - - pos: 12.5,-13.5 - parent: 1 - type: Transform -- uid: 257 - type: ClosetL3Filled - components: - - pos: 12.5,-14.5 - parent: 1 - type: Transform -- uid: 258 - type: AirlockMaint - components: - - pos: 7.5,-16.5 - parent: 1 - type: Transform -- uid: 259 - type: SignToolStorage - components: - - pos: 3.5,-19.5 - parent: 1 - type: Transform -- uid: 260 - type: WallPlastitanium - components: - - pos: 10.5,-16.5 - parent: 1 - type: Transform -- uid: 261 - type: SignAtmos - components: - - pos: 12.5,-16.5 - parent: 1 - type: Transform -- uid: 262 - type: WallPlastitanium - components: - - pos: -4.5,-14.5 - parent: 1 - type: Transform -- uid: 263 - type: WallPlastitanium - components: - - pos: -4.5,-13.5 - parent: 1 - type: Transform -- uid: 264 - type: WallPlastitanium - components: - - pos: -4.5,-12.5 - parent: 1 - type: Transform -- uid: 265 - type: WallPlastitanium - components: - - pos: -4.5,-11.5 - parent: 1 - type: Transform -- uid: 266 - type: WallPlastitanium - components: - - pos: -3.5,-11.5 - parent: 1 - type: Transform -- uid: 267 - type: WallPlastitanium - components: - - pos: -2.5,-11.5 - parent: 1 - type: Transform -- uid: 268 - type: WallPlastitanium - components: - - pos: -1.5,-11.5 - parent: 1 - type: Transform -- uid: 269 - type: WallPlastitanium - components: - - pos: -0.5,-11.5 - parent: 1 - type: Transform -- uid: 270 - type: WallPlastitanium - components: - - pos: 0.5,-11.5 - parent: 1 - type: Transform -- uid: 271 - type: WallPlastitanium - components: - - pos: 1.5,-11.5 - parent: 1 - type: Transform -- uid: 272 - type: WallPlastitanium - components: - - pos: 1.5,-16.5 - parent: 1 - type: Transform -- uid: 273 - type: SignCargo - components: - - pos: 1.5,-16.5 - parent: 1 - type: Transform -- uid: 274 - type: CrateMaterialWood - components: - - pos: -3.5,-13.5 - parent: 1 - type: Transform -- uid: 275 - type: CrateMaterialPlastic - components: - - pos: -0.5,-12.5 - parent: 1 - type: Transform -- uid: 276 - type: CrateMaterialPlasteel - components: - - pos: 0.5,-12.5 - parent: 1 - type: Transform -- uid: 277 - type: CrateMaterialSteel - components: - - pos: -2.5,-12.5 - parent: 1 - type: Transform -- uid: 278 - type: CrateMaterialGlass - components: - - pos: 1.5,-12.5 - parent: 1 - type: Transform -- uid: 279 - type: CrateMaterialPlasma - components: - - pos: -1.5,-12.5 - parent: 1 - type: Transform -- uid: 280 - type: CrateMaterialSteel - components: - - pos: -2.5,-13.5 - parent: 1 - type: Transform -- uid: 281 - type: CrateChemistrySupplies - components: - - pos: 11.5,-20.5 - parent: 1 - type: Transform -- uid: 282 - type: CrateMaterialWood - components: - - pos: -3.5,-12.5 - parent: 1 - type: Transform -- uid: 283 - type: CrateMaterialSteel - components: - - pos: -2.5,-14.5 - parent: 1 - type: Transform -- uid: 284 - type: CrateMaterialPlasteel - components: - - pos: 0.5,-14.5 - parent: 1 - type: Transform -- uid: 285 - type: CrateMaterialGlass - components: - - pos: 1.5,-14.5 - parent: 1 - type: Transform -- uid: 286 - type: WallPlastitanium - components: - - pos: -4.5,-17.5 - parent: 1 - type: Transform -- uid: 287 - type: WallPlastitanium - components: - - pos: -5.5,-8.5 - parent: 1 - type: Transform -- uid: 288 - type: CrateMaterialGlass - components: - - pos: 1.5,-13.5 - parent: 1 - type: Transform -- uid: 289 - type: CrateMaterialPlasteel - components: - - pos: 0.5,-13.5 - parent: 1 - type: Transform -- uid: 290 - type: CrateMaterialPlastic - components: - - pos: -0.5,-13.5 - parent: 1 - type: Transform -- uid: 291 - type: CrateMaterialPlasma - components: - - pos: -1.5,-13.5 - parent: 1 - type: Transform -- uid: 292 - type: WallPlastitanium - components: - - pos: -9.5,-4.5 - parent: 1 - type: Transform -- uid: 293 - type: WallPlastitanium - components: - - pos: -12.5,-10.5 - parent: 1 - type: Transform -- uid: 294 - type: CrateMaterialWood - components: - - pos: -3.5,-14.5 - parent: 1 - type: Transform -- uid: 295 - type: WallPlastitanium - components: - - pos: -0.5,-8.5 - parent: 1 - type: Transform -- uid: 296 - type: WallPlastitanium - components: - - pos: -10.5,-4.5 - parent: 1 - type: Transform -- uid: 297 - type: WallPlastitanium - components: - - pos: -4.5,-8.5 - parent: 1 - type: Transform -- uid: 298 - type: WallPlastitanium - components: - - pos: -3.5,-8.5 - parent: 1 - type: Transform -- uid: 299 - type: ChairOfficeDark - components: - - pos: 11.5,-21.5 - parent: 1 - type: Transform -- uid: 300 - type: WallPlastitanium - components: - - pos: -6.5,-4.5 - parent: 1 - type: Transform -- uid: 301 - type: WallPlastitanium - components: - - pos: -7.5,-4.5 - parent: 1 - type: Transform -- uid: 302 - type: Airlock - components: - - pos: -8.5,-4.5 - parent: 1 - type: Transform -- uid: 303 - type: WallPlastitanium - components: - - pos: -11.5,-4.5 - parent: 1 - type: Transform -- uid: 304 - type: WallPlastitanium - components: - - pos: 0.5,-8.5 - parent: 1 - type: Transform -- uid: 305 - type: WallPlastitanium - components: - - pos: -12.5,-11.5 - parent: 1 - type: Transform -- uid: 306 - type: WallPlastitanium - components: - - pos: -7.5,-8.5 - parent: 1 - type: Transform -- uid: 307 - type: BoxLatexGloves - components: - - pos: 11.91406,-22.389015 - parent: 1 - type: Transform -- uid: 308 - type: CrateMaterialPlasma - components: - - pos: -1.5,-14.5 - parent: 1 - type: Transform -- uid: 309 - type: CrateMaterialPlastic - components: - - pos: -0.5,-14.5 - parent: 1 - type: Transform -- uid: 310 - type: WallPlastitanium - components: - - pos: 13.5,-17.5 - parent: 1 - type: Transform -- uid: 311 - type: WallPlastitanium - components: - - pos: -4.5,-18.5 - parent: 1 - type: Transform -- uid: 312 - type: WallPlastitanium - components: - - pos: 7.5,-20.5 - parent: 1 - type: Transform -- uid: 313 - type: WallPlastitanium - components: - - pos: 7.5,-21.5 - parent: 1 - type: Transform -- uid: 314 - type: WallPlastitanium - components: - - pos: 7.5,-22.5 - parent: 1 - type: Transform -- uid: 315 - type: WallPlastitanium - components: - - pos: 7.5,-23.5 - parent: 1 - type: Transform -- uid: 316 - type: WallPlastitanium - components: - - pos: 8.5,-23.5 - parent: 1 - type: Transform -- uid: 317 - type: WallPlastitanium - components: - - pos: 9.5,-23.5 - parent: 1 - type: Transform -- uid: 318 - type: WallPlastitanium - components: - - pos: 10.5,-23.5 - parent: 1 - type: Transform -- uid: 319 - type: WallPlastitanium - components: - - pos: 11.5,-23.5 - parent: 1 - type: Transform -- uid: 320 - type: WallPlastitanium - components: - - pos: 12.5,-23.5 - parent: 1 - type: Transform -- uid: 321 - type: WallPlastitanium - components: - - pos: 13.5,-23.5 - parent: 1 - type: Transform -- uid: 322 - type: WallPlastitanium - components: - - pos: 13.5,-22.5 - parent: 1 - type: Transform -- uid: 323 - type: WallPlastitanium - components: - - pos: 13.5,-21.5 - parent: 1 - type: Transform -- uid: 324 - type: WallPlastitanium - components: - - pos: 13.5,-20.5 - parent: 1 - type: Transform -- uid: 325 - type: chem_dispenser - components: - - pos: 8.5,-22.5 - parent: 1 - type: Transform -- uid: 326 - type: LockerMedicineFilled - components: - - pos: 12.5,-20.5 - parent: 1 - type: Transform - missingComponents: - - AccessReader -- uid: 327 - type: TableReinforced - components: - - pos: 10.5,-22.5 - parent: 1 - type: Transform -- uid: 328 - type: TableReinforced - components: - - pos: 11.5,-22.5 - parent: 1 - type: Transform -- uid: 329 - type: TableReinforced - components: - - pos: 12.5,-22.5 - parent: 1 - type: Transform -- uid: 330 - type: TableReinforced - components: - - pos: 12.5,-21.5 - parent: 1 - type: Transform -- uid: 331 - type: ChemicalMedipen - components: - - pos: 10.484516,-22.194567 - parent: 1 - type: Transform -- uid: 332 - type: ChemicalMedipen - components: - - pos: 10.498704,-22.393242 - parent: 1 - type: Transform -- uid: 333 - type: ChemicalMedipen - components: - - pos: 10.512893,-22.60611 - parent: 1 - type: Transform -- uid: 334 - type: SignChem - components: - - pos: 9.5,-19.5 - parent: 1 - type: Transform -- uid: 335 - type: CableHV - components: - - pos: 4.5,-19.5 - parent: 1 - type: Transform -- uid: 336 - type: HandLabeler - components: - - rot: -1.5707963267948966 rad - pos: 11.146079,-22.483614 - parent: 1 - type: Transform -- uid: 337 - type: BoxPillCanister - components: - - pos: 12.141069,-22.658646 - parent: 1 - type: Transform -- uid: 338 - type: BoxBottle - components: - - pos: 11.658673,-22.658646 - parent: 1 - type: Transform -- uid: 339 - type: MedkitFilled - components: - - pos: 12.663751,-22.58295 - parent: 1 - type: Transform -- uid: 340 - type: MedkitBurnFilled - components: - - pos: 12.649563,-22.143026 - parent: 1 - type: Transform -- uid: 341 - type: MedkitBruteFilled - components: - - pos: 12.606998,-21.759867 - parent: 1 - type: Transform -- uid: 342 - type: MedkitAdvancedFilled - components: - - pos: 12.606998,-21.390898 - parent: 1 - type: Transform -- uid: 343 - type: CableHV - components: - - pos: 8.5,-3.5 - parent: 1 - type: Transform -- uid: 344 - type: Airlock - components: - - pos: -8.5,-8.5 - parent: 1 - type: Transform -- uid: 345 - type: WallPlastitanium - components: - - pos: -9.5,-8.5 - parent: 1 - type: Transform -- uid: 346 - type: WallPlastitanium - components: - - pos: -10.5,-8.5 - parent: 1 - type: Transform -- uid: 347 - type: WallPlastitanium - components: - - pos: -11.5,-8.5 - parent: 1 - type: Transform -- uid: 348 - type: FirelockGlass - components: - - pos: 1.5,-5.5 - parent: 1 - type: Transform -- uid: 349 - type: FirelockGlass - components: - - pos: 1.5,-6.5 - parent: 1 - type: Transform -- uid: 350 - type: FirelockGlass - components: - - pos: 1.5,-7.5 - parent: 1 - type: Transform -- uid: 351 - type: WallPlastitanium - components: - - pos: -5.5,-11.5 - parent: 1 - type: Transform -- uid: 352 - type: WallPlastitanium - components: - - pos: -6.5,-11.5 - parent: 1 - type: Transform -- uid: 353 - type: WallPlastitanium - components: - - pos: -7.5,-11.5 - parent: 1 - type: Transform -- uid: 354 - type: WallPlastitanium - components: - - pos: -8.5,-11.5 - parent: 1 - type: Transform -- uid: 355 - type: WallPlastitanium - components: - - pos: -9.5,-11.5 - parent: 1 - type: Transform -- uid: 356 - type: WallPlastitanium - components: - - pos: -10.5,-11.5 - parent: 1 - type: Transform -- uid: 357 - type: WallPlastitanium - components: - - pos: -11.5,-11.5 - parent: 1 - type: Transform -- uid: 358 - type: ReinforcedWindow - components: - - pos: -6.5,-10.5 - parent: 1 - type: Transform -- uid: 359 - type: ReinforcedWindow - components: - - pos: -6.5,-9.5 - parent: 1 - type: Transform -- uid: 360 - type: ReinforcedWindow - components: - - pos: -3.5,-10.5 - parent: 1 - type: Transform -- uid: 361 - type: ReinforcedWindow - components: - - pos: -3.5,-9.5 - parent: 1 - type: Transform -- uid: 362 - type: WallPlastitanium - components: - - pos: -12.5,-9.5 - parent: 1 - type: Transform -- uid: 363 - type: WallPlastitanium - components: - - pos: -12.5,-8.5 - parent: 1 - type: Transform -- uid: 364 - type: WallPlastitanium - components: - - pos: -12.5,-4.5 - parent: 1 - type: Transform -- uid: 365 - type: SleeperSyndicate - components: - - rot: 1.5707963267948966 rad - pos: -11.5,-10.5 - parent: 1 - type: Transform - - containers: - entity_storage: !type:Container - ents: [] - type: ContainerContainer -- uid: 366 - type: SleeperSyndicate - components: - - rot: -1.5707963267948966 rad - pos: 1.5,-9.5 - parent: 1 - type: Transform - - containers: - entity_storage: !type:Container - ents: [] - type: ContainerContainer -- uid: 367 - type: FloraRockSolid02 - components: - - pos: -5.2956204,-10.04974 - parent: 1 - type: Transform -- uid: 368 - type: WallPlastitanium - components: - - pos: -2.5,-8.5 - parent: 1 - type: Transform -- uid: 369 - type: Airlock - components: - - pos: -1.5,-8.5 - parent: 1 - type: Transform -- uid: 370 - type: WallPlastitanium - components: - - pos: -12.5,-6.5 - parent: 1 - type: Transform -- uid: 371 - type: WallPlastitanium - components: - - pos: -12.5,-7.5 - parent: 1 - type: Transform -- uid: 372 - type: WallPlastitanium - components: - - pos: -12.5,-5.5 - parent: 1 - type: Transform -- uid: 373 - type: WallPlastitanium - components: - - pos: -11.5,-3.5 - parent: 1 - type: Transform -- uid: 374 - type: WallPlastitanium - components: - - pos: -11.5,-2.5 - parent: 1 - type: Transform -- uid: 375 - type: WallPlastitanium - components: - - pos: -11.5,-1.5 - parent: 1 - type: Transform -- uid: 376 - type: WallPlastitanium - components: - - pos: -11.5,-0.5 - parent: 1 - type: Transform -- uid: 377 - type: WallPlastitanium - components: - - pos: -10.5,-0.5 - parent: 1 - type: Transform -- uid: 378 - type: WallPlastitanium - components: - - pos: -9.5,-0.5 - parent: 1 - type: Transform -- uid: 379 - type: WallPlastitanium - components: - - pos: -8.5,-0.5 - parent: 1 - type: Transform -- uid: 380 - type: WallPlastitanium - components: - - pos: -7.5,-0.5 - parent: 1 - type: Transform -- uid: 381 - type: WallPlastitanium - components: - - pos: -6.5,-0.5 - parent: 1 - type: Transform -- uid: 382 - type: BedsheetSpawner - components: - - pos: -6.5,-3.5 - parent: 1 - type: Transform -- uid: 383 - type: MedicalBed - components: - - pos: -6.5,-3.5 - parent: 1 - type: Transform -- uid: 384 - type: SleeperSyndicate - components: - - rot: -1.5707963267948966 rad - pos: -6.5,-1.5 - parent: 1 - type: Transform - - containers: - entity_storage: !type:Container - ents: [] - type: ContainerContainer -- uid: 385 - type: Dresser - components: - - pos: -10.5,-1.5 - parent: 1 - type: Transform -- uid: 386 - type: Bookshelf - components: - - pos: -11.5,-9.5 - parent: 1 - type: Transform -- uid: 387 - type: Bookshelf - components: - - pos: -10.5,-9.5 - parent: 1 - type: Transform -- uid: 388 - type: Bookshelf - components: - - pos: -9.5,-3.5 - parent: 1 - type: Transform -- uid: 389 - type: Bookshelf - components: - - pos: -10.5,-3.5 - parent: 1 - type: Transform -- uid: 390 - type: ComfyChair - components: - - rot: -1.5707963267948966 rad - pos: -2.5,-9.5 - parent: 1 - type: Transform -- uid: 391 - type: Bookshelf - components: - - pos: 0.5,-10.5 - parent: 1 - type: Transform -- uid: 392 - type: Bookshelf - components: - - pos: 1.5,-10.5 - parent: 1 - type: Transform -- uid: 393 - type: ComfyChair - components: - - rot: 1.5707963267948966 rad - pos: -7.5,-10.5 - parent: 1 - type: Transform -- uid: 394 - type: Rack - components: - - pos: 3.5,2.5 - parent: 1 - type: Transform -- uid: 395 - type: Rack - components: - - pos: 4.5,2.5 - parent: 1 - type: Transform -- uid: 396 - type: WallPlastitanium - components: - - pos: 3.5,3.5 - parent: 1 - type: Transform -- uid: 397 - type: WallPlastitanium - components: - - pos: 4.5,3.5 - parent: 1 - type: Transform -- uid: 398 - type: WallPlastitanium - components: - - pos: -4.5,-22.5 - parent: 1 - type: Transform -- uid: 399 - type: WallPlastitanium - components: - - pos: -4.5,-23.5 - parent: 1 - type: Transform -- uid: 400 - type: WallPlastitanium - components: - - pos: -3.5,-23.5 - parent: 1 - type: Transform -- uid: 401 - type: WallPlastitanium - components: - - pos: -2.5,-23.5 - parent: 1 - type: Transform -- uid: 402 - type: WallPlastitanium - components: - - pos: -1.5,-23.5 - parent: 1 - type: Transform -- uid: 403 - type: WallPlastitanium - components: - - pos: -0.5,-23.5 - parent: 1 - type: Transform -- uid: 404 - type: WallPlastitanium - components: - - pos: 0.5,-23.5 - parent: 1 - type: Transform -- uid: 405 - type: WallPlastitanium - components: - - pos: 1.5,-23.5 - parent: 1 - type: Transform -- uid: 406 - type: WallPlastitanium - components: - - pos: 2.5,-23.5 - parent: 1 - type: Transform -- uid: 407 - type: WallPlastitanium - components: - - pos: 2.5,-22.5 - parent: 1 - type: Transform -- uid: 408 - type: WallPlastitanium - components: - - pos: 2.5,-21.5 - parent: 1 - type: Transform -- uid: 409 - type: WallPlastitanium - components: - - pos: 2.5,-20.5 - parent: 1 - type: Transform -- uid: 410 - type: AirlockScience - components: - - pos: 4.5,-19.5 - parent: 1 - type: Transform -- uid: 411 - type: Airlock - components: - - pos: 0.5,-19.5 - parent: 1 - type: Transform -- uid: 412 - type: SignCanisters - components: - - pos: 8.5,-16.5 - parent: 1 - type: Transform -- uid: 413 - type: JanitorialTrolley - components: - - rot: 1.5707963267948966 rad - pos: -3.5,-22.5 - parent: 1 - type: Transform -- uid: 414 - type: ClosetL3JanitorFilled - components: - - pos: -2.5,-20.5 - parent: 1 - type: Transform -- uid: 415 - type: ClosetJanitorFilled - components: - - pos: -1.5,-20.5 - parent: 1 - type: Transform -- uid: 416 - type: JanitorialTrolley - components: - - rot: 1.5707963267948966 rad - pos: -2.5,-22.5 - parent: 1 - type: Transform -- uid: 417 - type: VendingMachineJaniDrobe - components: - - flags: SessionSpecific - type: MetaData - - pos: -3.5,-20.5 - parent: 1 - type: Transform - missingComponents: - - AccessReader -- uid: 418 - type: VehicleKeyPussyWagon - components: - - pos: 0.5,-22.5 - parent: 1 - type: Transform -- uid: 419 - type: SpawnVehiclePussywagon - components: - - pos: -0.5,-22.5 - parent: 1 - type: Transform -- uid: 420 - type: Rack - components: - - pos: 0.5,-22.5 - parent: 1 - type: Transform -- uid: 421 - type: TableReinforced - components: - - pos: 1.5,-21.5 - parent: 1 - type: Transform -- uid: 422 - type: TableReinforced - components: - - pos: 1.5,-20.5 - parent: 1 - type: Transform -- uid: 423 - type: TableReinforced - components: - - pos: 1.5,-22.5 - parent: 1 - type: Transform -- uid: 424 - type: MopItem - components: - - pos: 1.5882571,-22.558651 - parent: 1 - type: Transform -- uid: 425 - type: MopItem - components: - - rot: 3.141592653589793 rad - pos: 1.5173165,-22.345783 - parent: 1 - type: Transform -- uid: 426 - type: RandomSoap - components: - - pos: 1.5,-22.5 - parent: 1 - type: Transform -- uid: 427 - type: SprayBottleWater - components: - - pos: 1.2477419,-21.721376 - parent: 1 - type: Transform -- uid: 428 - type: SprayBottleWater - components: - - pos: 1.5882571,-21.678802 - parent: 1 - type: Transform -- uid: 429 - type: WeedSpray - components: - - rot: -1.5707963267948966 rad - pos: 1.5456927,-20.784763 - parent: 1 - type: Transform -- uid: 430 - type: WeedSpray - components: - - rot: 1.5707963267948966 rad - pos: 1.4747521,-20.557705 - parent: 1 - type: Transform -- uid: 431 - type: PestSpray - components: - - rot: -1.5707963267948966 rad - pos: 1.6591978,-21.281452 - parent: 1 - type: Transform -- uid: 432 - type: PestSpray - components: - - rot: 1.5707963267948966 rad - pos: 1.5173165,-21.082775 - parent: 1 - type: Transform -- uid: 433 - type: FloorDrain - components: - - pos: -2.5,-21.5 - parent: 1 - type: Transform - - fixtures: [] - type: Fixtures -- uid: 434 - type: ComputerIFFSyndicate - components: - - rot: -1.5707963267948966 rad - pos: 11.5,-5.5 - parent: 1 - type: Transform -- uid: 435 - type: FloorDrain - components: - - pos: 0.5,-21.5 - parent: 1 - type: Transform - - fixtures: [] - type: Fixtures -- uid: 436 - type: ComputerBroken - components: - - pos: 10.5,-4.5 - parent: 1 - type: Transform -- uid: 437 - type: ComputerRadar - components: - - pos: 9.5,-3.5 - parent: 1 - type: Transform -- uid: 438 - type: ComputerPowerMonitoring - components: - - pos: 7.5,-3.5 - parent: 1 - type: Transform -- uid: 439 - type: SyndicateComputerComms - components: - - rot: -1.5707963267948966 rad - pos: 11.5,-7.5 - parent: 1 - type: Transform -- uid: 440 - type: ComputerShuttleSyndie - components: - - rot: -1.5707963267948966 rad - pos: 11.5,-6.5 - parent: 1 - type: Transform -- uid: 441 - type: ComputerSurveillanceWirelessCameraMonitor - components: - - rot: 3.141592653589793 rad - pos: 9.5,-9.5 - parent: 1 - type: Transform -- uid: 442 - type: TableReinforced - components: - - pos: 11.5,-8.5 - parent: 1 - type: Transform -- uid: 443 - type: TableReinforced - components: - - pos: 10.5,-8.5 - parent: 1 - type: Transform -- uid: 444 - type: TableReinforced - components: - - pos: 11.5,-4.5 - parent: 1 - type: Transform -- uid: 445 - type: ComputerCrewMonitoring - components: - - rot: 3.141592653589793 rad - pos: 8.5,-9.5 - parent: 1 - type: Transform -- uid: 446 - type: ComputerBroken - components: - - pos: 8.5,-3.5 - parent: 1 - type: Transform -- uid: 447 - type: ComputerFrame - components: - - rot: 3.141592653589793 rad - pos: 7.5,-9.5 - parent: 1 - type: Transform -- uid: 448 - type: ChairOfficeDark - components: - - rot: 3.141592653589793 rad - pos: 8.5,-4.5 - parent: 1 - type: Transform -- uid: 449 - type: TableReinforcedGlass - components: - - pos: -7.5,-9.5 - parent: 1 - type: Transform -- uid: 450 - type: ChairOfficeDark - components: - - pos: 8.5,-8.5 - parent: 1 - type: Transform -- uid: 451 - type: ChairOfficeDark - components: - - rot: 1.5707963267948966 rad - pos: 10.5,-7.5 - parent: 1 - type: Transform -- uid: 452 - type: TableReinforcedGlass - components: - - pos: -2.5,-10.5 - parent: 1 - type: Transform -- uid: 453 - type: TableReinforcedGlass - components: - - pos: -9.5,-1.5 - parent: 1 - type: Transform -- uid: 454 - type: TableReinforcedGlass - components: - - pos: -8.5,-1.5 - parent: 1 - type: Transform -- uid: 455 - type: ClothingHeadsetAltSyndicate - components: - - pos: -8.527191,-1.4141216 - parent: 1 - type: Transform -- uid: 456 - type: ClothingHeadsetAltSyndicate - components: - - pos: -7.3212013,-9.374667 - parent: 1 - type: Transform -- uid: 457 - type: ClothingHeadsetAltSyndicate - components: - - pos: -2.3411698,-10.410619 - parent: 1 - type: Transform -- uid: 458 - type: ClothingMaskGasVoiceMasker - components: - - pos: -7.5482116,-9.431432 - parent: 1 - type: Transform -- uid: 459 - type: ClothingMaskGasVoiceMasker - components: - - pos: -2.5256157,-10.495765 - parent: 1 - type: Transform -- uid: 460 - type: ClothingMaskGasVoiceMasker - components: - - pos: -8.743822,-1.4572027 - parent: 1 - type: Transform -- uid: 461 - type: SpawnPointGhostSyndicateCommsAgent - components: - - pos: -11.5,-10.5 - parent: 1 - type: Transform - - type: Followed -- uid: 462 - type: SpawnPointGhostSyndicateCommsAgent - components: - - pos: 1.5,-9.5 - parent: 1 - type: Transform - - type: Followed -- uid: 463 - type: SpawnPointGhostSyndicateCommsAgent - components: - - pos: -6.5,-1.5 - parent: 1 - type: Transform - - type: Followed -- uid: 464 - type: CableHV - components: - - pos: 2.5,0.5 - parent: 1 - type: Transform -- uid: 465 - type: CableHV - components: - - pos: 3.5,-0.5 - parent: 1 - type: Transform -- uid: 466 - type: CableHV - components: - - pos: 3.5,-1.5 - parent: 1 - type: Transform -- uid: 467 - type: CableHV - components: - - pos: 3.5,1.5 - parent: 1 - type: Transform -- uid: 468 - type: CableHV - components: - - pos: 3.5,-2.5 - parent: 1 - type: Transform -- uid: 469 - type: CableHV - components: - - pos: 4.5,-0.5 - parent: 1 - type: Transform -- uid: 470 - type: CableHV - components: - - pos: 5.5,-0.5 - parent: 1 - type: Transform -- uid: 471 - type: CableHV - components: - - pos: 6.5,-0.5 - parent: 1 - type: Transform -- uid: 472 - type: CableHV - components: - - pos: 7.5,-0.5 - parent: 1 - type: Transform -- uid: 473 - type: CableHV - components: - - pos: 3.5,-3.5 - parent: 1 - type: Transform -- uid: 474 - type: CableHV - components: - - pos: 3.5,-4.5 - parent: 1 - type: Transform -- uid: 475 - type: CableHV - components: - - pos: 3.5,-5.5 - parent: 1 - type: Transform -- uid: 476 - type: CableHV - components: - - pos: 3.5,-6.5 - parent: 1 - type: Transform -- uid: 477 - type: CableHV - components: - - pos: 4.5,-6.5 - parent: 1 - type: Transform -- uid: 478 - type: CableHV - components: - - pos: 5.5,-6.5 - parent: 1 - type: Transform -- uid: 479 - type: CableHV - components: - - pos: 6.5,-6.5 - parent: 1 - type: Transform -- uid: 480 - type: CableHV - components: - - pos: 7.5,-6.5 - parent: 1 - type: Transform -- uid: 481 - type: CableHV - components: - - pos: 8.5,-6.5 - parent: 1 - type: Transform -- uid: 482 - type: CableHV - components: - - pos: 9.5,-6.5 - parent: 1 - type: Transform -- uid: 483 - type: CableHV - components: - - pos: 10.5,-6.5 - parent: 1 - type: Transform -- uid: 484 - type: CableHV - components: - - pos: 8.5,-5.5 - parent: 1 - type: Transform -- uid: 485 - type: CableHV - components: - - pos: 8.5,-4.5 - parent: 1 - type: Transform -- uid: 486 - type: CableHV - components: - - pos: 8.5,-7.5 - parent: 1 - type: Transform -- uid: 487 - type: CableHV - components: - - pos: 8.5,-8.5 - parent: 1 - type: Transform -- uid: 488 - type: CableHV - components: - - pos: 2.5,-6.5 - parent: 1 - type: Transform -- uid: 489 - type: CableHV - components: - - pos: 1.5,-6.5 - parent: 1 - type: Transform -- uid: 490 - type: CableHV - components: - - pos: 0.5,-6.5 - parent: 1 - type: Transform -- uid: 491 - type: CableHV - components: - - pos: -0.5,-6.5 - parent: 1 - type: Transform -- uid: 492 - type: CableHV - components: - - pos: -1.5,-6.5 - parent: 1 - type: Transform -- uid: 493 - type: CableHV - components: - - pos: -2.5,-6.5 - parent: 1 - type: Transform -- uid: 494 - type: CableHV - components: - - pos: -3.5,-6.5 - parent: 1 - type: Transform -- uid: 495 - type: CableHV - components: - - pos: -4.5,-6.5 - parent: 1 - type: Transform -- uid: 496 - type: CableHV - components: - - pos: -5.5,-6.5 - parent: 1 - type: Transform -- uid: 497 - type: CableHV - components: - - pos: -6.5,-6.5 - parent: 1 - type: Transform -- uid: 498 - type: CableHV - components: - - pos: -7.5,-6.5 - parent: 1 - type: Transform -- uid: 499 - type: CableHV - components: - - pos: -8.5,-6.5 - parent: 1 - type: Transform -- uid: 500 - type: CableHV - components: - - pos: -9.5,-6.5 - parent: 1 - type: Transform -- uid: 501 - type: CableHV - components: - - pos: -10.5,-6.5 - parent: 1 - type: Transform -- uid: 502 - type: CableHV - components: - - pos: -11.5,-6.5 - parent: 1 - type: Transform -- uid: 503 - type: CableHV - components: - - pos: -8.5,-7.5 - parent: 1 - type: Transform -- uid: 504 - type: CableHV - components: - - pos: -8.5,-8.5 - parent: 1 - type: Transform -- uid: 505 - type: CableHV - components: - - pos: -8.5,-9.5 - parent: 1 - type: Transform -- uid: 506 - type: CableHV - components: - - pos: -9.5,-9.5 - parent: 1 - type: Transform -- uid: 507 - type: CableHV - components: - - pos: -10.5,-9.5 - parent: 1 - type: Transform -- uid: 508 - type: CableHV - components: - - pos: -8.5,-5.5 - parent: 1 - type: Transform -- uid: 509 - type: CableHV - components: - - pos: -8.5,-4.5 - parent: 1 - type: Transform -- uid: 510 - type: CableHV - components: - - pos: -8.5,-3.5 - parent: 1 - type: Transform -- uid: 511 - type: CableHV - components: - - pos: -8.5,-2.5 - parent: 1 - type: Transform -- uid: 512 - type: CableHV - components: - - pos: -9.5,-2.5 - parent: 1 - type: Transform -- uid: 513 - type: CableHV - components: - - pos: -7.5,-2.5 - parent: 1 - type: Transform -- uid: 514 - type: CableHV - components: - - pos: -1.5,-7.5 - parent: 1 - type: Transform -- uid: 515 - type: CableHV - components: - - pos: -1.5,-8.5 - parent: 1 - type: Transform -- uid: 516 - type: CableHV - components: - - pos: -1.5,-9.5 - parent: 1 - type: Transform -- uid: 517 - type: CableHV - components: - - pos: -0.5,-9.5 - parent: 1 - type: Transform -- uid: 518 - type: CableHV - components: - - pos: 0.5,-9.5 - parent: 1 - type: Transform -- uid: 519 - type: CableHV - components: - - pos: 3.5,-7.5 - parent: 1 - type: Transform -- uid: 520 - type: CableHV - components: - - pos: 3.5,-8.5 - parent: 1 - type: Transform -- uid: 521 - type: CableHV - components: - - pos: 3.5,-9.5 - parent: 1 - type: Transform -- uid: 522 - type: CableHV - components: - - pos: 3.5,-10.5 - parent: 1 - type: Transform -- uid: 523 - type: CableHV - components: - - pos: 3.5,-11.5 - parent: 1 - type: Transform -- uid: 524 - type: CableHV - components: - - pos: 3.5,-12.5 - parent: 1 - type: Transform -- uid: 525 - type: CableHV - components: - - pos: 3.5,-13.5 - parent: 1 - type: Transform -- uid: 526 - type: CableHV - components: - - pos: 3.5,-14.5 - parent: 1 - type: Transform -- uid: 527 - type: CableHV - components: - - pos: 3.5,-15.5 - parent: 1 - type: Transform -- uid: 528 - type: CableHV - components: - - pos: 3.5,-16.5 - parent: 1 - type: Transform -- uid: 529 - type: CableHV - components: - - pos: 3.5,-17.5 - parent: 1 - type: Transform -- uid: 530 - type: CableHV - components: - - pos: 3.5,-18.5 - parent: 1 - type: Transform -- uid: 531 - type: CableHV - components: - - pos: 2.5,-18.5 - parent: 1 - type: Transform -- uid: 532 - type: CableHV - components: - - pos: 1.5,-18.5 - parent: 1 - type: Transform -- uid: 533 - type: CableHV - components: - - pos: 0.5,-18.5 - parent: 1 - type: Transform -- uid: 534 - type: CableHV - components: - - pos: 0.5,-17.5 - parent: 1 - type: Transform -- uid: 535 - type: CableHV - components: - - pos: 0.5,-19.5 - parent: 1 - type: Transform -- uid: 536 - type: CableHV - components: - - pos: 0.5,-20.5 - parent: 1 - type: Transform -- uid: 537 - type: CableHV - components: - - pos: 0.5,-16.5 - parent: 1 - type: Transform -- uid: 538 - type: CableHV - components: - - pos: 0.5,-15.5 - parent: 1 - type: Transform -- uid: 539 - type: CableHV - components: - - pos: -0.5,-15.5 - parent: 1 - type: Transform -- uid: 540 - type: CableHV - components: - - pos: -1.5,-15.5 - parent: 1 - type: Transform -- uid: 541 - type: CableHV - components: - - pos: -2.5,-15.5 - parent: 1 - type: Transform -- uid: 542 - type: CableHV - components: - - pos: 0.5,-21.5 - parent: 1 - type: Transform -- uid: 543 - type: CableHV - components: - - pos: -0.5,-21.5 - parent: 1 - type: Transform -- uid: 544 - type: CableHV - components: - - pos: -1.5,-21.5 - parent: 1 - type: Transform -- uid: 545 - type: CableHV - components: - - pos: -2.5,-21.5 - parent: 1 - type: Transform -- uid: 546 - type: CableHV - components: - - pos: 4.5,-18.5 - parent: 1 - type: Transform -- uid: 547 - type: CableHV - components: - - pos: 5.5,-18.5 - parent: 1 - type: Transform -- uid: 548 - type: CableHV - components: - - pos: 6.5,-18.5 - parent: 1 - type: Transform -- uid: 549 - type: CableHV - components: - - pos: 7.5,-18.5 - parent: 1 - type: Transform -- uid: 550 - type: CableHV - components: - - pos: 8.5,-18.5 - parent: 1 - type: Transform -- uid: 551 - type: CableHV - components: - - pos: 9.5,-18.5 - parent: 1 - type: Transform -- uid: 552 - type: CableHV - components: - - pos: 10.5,-18.5 - parent: 1 - type: Transform -- uid: 553 - type: CableHV - components: - - pos: 11.5,-18.5 - parent: 1 - type: Transform -- uid: 554 - type: CableHV - components: - - pos: 11.5,-17.5 - parent: 1 - type: Transform -- uid: 555 - type: CableHV - components: - - pos: 11.5,-16.5 - parent: 1 - type: Transform -- uid: 556 - type: CableHV - components: - - pos: 11.5,-15.5 - parent: 1 - type: Transform -- uid: 557 - type: CableHV - components: - - pos: 7.5,-17.5 - parent: 1 - type: Transform -- uid: 558 - type: CableHV - components: - - pos: 7.5,-16.5 - parent: 1 - type: Transform -- uid: 559 - type: CableHV - components: - - pos: 7.5,-15.5 - parent: 1 - type: Transform -- uid: 560 - type: CableHV - components: - - pos: 7.5,-14.5 - parent: 1 - type: Transform -- uid: 561 - type: CableHV - components: - - pos: 11.5,-14.5 - parent: 1 - type: Transform -- uid: 562 - type: CableHV - components: - - pos: 8.5,-19.5 - parent: 1 - type: Transform -- uid: 563 - type: CableHV - components: - - pos: 8.5,-20.5 - parent: 1 - type: Transform -- uid: 564 - type: CableHV - components: - - pos: 8.5,-21.5 - parent: 1 - type: Transform -- uid: 565 - type: CableHV - components: - - pos: 9.5,-21.5 - parent: 1 - type: Transform -- uid: 566 - type: CableHV - components: - - pos: 10.5,-21.5 - parent: 1 - type: Transform -- uid: 567 - type: CableHV - components: - - pos: 11.5,-21.5 - parent: 1 - type: Transform -- uid: 568 - type: CableMV - components: - - pos: 2.5,0.5 - parent: 1 - type: Transform -- uid: 569 - type: CableMV - components: - - pos: 3.5,1.5 - parent: 1 - type: Transform -- uid: 570 - type: CableMV - components: - - pos: 3.5,0.5 - parent: 1 - type: Transform -- uid: 571 - type: CableMV - components: - - pos: 3.5,-0.5 - parent: 1 - type: Transform -- uid: 572 - type: CableMV - components: - - pos: 4.5,-0.5 - parent: 1 - type: Transform -- uid: 573 - type: CableMV - components: - - pos: 5.5,-0.5 - parent: 1 - type: Transform -- uid: 574 - type: CableMV - components: - - pos: 6.5,-0.5 - parent: 1 - type: Transform -- uid: 575 - type: CableMV - components: - - pos: 7.5,-0.5 - parent: 1 - type: Transform -- uid: 576 - type: CableMV - components: - - pos: 3.5,-1.5 - parent: 1 - type: Transform -- uid: 577 - type: CableMV - components: - - pos: 3.5,-2.5 - parent: 1 - type: Transform -- uid: 578 - type: CableMV - components: - - pos: 3.5,-3.5 - parent: 1 - type: Transform -- uid: 579 - type: CableMV - components: - - pos: 3.5,-4.5 - parent: 1 - type: Transform -- uid: 580 - type: CableMV - components: - - pos: 3.5,-5.5 - parent: 1 - type: Transform -- uid: 581 - type: CableMV - components: - - pos: 3.5,-6.5 - parent: 1 - type: Transform -- uid: 582 - type: CableMV - components: - - pos: 4.5,-6.5 - parent: 1 - type: Transform -- uid: 583 - type: CableMV - components: - - pos: 5.5,-6.5 - parent: 1 - type: Transform -- uid: 584 - type: CableMV - components: - - pos: 6.5,-6.5 - parent: 1 - type: Transform -- uid: 585 - type: CableMV - components: - - pos: 7.5,-6.5 - parent: 1 - type: Transform -- uid: 586 - type: CableMV - components: - - pos: 8.5,-6.5 - parent: 1 - type: Transform -- uid: 587 - type: CableMV - components: - - pos: 8.5,-5.5 - parent: 1 - type: Transform -- uid: 588 - type: CableMV - components: - - pos: 8.5,-4.5 - parent: 1 - type: Transform -- uid: 589 - type: CableMV - components: - - pos: 9.5,-6.5 - parent: 1 - type: Transform -- uid: 590 - type: CableMV - components: - - pos: 10.5,-6.5 - parent: 1 - type: Transform -- uid: 591 - type: CableMV - components: - - pos: 8.5,-7.5 - parent: 1 - type: Transform -- uid: 592 - type: CableMV - components: - - pos: 8.5,-8.5 - parent: 1 - type: Transform -- uid: 593 - type: CableMV - components: - - pos: 2.5,-6.5 - parent: 1 - type: Transform -- uid: 594 - type: CableMV - components: - - pos: 1.5,-6.5 - parent: 1 - type: Transform -- uid: 595 - type: CableMV - components: - - pos: 0.5,-6.5 - parent: 1 - type: Transform -- uid: 596 - type: CableMV - components: - - pos: -0.5,-6.5 - parent: 1 - type: Transform -- uid: 597 - type: CableMV - components: - - pos: -1.5,-6.5 - parent: 1 - type: Transform -- uid: 598 - type: CableMV - components: - - pos: -1.5,-7.5 - parent: 1 - type: Transform -- uid: 599 - type: CableMV - components: - - pos: -1.5,-8.5 - parent: 1 - type: Transform -- uid: 600 - type: CableMV - components: - - pos: -1.5,-9.5 - parent: 1 - type: Transform -- uid: 601 - type: CableMV - components: - - pos: -0.5,-9.5 - parent: 1 - type: Transform -- uid: 602 - type: CableMV - components: - - pos: 0.5,-9.5 - parent: 1 - type: Transform -- uid: 603 - type: CableMV - components: - - pos: -2.5,-6.5 - parent: 1 - type: Transform -- uid: 604 - type: CableMV - components: - - pos: -3.5,-6.5 - parent: 1 - type: Transform -- uid: 605 - type: CableMV - components: - - pos: -4.5,-6.5 - parent: 1 - type: Transform -- uid: 606 - type: CableMV - components: - - pos: -5.5,-6.5 - parent: 1 - type: Transform -- uid: 607 - type: CableMV - components: - - pos: -6.5,-6.5 - parent: 1 - type: Transform -- uid: 608 - type: CableMV - components: - - pos: -7.5,-6.5 - parent: 1 - type: Transform -- uid: 609 - type: CableMV - components: - - pos: -8.5,-6.5 - parent: 1 - type: Transform -- uid: 610 - type: CableMV - components: - - pos: -9.5,-6.5 - parent: 1 - type: Transform -- uid: 611 - type: CableMV - components: - - pos: -11.5,-6.5 - parent: 1 - type: Transform -- uid: 612 - type: CableMV - components: - - pos: -8.5,-5.5 - parent: 1 - type: Transform -- uid: 613 - type: CableMV - components: - - pos: -10.5,-6.5 - parent: 1 - type: Transform -- uid: 614 - type: CableMV - components: - - pos: -8.5,-4.5 - parent: 1 - type: Transform -- uid: 615 - type: CableMV - components: - - pos: -8.5,-3.5 - parent: 1 - type: Transform -- uid: 616 - type: CableMV - components: - - pos: -8.5,-2.5 - parent: 1 - type: Transform -- uid: 617 - type: CableMV - components: - - pos: -9.5,-2.5 - parent: 1 - type: Transform -- uid: 618 - type: CableMV - components: - - pos: -7.5,-2.5 - parent: 1 - type: Transform -- uid: 619 - type: CableMV - components: - - pos: -8.5,-7.5 - parent: 1 - type: Transform -- uid: 620 - type: CableMV - components: - - pos: -8.5,-8.5 - parent: 1 - type: Transform -- uid: 621 - type: CableMV - components: - - pos: -8.5,-9.5 - parent: 1 - type: Transform -- uid: 622 - type: CableMV - components: - - pos: -9.5,-9.5 - parent: 1 - type: Transform -- uid: 623 - type: CableMV - components: - - pos: -10.5,-9.5 - parent: 1 - type: Transform -- uid: 624 - type: CableMV - components: - - pos: 3.5,-7.5 - parent: 1 - type: Transform -- uid: 625 - type: CableMV - components: - - pos: 3.5,-8.5 - parent: 1 - type: Transform -- uid: 626 - type: CableMV - components: - - pos: 3.5,-9.5 - parent: 1 - type: Transform -- uid: 627 - type: CableMV - components: - - pos: 3.5,-10.5 - parent: 1 - type: Transform -- uid: 628 - type: CableMV - components: - - pos: 3.5,-11.5 - parent: 1 - type: Transform -- uid: 629 - type: CableMV - components: - - pos: 3.5,-12.5 - parent: 1 - type: Transform -- uid: 630 - type: CableMV - components: - - pos: 3.5,-13.5 - parent: 1 - type: Transform -- uid: 631 - type: CableMV - components: - - pos: 3.5,-14.5 - parent: 1 - type: Transform -- uid: 632 - type: CableMV - components: - - pos: 3.5,-15.5 - parent: 1 - type: Transform -- uid: 633 - type: CableMV - components: - - pos: 3.5,-16.5 - parent: 1 - type: Transform -- uid: 634 - type: CableMV - components: - - pos: 3.5,-17.5 - parent: 1 - type: Transform -- uid: 635 - type: CableMV - components: - - pos: 3.5,-18.5 - parent: 1 - type: Transform -- uid: 636 - type: CableMV - components: - - pos: 2.5,-18.5 - parent: 1 - type: Transform -- uid: 637 - type: CableMV - components: - - pos: 1.5,-18.5 - parent: 1 - type: Transform -- uid: 638 - type: CableMV - components: - - pos: 0.5,-18.5 - parent: 1 - type: Transform -- uid: 639 - type: CableMV - components: - - pos: 0.5,-17.5 - parent: 1 - type: Transform -- uid: 640 - type: CableMV - components: - - pos: 0.5,-16.5 - parent: 1 - type: Transform -- uid: 641 - type: CableMV - components: - - pos: 0.5,-15.5 - parent: 1 - type: Transform -- uid: 642 - type: CableMV - components: - - pos: -0.5,-15.5 - parent: 1 - type: Transform -- uid: 643 - type: CableMV - components: - - pos: -1.5,-15.5 - parent: 1 - type: Transform -- uid: 644 - type: CableMV - components: - - pos: -2.5,-15.5 - parent: 1 - type: Transform -- uid: 645 - type: CableMV - components: - - pos: 0.5,-19.5 - parent: 1 - type: Transform -- uid: 646 - type: CableMV - components: - - pos: 0.5,-20.5 - parent: 1 - type: Transform -- uid: 647 - type: CableMV - components: - - pos: 0.5,-21.5 - parent: 1 - type: Transform -- uid: 648 - type: CableMV - components: - - pos: -0.5,-21.5 - parent: 1 - type: Transform -- uid: 649 - type: CableMV - components: - - pos: -1.5,-21.5 - parent: 1 - type: Transform -- uid: 650 - type: CableMV - components: - - pos: -2.5,-21.5 - parent: 1 - type: Transform -- uid: 651 - type: CableMV - components: - - pos: 4.5,-18.5 - parent: 1 - type: Transform -- uid: 652 - type: CableMV - components: - - pos: 5.5,-18.5 - parent: 1 - type: Transform -- uid: 653 - type: CableMV - components: - - pos: 6.5,-18.5 - parent: 1 - type: Transform -- uid: 654 - type: CableMV - components: - - pos: 7.5,-18.5 - parent: 1 - type: Transform -- uid: 655 - type: CableMV - components: - - pos: 7.5,-17.5 - parent: 1 - type: Transform -- uid: 656 - type: CableMV - components: - - pos: 7.5,-16.5 - parent: 1 - type: Transform -- uid: 657 - type: CableMV - components: - - pos: 7.5,-15.5 - parent: 1 - type: Transform -- uid: 658 - type: CableMV - components: - - pos: 7.5,-14.5 - parent: 1 - type: Transform -- uid: 659 - type: CableMV - components: - - pos: 8.5,-18.5 - parent: 1 - type: Transform -- uid: 660 - type: CableMV - components: - - pos: 8.5,-19.5 - parent: 1 - type: Transform -- uid: 661 - type: CableMV - components: - - pos: 8.5,-20.5 - parent: 1 - type: Transform -- uid: 662 - type: CableMV - components: - - pos: 8.5,-21.5 - parent: 1 - type: Transform -- uid: 663 - type: CableMV - components: - - pos: 9.5,-21.5 - parent: 1 - type: Transform -- uid: 664 - type: CableMV - components: - - pos: 10.5,-21.5 - parent: 1 - type: Transform -- uid: 665 - type: CableMV - components: - - pos: 11.5,-21.5 - parent: 1 - type: Transform -- uid: 666 - type: CableMV - components: - - pos: 9.5,-18.5 - parent: 1 - type: Transform -- uid: 667 - type: CableMV - components: - - pos: 10.5,-18.5 - parent: 1 - type: Transform -- uid: 668 - type: CableMV - components: - - pos: 11.5,-18.5 - parent: 1 - type: Transform -- uid: 669 - type: CableMV - components: - - pos: 11.5,-17.5 - parent: 1 - type: Transform -- uid: 670 - type: CableMV - components: - - pos: 11.5,-16.5 - parent: 1 - type: Transform -- uid: 671 - type: CableMV - components: - - pos: 11.5,-15.5 - parent: 1 - type: Transform -- uid: 672 - type: CableMV - components: - - pos: 11.5,-14.5 - parent: 1 - type: Transform -- uid: 673 - type: CableApcExtension - components: - - pos: 2.5,0.5 - parent: 1 - type: Transform -- uid: 674 - type: CableApcExtension - components: - - pos: 3.5,0.5 - parent: 1 - type: Transform -- uid: 675 - type: CableApcExtension - components: - - pos: 3.5,1.5 - parent: 1 - type: Transform -- uid: 676 - type: CableApcExtension - components: - - pos: 3.5,-0.5 - parent: 1 - type: Transform -- uid: 677 - type: CableApcExtension - components: - - pos: 4.5,-0.5 - parent: 1 - type: Transform -- uid: 678 - type: CableApcExtension - components: - - pos: 5.5,-0.5 - parent: 1 - type: Transform -- uid: 679 - type: CableApcExtension - components: - - pos: 6.5,-0.5 - parent: 1 - type: Transform -- uid: 680 - type: CableApcExtension - components: - - pos: 7.5,-0.5 - parent: 1 - type: Transform -- uid: 681 - type: CableApcExtension - components: - - pos: 3.5,-1.5 - parent: 1 - type: Transform -- uid: 682 - type: CableApcExtension - components: - - pos: 3.5,-2.5 - parent: 1 - type: Transform -- uid: 683 - type: CableApcExtension - components: - - pos: 3.5,-3.5 - parent: 1 - type: Transform -- uid: 684 - type: CableApcExtension - components: - - pos: 3.5,-4.5 - parent: 1 - type: Transform -- uid: 685 - type: CableApcExtension - components: - - pos: 3.5,-5.5 - parent: 1 - type: Transform -- uid: 686 - type: CableApcExtension - components: - - pos: 3.5,-6.5 - parent: 1 - type: Transform -- uid: 687 - type: CableApcExtension - components: - - pos: 4.5,-6.5 - parent: 1 - type: Transform -- uid: 688 - type: CableApcExtension - components: - - pos: 5.5,-6.5 - parent: 1 - type: Transform -- uid: 689 - type: CableApcExtension - components: - - pos: 6.5,-6.5 - parent: 1 - type: Transform -- uid: 690 - type: CableApcExtension - components: - - pos: 8.5,-6.5 - parent: 1 - type: Transform -- uid: 691 - type: CableApcExtension - components: - - pos: 8.5,-5.5 - parent: 1 - type: Transform -- uid: 692 - type: CableApcExtension - components: - - pos: 8.5,-4.5 - parent: 1 - type: Transform -- uid: 693 - type: CableApcExtension - components: - - pos: 7.5,-6.5 - parent: 1 - type: Transform -- uid: 694 - type: CableApcExtension - components: - - pos: 9.5,-6.5 - parent: 1 - type: Transform -- uid: 695 - type: CableApcExtension - components: - - pos: 10.5,-6.5 - parent: 1 - type: Transform -- uid: 696 - type: CableApcExtension - components: - - pos: 8.5,-7.5 - parent: 1 - type: Transform -- uid: 697 - type: CableApcExtension - components: - - pos: 8.5,-8.5 - parent: 1 - type: Transform -- uid: 698 - type: CableApcExtension - components: - - pos: 2.5,-6.5 - parent: 1 - type: Transform -- uid: 699 - type: CableApcExtension - components: - - pos: 0.5,-6.5 - parent: 1 - type: Transform -- uid: 700 - type: CableApcExtension - components: - - pos: 1.5,-6.5 - parent: 1 - type: Transform -- uid: 701 - type: CableApcExtension - components: - - pos: -0.5,-6.5 - parent: 1 - type: Transform -- uid: 702 - type: CableApcExtension - components: - - pos: -1.5,-6.5 - parent: 1 - type: Transform -- uid: 703 - type: CableApcExtension - components: - - pos: -1.5,-7.5 - parent: 1 - type: Transform -- uid: 704 - type: CableApcExtension - components: - - pos: -1.5,-8.5 - parent: 1 - type: Transform -- uid: 705 - type: CableApcExtension - components: - - pos: -1.5,-9.5 - parent: 1 - type: Transform -- uid: 706 - type: CableApcExtension - components: - - pos: -0.5,-9.5 - parent: 1 - type: Transform -- uid: 707 - type: CableApcExtension - components: - - pos: 0.5,-9.5 - parent: 1 - type: Transform -- uid: 708 - type: CableApcExtension - components: - - pos: -2.5,-6.5 - parent: 1 - type: Transform -- uid: 709 - type: CableApcExtension - components: - - pos: -3.5,-6.5 - parent: 1 - type: Transform -- uid: 710 - type: CableApcExtension - components: - - pos: -4.5,-6.5 - parent: 1 - type: Transform -- uid: 711 - type: CableApcExtension - components: - - pos: -5.5,-6.5 - parent: 1 - type: Transform -- uid: 712 - type: CableApcExtension - components: - - pos: -6.5,-6.5 - parent: 1 - type: Transform -- uid: 713 - type: CableApcExtension - components: - - pos: -7.5,-6.5 - parent: 1 - type: Transform -- uid: 714 - type: CableApcExtension - components: - - pos: -8.5,-6.5 - parent: 1 - type: Transform -- uid: 715 - type: CableApcExtension - components: - - pos: -9.5,-6.5 - parent: 1 - type: Transform -- uid: 716 - type: CableApcExtension - components: - - pos: -10.5,-6.5 - parent: 1 - type: Transform -- uid: 717 - type: CableApcExtension - components: - - pos: -11.5,-6.5 - parent: 1 - type: Transform -- uid: 718 - type: CableApcExtension - components: - - pos: -8.5,-7.5 - parent: 1 - type: Transform -- uid: 719 - type: CableApcExtension - components: - - pos: -8.5,-8.5 - parent: 1 - type: Transform -- uid: 720 - type: CableApcExtension - components: - - pos: -8.5,-9.5 - parent: 1 - type: Transform -- uid: 721 - type: CableApcExtension - components: - - pos: -9.5,-9.5 - parent: 1 - type: Transform -- uid: 722 - type: CableApcExtension - components: - - pos: -10.5,-9.5 - parent: 1 - type: Transform -- uid: 723 - type: CableApcExtension - components: - - pos: -8.5,-5.5 - parent: 1 - type: Transform -- uid: 724 - type: CableApcExtension - components: - - pos: -8.5,-4.5 - parent: 1 - type: Transform -- uid: 725 - type: CableApcExtension - components: - - pos: -8.5,-3.5 - parent: 1 - type: Transform -- uid: 726 - type: CableApcExtension - components: - - pos: -8.5,-2.5 - parent: 1 - type: Transform -- uid: 727 - type: CableApcExtension - components: - - pos: -9.5,-2.5 - parent: 1 - type: Transform -- uid: 728 - type: CableApcExtension - components: - - pos: -7.5,-2.5 - parent: 1 - type: Transform -- uid: 729 - type: CableApcExtension - components: - - pos: 3.5,-7.5 - parent: 1 - type: Transform -- uid: 730 - type: CableApcExtension - components: - - pos: 3.5,-8.5 - parent: 1 - type: Transform -- uid: 731 - type: CableApcExtension - components: - - pos: 3.5,-9.5 - parent: 1 - type: Transform -- uid: 732 - type: CableApcExtension - components: - - pos: 3.5,-10.5 - parent: 1 - type: Transform -- uid: 733 - type: CableApcExtension - components: - - pos: 3.5,-11.5 - parent: 1 - type: Transform -- uid: 734 - type: CableApcExtension - components: - - pos: 3.5,-12.5 - parent: 1 - type: Transform -- uid: 735 - type: CableApcExtension - components: - - pos: 3.5,-13.5 - parent: 1 - type: Transform -- uid: 736 - type: CableApcExtension - components: - - pos: 3.5,-14.5 - parent: 1 - type: Transform -- uid: 737 - type: CableApcExtension - components: - - pos: 3.5,-15.5 - parent: 1 - type: Transform -- uid: 738 - type: CableApcExtension - components: - - pos: 3.5,-16.5 - parent: 1 - type: Transform -- uid: 739 - type: CableApcExtension - components: - - pos: 3.5,-17.5 - parent: 1 - type: Transform -- uid: 740 - type: CableApcExtension - components: - - pos: 3.5,-18.5 - parent: 1 - type: Transform -- uid: 741 - type: CableApcExtension - components: - - pos: 2.5,-18.5 - parent: 1 - type: Transform -- uid: 742 - type: CableApcExtension - components: - - pos: 1.5,-18.5 - parent: 1 - type: Transform -- uid: 743 - type: CableApcExtension - components: - - pos: 0.5,-18.5 - parent: 1 - type: Transform -- uid: 744 - type: CableApcExtension - components: - - pos: 0.5,-17.5 - parent: 1 - type: Transform -- uid: 745 - type: CableApcExtension - components: - - pos: 0.5,-16.5 - parent: 1 - type: Transform -- uid: 746 - type: CableApcExtension - components: - - pos: 0.5,-15.5 - parent: 1 - type: Transform -- uid: 747 - type: CableApcExtension - components: - - pos: -0.5,-15.5 - parent: 1 - type: Transform -- uid: 748 - type: CableApcExtension - components: - - pos: -1.5,-15.5 - parent: 1 - type: Transform -- uid: 749 - type: CableApcExtension - components: - - pos: -2.5,-15.5 - parent: 1 - type: Transform -- uid: 750 - type: CableApcExtension - components: - - pos: 0.5,-19.5 - parent: 1 - type: Transform -- uid: 751 - type: CableApcExtension - components: - - pos: 0.5,-20.5 - parent: 1 - type: Transform -- uid: 752 - type: CableApcExtension - components: - - pos: 0.5,-21.5 - parent: 1 - type: Transform -- uid: 753 - type: CableApcExtension - components: - - pos: -0.5,-21.5 - parent: 1 - type: Transform -- uid: 754 - type: CableApcExtension - components: - - pos: -1.5,-21.5 - parent: 1 - type: Transform -- uid: 755 - type: CableApcExtension - components: - - pos: -2.5,-21.5 - parent: 1 - type: Transform -- uid: 756 - type: CableApcExtension - components: - - pos: 4.5,-18.5 - parent: 1 - type: Transform -- uid: 757 - type: CableApcExtension - components: - - pos: 5.5,-18.5 - parent: 1 - type: Transform -- uid: 758 - type: CableApcExtension - components: - - pos: 6.5,-18.5 - parent: 1 - type: Transform -- uid: 759 - type: CableApcExtension - components: - - pos: 7.5,-18.5 - parent: 1 - type: Transform -- uid: 760 - type: CableApcExtension - components: - - pos: 8.5,-18.5 - parent: 1 - type: Transform -- uid: 761 - type: CableApcExtension - components: - - pos: 10.5,-18.5 - parent: 1 - type: Transform -- uid: 762 - type: CableApcExtension - components: - - pos: 9.5,-18.5 - parent: 1 - type: Transform -- uid: 763 - type: CableApcExtension - components: - - pos: 11.5,-18.5 - parent: 1 - type: Transform -- uid: 764 - type: CableApcExtension - components: - - pos: 11.5,-17.5 - parent: 1 - type: Transform -- uid: 765 - type: CableApcExtension - components: - - pos: 7.5,-17.5 - parent: 1 - type: Transform -- uid: 766 - type: CableApcExtension - components: - - pos: 7.5,-16.5 - parent: 1 - type: Transform -- uid: 767 - type: CableApcExtension - components: - - pos: 7.5,-15.5 - parent: 1 - type: Transform -- uid: 768 - type: CableApcExtension - components: - - pos: 7.5,-14.5 - parent: 1 - type: Transform -- uid: 769 - type: CableApcExtension - components: - - pos: 11.5,-14.5 - parent: 1 - type: Transform -- uid: 770 - type: CableApcExtension - components: - - pos: 11.5,-15.5 - parent: 1 - type: Transform -- uid: 771 - type: CableApcExtension - components: - - pos: 11.5,-16.5 - parent: 1 - type: Transform -- uid: 772 - type: CableApcExtension - components: - - pos: 8.5,-19.5 - parent: 1 - type: Transform -- uid: 773 - type: CableApcExtension - components: - - pos: 8.5,-20.5 - parent: 1 - type: Transform -- uid: 774 - type: CableApcExtension - components: - - pos: 8.5,-21.5 - parent: 1 - type: Transform -- uid: 775 - type: CableApcExtension - components: - - pos: 9.5,-21.5 - parent: 1 - type: Transform -- uid: 776 - type: CableApcExtension - components: - - pos: 10.5,-21.5 - parent: 1 - type: Transform -- uid: 777 - type: CableApcExtension - components: - - pos: 11.5,-21.5 - parent: 1 - type: Transform -- uid: 778 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -3.5,-15.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 779 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -3.5,-15.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 780 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 1.5,-15.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 781 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 1.5,-15.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 782 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -3.5,-21.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 783 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 1.5,-21.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 784 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 12.5,-21.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 785 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 8.5,-21.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 786 - type: Poweredlight - components: - - pos: 7.5,-13.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 787 - type: Poweredlight - components: - - pos: 11.5,-13.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 788 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 1.5,-9.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 789 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -11.5,-10.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 790 - type: Poweredlight - components: - - pos: -7.5,-9.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 791 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -2.5,-10.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 792 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -10.5,-2.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 793 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -6.5,-2.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 794 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -11.5,-6.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 795 - type: Poweredlight - components: - - pos: -7.5,-5.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 796 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 7.5,-8.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 797 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -2.5,-7.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 798 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -7.5,-7.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 799 - type: Poweredlight - components: - - pos: -2.5,-5.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 800 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 7.5,-4.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 801 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 11.5,-8.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 802 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 11.5,-4.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 803 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -4.5,-3.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 804 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -4.5,0.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 805 - type: Poweredlight - components: - - pos: -4.5,0.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 806 - type: Poweredlight - components: - - pos: 0.5,0.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 807 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 1.5,-3.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 808 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 1.5,-3.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 809 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -4.5,-3.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 810 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 7.5,-0.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 811 - type: Poweredlight - components: - - pos: 3.5,2.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 812 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 5.5,-18.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 813 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 2.5,-18.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 814 - type: CableHV - components: - - pos: -0.5,-18.5 - parent: 1 - type: Transform -- uid: 815 - type: CableHV - components: - - pos: -1.5,-18.5 - parent: 1 - type: Transform -- uid: 816 - type: CableHV - components: - - pos: -2.5,-18.5 - parent: 1 - type: Transform -- uid: 817 - type: CableApcExtension - components: - - pos: -0.5,-18.5 - parent: 1 - type: Transform -- uid: 818 - type: CableMV - components: - - pos: -1.5,-18.5 - parent: 1 - type: Transform -- uid: 819 - type: CableMV - components: - - pos: -2.5,-18.5 - parent: 1 - type: Transform -- uid: 820 - type: CableMV - components: - - pos: -0.5,-18.5 - parent: 1 - type: Transform -- uid: 821 - type: CableApcExtension - components: - - pos: -1.5,-18.5 - parent: 1 - type: Transform -- uid: 822 - type: CableApcExtension - components: - - pos: -2.5,-18.5 - parent: 1 - type: Transform -- uid: 823 - type: Poweredlight - components: - - pos: -2.5,-17.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 824 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -2.5,-18.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 825 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 10.5,-18.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 826 - type: Poweredlight - components: - - pos: 10.5,-17.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 827 - type: CableHV - components: - - pos: 7.5,-3.5 - parent: 1 - type: Transform -- uid: 828 - type: CableMV - components: - - pos: 8.5,-3.5 - parent: 1 - type: Transform -- uid: 829 - type: CableMV - components: - - pos: 7.5,-3.5 - parent: 1 - type: Transform -- uid: 830 - type: CableApcExtension - components: - - pos: 8.5,-3.5 - parent: 1 - type: Transform -- uid: 831 - type: CableApcExtension - components: - - pos: 7.5,-3.5 - parent: 1 - type: Transform -- uid: 832 - type: WallPlastitanium - components: - - pos: 2.5,-24.5 - parent: 1 - type: Transform -- uid: 833 - type: WallPlastitanium - components: - - pos: 2.5,-25.5 - parent: 1 - type: Transform -- uid: 834 - type: WallPlastitanium - components: - - pos: 2.5,-26.5 - parent: 1 - type: Transform -- uid: 835 - type: WallPlastitanium - components: - - pos: 3.5,-26.5 - parent: 1 - type: Transform -- uid: 836 - type: CableHV - components: - - pos: 4.5,-20.5 - parent: 1 - type: Transform -- uid: 837 - type: CableHV - components: - - pos: 3.5,-20.5 - parent: 1 - type: Transform -- uid: 838 - type: CableHV - components: - - pos: 3.5,-25.5 - parent: 1 - type: Transform -- uid: 839 - type: CableMV - components: - - pos: 4.5,-19.5 - parent: 1 - type: Transform -- uid: 840 - type: CableMV - components: - - pos: 4.5,-20.5 - parent: 1 - type: Transform -- uid: 841 - type: CableHV - components: - - pos: 3.5,-21.5 - parent: 1 - type: Transform -- uid: 842 - type: CableHV - components: - - pos: 3.5,-24.5 - parent: 1 - type: Transform -- uid: 843 - type: CableHV - components: - - pos: 3.5,-23.5 - parent: 1 - type: Transform -- uid: 844 - type: CableHV - components: - - pos: 3.5,-22.5 - parent: 1 - type: Transform -- uid: 845 - type: CableApcExtension - components: - - pos: 4.5,-20.5 - parent: 1 - type: Transform -- uid: 846 - type: CableApcExtension - components: - - pos: 4.5,-19.5 - parent: 1 - type: Transform -- uid: 847 - type: WallPlastitanium - components: - - pos: 4.5,-26.5 - parent: 1 - type: Transform -- uid: 848 - type: WallPlastitanium - components: - - pos: 5.5,-26.5 - parent: 1 - type: Transform -- uid: 849 - type: WallPlastitanium - components: - - pos: 6.5,-26.5 - parent: 1 - type: Transform -- uid: 850 - type: WallPlastitanium - components: - - pos: 7.5,-26.5 - parent: 1 - type: Transform -- uid: 851 - type: WallPlastitanium - components: - - pos: 7.5,-25.5 - parent: 1 - type: Transform -- uid: 852 - type: WallPlastitanium - components: - - pos: 7.5,-24.5 - parent: 1 - type: Transform -- uid: 853 - type: CableHV - components: - - pos: 4.5,-25.5 - parent: 1 - type: Transform -- uid: 854 - type: CableHV - components: - - pos: 5.5,-25.5 - parent: 1 - type: Transform -- uid: 855 - type: CableHV - components: - - pos: 6.5,-25.5 - parent: 1 - type: Transform -- uid: 856 - type: CableHV - components: - - pos: 6.5,-24.5 - parent: 1 - type: Transform -- uid: 857 - type: CableHV - components: - - pos: 6.5,-23.5 - parent: 1 - type: Transform -- uid: 858 - type: CableHV - components: - - pos: 6.5,-22.5 - parent: 1 - type: Transform -- uid: 859 - type: CableHV - components: - - pos: 6.5,-21.5 - parent: 1 - type: Transform -- uid: 860 - type: CableHV - components: - - pos: 6.5,-20.5 - parent: 1 - type: Transform -- uid: 861 - type: CableHV - components: - - pos: 5.5,-20.5 - parent: 1 - type: Transform -- uid: 862 - type: CableMV - components: - - pos: 3.5,-20.5 - parent: 1 - type: Transform -- uid: 863 - type: CableMV - components: - - pos: 3.5,-21.5 - parent: 1 - type: Transform -- uid: 864 - type: CableMV - components: - - pos: 3.5,-22.5 - parent: 1 - type: Transform -- uid: 865 - type: CableMV - components: - - pos: 3.5,-23.5 - parent: 1 - type: Transform -- uid: 866 - type: CableMV - components: - - pos: 3.5,-24.5 - parent: 1 - type: Transform -- uid: 867 - type: CableMV - components: - - pos: 3.5,-25.5 - parent: 1 - type: Transform -- uid: 868 - type: CableMV - components: - - pos: 4.5,-25.5 - parent: 1 - type: Transform -- uid: 869 - type: CableMV - components: - - pos: 5.5,-25.5 - parent: 1 - type: Transform -- uid: 870 - type: CableMV - components: - - pos: 6.5,-25.5 - parent: 1 - type: Transform -- uid: 871 - type: CableMV - components: - - pos: 6.5,-24.5 - parent: 1 - type: Transform -- uid: 872 - type: CableMV - components: - - pos: 6.5,-23.5 - parent: 1 - type: Transform -- uid: 873 - type: CableMV - components: - - pos: 6.5,-22.5 - parent: 1 - type: Transform -- uid: 874 - type: CableMV - components: - - pos: 6.5,-21.5 - parent: 1 - type: Transform -- uid: 875 - type: CableMV - components: - - pos: 6.5,-20.5 - parent: 1 - type: Transform -- uid: 876 - type: CableMV - components: - - pos: 5.5,-20.5 - parent: 1 - type: Transform -- uid: 877 - type: CableApcExtension - components: - - pos: 3.5,-20.5 - parent: 1 - type: Transform -- uid: 878 - type: CableApcExtension - components: - - pos: 3.5,-21.5 - parent: 1 - type: Transform -- uid: 879 - type: CableApcExtension - components: - - pos: 3.5,-22.5 - parent: 1 - type: Transform -- uid: 880 - type: CableApcExtension - components: - - pos: 3.5,-23.5 - parent: 1 - type: Transform -- uid: 881 - type: CableApcExtension - components: - - pos: 3.5,-24.5 - parent: 1 - type: Transform -- uid: 882 - type: CableApcExtension - components: - - pos: 3.5,-25.5 - parent: 1 - type: Transform -- uid: 883 - type: CableApcExtension - components: - - pos: 4.5,-25.5 - parent: 1 - type: Transform -- uid: 884 - type: CableApcExtension - components: - - pos: 5.5,-25.5 - parent: 1 - type: Transform -- uid: 885 - type: CableApcExtension - components: - - pos: 6.5,-25.5 - parent: 1 - type: Transform -- uid: 886 - type: CableApcExtension - components: - - pos: 6.5,-24.5 - parent: 1 - type: Transform -- uid: 887 - type: CableApcExtension - components: - - pos: 6.5,-23.5 - parent: 1 - type: Transform -- uid: 888 - type: CableApcExtension - components: - - pos: 6.5,-21.5 - parent: 1 - type: Transform -- uid: 889 - type: CableApcExtension - components: - - pos: 6.5,-20.5 - parent: 1 - type: Transform -- uid: 890 - type: CableApcExtension - components: - - pos: 5.5,-20.5 - parent: 1 - type: Transform -- uid: 891 - type: CableApcExtension - components: - - pos: 6.5,-22.5 - parent: 1 - type: Transform -- uid: 892 - type: Poweredlight - components: - - pos: 3.5,-20.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 893 - type: Poweredlight - components: - - pos: 6.5,-20.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 894 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 6.5,-20.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 895 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 6.5,-25.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 896 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 6.5,-25.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 897 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 3.5,-25.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 898 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 3.5,-25.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 899 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 3.5,-20.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 900 - type: AirlockChemistry - components: - - pos: 8.5,-19.5 - parent: 1 - type: Transform -- uid: 901 - type: ScienceTechFab - components: - - pos: 3.5,-21.5 - parent: 1 - type: Transform -- uid: 902 - type: MedicalTechFab - components: - - pos: 3.5,-22.5 - parent: 1 - type: Transform -- uid: 903 - type: SecurityTechFab - components: - - pos: 3.5,-23.5 - parent: 1 - type: Transform -- uid: 904 - type: ServiceTechFab - components: - - pos: 3.5,-24.5 - parent: 1 - type: Transform -- uid: 905 - type: Protolathe - components: - - pos: 3.5,-25.5 - parent: 1 - type: Transform -- uid: 906 - type: Autolathe - components: - - pos: 4.5,-25.5 - parent: 1 - type: Transform -- uid: 907 - type: ExosuitFabricator - components: - - pos: 6.5,-20.5 - parent: 1 - type: Transform -- uid: 908 - type: CircuitImprinter - components: - - pos: 5.5,-25.5 - parent: 1 - type: Transform -- uid: 909 - type: UniformPrinter - components: - - pos: 6.5,-25.5 - parent: 1 - type: Transform -- uid: 910 - type: SMESBasic - components: - - pos: -1.5,-3.5 - parent: 1 - type: Transform -- uid: 911 - type: SMESBasic - components: - - pos: -0.5,-3.5 - parent: 1 - type: Transform -- uid: 912 - type: GeneratorRTG - components: - - pos: -4.5,-0.5 - parent: 1 - type: Transform -- uid: 913 - type: CableTerminal - components: - - rot: 1.5707963267948966 rad - pos: -2.5,-3.5 - parent: 1 - type: Transform -- uid: 914 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 3.5,-8.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 915 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 4.5,-8.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 916 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 4.5,-4.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 917 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 3.5,-4.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 918 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 3.5,-15.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 919 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 4.5,-15.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 920 - type: SpawnPointLatejoin - components: - - pos: -8.5,-6.5 - parent: 1 - type: Transform -- uid: 921 - type: SpawnPointAssistant - components: - - pos: -8.5,-6.5 - parent: 1 - type: Transform -... diff --git a/Resources/Maps/SimpleStation14/syndiecommsatmos.yml b/Resources/Maps/SimpleStation14/syndiecommsatmos.yml deleted file mode 100644 index 8e1295e974..0000000000 --- a/Resources/Maps/SimpleStation14/syndiecommsatmos.yml +++ /dev/null @@ -1,13511 +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: FloorBlue - 14: FloorBlueCircuit - 15: FloorBoxing - 16: FloorCarpetClown - 17: FloorCarpetOffice - 18: FloorCave - 19: FloorCaveDrought - 20: FloorClown - 21: FloorDark - 22: FloorDarkDiagonal - 23: FloorDarkDiagonalMini - 24: FloorDarkHerringbone - 25: FloorDarkMini - 26: FloorDarkMono - 27: FloorDarkOffset - 28: FloorDarkPavement - 29: FloorDarkPavementVertical - 30: FloorDarkPlastic - 31: FloorDirt - 32: FloorEighties - 33: FloorElevatorShaft - 34: FloorFreezer - 35: FloorGlass - 36: FloorGold - 37: FloorGrass - 38: FloorGrassDark - 39: FloorGrassJungle - 40: FloorGrassLight - 41: FloorGreenCircuit - 42: FloorGym - 43: FloorHydro - 44: FloorKitchen - 45: FloorLaundry - 46: FloorLino - 47: FloorMetalDiamond - 48: FloorMime - 49: FloorMono - 50: FloorPlastic - 51: FloorRGlass - 52: FloorReinforced - 53: FloorRockVault - 54: FloorShowroom - 55: FloorShuttleBlue - 56: FloorShuttleOrange - 57: FloorShuttlePurple - 58: FloorShuttleRed - 59: FloorShuttleWhite - 60: FloorSilver - 61: FloorSnow - 62: FloorSteel - 63: FloorSteelDiagonal - 64: FloorSteelDiagonalMini - 65: FloorSteelDirty - 66: FloorSteelHerringbone - 67: FloorSteelMini - 68: FloorSteelMono - 69: FloorSteelOffset - 70: FloorSteelPavement - 71: FloorSteelPavementVertical - 72: FloorTechMaint - 73: FloorTechMaint2 - 74: FloorTechMaint3 - 75: FloorWhite - 76: FloorWhiteDiagonal - 77: FloorWhiteDiagonalMini - 78: FloorWhiteHerringbone - 79: FloorWhiteMini - 80: FloorWhiteMono - 81: FloorWhiteOffset - 82: FloorWhitePavement - 83: FloorWhitePavementVertical - 84: FloorWhitePlastic - 85: FloorWood - 86: FloorWoodTile - 87: Lattice - 88: Plating -entities: -- uid: 0 - components: - - name: Syndie Comms Outpost - type: MetaData - - type: Transform - - index: 5 - type: Map - - type: PhysicsMap - - type: Broadphase - - type: OccluderTree -- uid: 1 - components: - - name: Syndie Comms Outpost - type: MetaData - - pos: -0.20231247,0.2942295 - parent: 0 - type: Transform - - chunks: - -1,-1: - ind: -1,-1 - tiles: BAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAABYAAAASAAAAEgAAABIAAAASAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABQAAAAQAAAAEAAAABAAAAAQAAAAEAAAAWAAAAEgAAABIAAAASAAAAEgAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAFgAAABIAAAASAAAAEgAAABIAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAABYAAAASAAAAEgAAABIAAAASAAAAAQAAAAEAAAABAAAAFgAAABYAAAAWAAAAFgAAABYAAAAWAAAAFgAAABYAAAAWAAAAFgAAABYAAAAWAAAAFgAAAAEAAAABAAAAAQAAABYAAAAHQAAAB0AAAAdAAAAHQAAAB0AAAAEAAAABAAAAAQAAAAEAAAAHAAAABwAAAAcAAAABAAAAAQAAAAEAAAAWAAAAB0AAAAdAAAAHQAAAB0AAAAdAAAABAAAAAQAAAAEAAAABAAAABwAAAAcAAAAHAAAAAUAAAAEAAAABAAAAFgAAABYAAAAWAAAAFgAAAAaAAAAWAAAAFgAAABYAAAAWAAAAFgAAABYAAAAGgAAAFgAAAAEAAAABAAAAAQAAAAEAAAAGwAAABsAAAAbAAAAGwAAABsAAAAbAAAAGwAAABsAAAAbAAAAGwAAABsAAAAbAAAABAAAAAQAAAAEAAAABAAAABsAAAAbAAAAGwAAABsAAAAbAAAAGwAAABsAAAAbAAAAGwAAABsAAAAbAAAAGwAAAAQAAAAEAAAABAAAAAQAAAAbAAAAGwAAABsAAAAbAAAAGwAAABsAAAAbAAAAGwAAABsAAAAbAAAAGwAAABsAAAAEAAAABQAAAAQAAABYAAAAWAAAAFgAAABYAAAAGgAAAFgAAABYAAAAWAAAAFgAAABYAAAAWAAAAFgAAABYAAAABAAAAAQAAAAEAAAABAAAAFgAAAAYAAAAGAAAABgAAAAYAAAAWAAAADQAAAA0AAAANAAAADQAAAA0AAAANAAAAAQAAAAEAAAABAAAAAQAAABYAAAAGAAAABgAAAAYAAAAGAAAAFgAAAA0AAAANAAAADQAAAA0AAAANAAAADQAAAAEAAAABAAAAAQAAAAEAAAAWAAAABgAAAAYAAAAGAAAABgAAABYAAAANAAAADQAAAA0AAAANAAAADQAAAA0AAAABAAAAAQAAAAEAAAABAAAAFgAAABYAAAAWAAAAFgAAABYAAAAWAAAAFgAAAA0AAAANAAAADQAAAA0AAAANAAAAA== - 0,-1: - ind: 0,-1 - tiles: SAAAAEgAAABYAAAAGwAAABsAAABYAAAASAAAAEgAAABIAAAAWAAAAEgAAABIAAAASAAAAFgAAAAEAAAABAAAAEgAAABIAAAAWAAAABsAAAAbAAAAWAAAAEgAAABIAAAASAAAAFgAAABIAAAASAAAAEgAAABYAAAABAAAAAQAAABIAAAASAAAAFgAAAAbAAAAGwAAAFgAAABIAAAASAAAAEgAAABYAAAASAAAAEgAAABIAAAAWAAAAAQAAAAEAAAASAAAAEgAAABYAAAAGwAAABsAAABYAAAAWAAAAFgAAABYAAAAWAAAAFgAAABYAAAAWAAAAFgAAAAEAAAABAAAAFgAAABYAAAAWAAAABsAAAAbAAAAWAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAcAAAAHAAAAFgAAAAbAAAAGwAAAFgAAABYAAAAWAAAAFgAAABYAAAAWAAAAAQAAAAEAAAABAAAAAUAAAAEAAAAHAAAABwAAABYAAAAGwAAABsAAABYAAAAWAAAADUAAAA1AAAANQAAAFgAAABYAAAAWAAAAAQAAAAEAAAABAAAAFgAAABYAAAAWAAAABsAAAAbAAAAWAAAAFgAAAA1AAAANQAAADUAAAA1AAAANQAAAFgAAAAEAAAABAAAAAQAAAAbAAAAGwAAABoAAAAbAAAAGwAAABoAAAA1AAAANQAAADUAAAA1AAAANQAAADUAAABYAAAABAAAAAQAAAAEAAAAGwAAABsAAAAaAAAAGwAAABsAAAAaAAAANQAAADUAAAA1AAAANQAAADUAAAA1AAAAWAAAAAQAAAAEAAAABAAAABsAAAAbAAAAGgAAABsAAAAbAAAAGgAAADUAAAA1AAAANQAAADUAAAA1AAAANQAAAFgAAAAEAAAABAAAAAQAAABYAAAAWAAAAFgAAAAbAAAAGwAAAFgAAABYAAAANQAAADUAAAA1AAAANQAAADUAAABYAAAABAAAAAQAAAAEAAAANAAAADQAAABYAAAAGwAAABsAAABYAAAAWAAAADUAAAA1AAAANQAAAFgAAABYAAAAWAAAAAQAAAAEAAAABAAAADQAAAA0AAAAWAAAABsAAAAbAAAAWAAAAFgAAABYAAAAWAAAAFgAAABYAAAABAAAAAQAAAAEAAAABAAAAAQAAAA0AAAANAAAAFgAAAAbAAAAGwAAAFgAAABYAAAAWAAAAFgAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAANAAAADQAAAAaAAAAGwAAABsAAAA0AAAANAAAADQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAA== - 0,0: - ind: 0,0 - tiles: NAAAADQAAAAaAAAAGwAAABsAAAA0AAAANAAAADQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAFgAAAA0AAAAWAAAABsAAAAbAAAAWAAAAFgAAABYAAAAWAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABQAAAAQAAABYAAAAWAAAAFgAAAAbAAAAGwAAAFgAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAABYAAAAWAAAAFgAAABYAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABQAAAAQAAAAEAAAABAAAAAQAAAAFAAAABAAAAAQAAAAEAAAABAAAAAQAAAAAAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAAAAAAAAAAAAAAAAAABAAAAAQAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - -1,0: - ind: -1,0 - tiles: BAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAFgAAAA0AAAAWAAAAFgAAABYAAAAWAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAABYAAAAWAAAAAQAAABYAAAABAAAAFgAAAAEAAAABAAAAAQAAAAEAAAABQAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAFgAAAAEAAAAWAAAAAQAAABYAAAAAAAAAAAAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAABYAAAABQAAAFgAAAAFAAAAWAAAAAAAAAAAAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAAWAAAAFgAAABYAAAAWAAAAFgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAABAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - 0,-2: - ind: 0,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAFgAAABYAAAAWAAAAFgAAABYAAAAWAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAABYAAAANQAAADUAAAA1AAAANQAAAFgAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAAWAAAADUAAAA1AAAANQAAADUAAABYAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAABYAAAAWAAAAFgAAAA1AAAANQAAADUAAAA1AAAAWAAAAFgAAABYAAAAWAAAAFgAAABYAAAAWAAAAAQAAAAEAAAAGwAAABsAAABYAAAANQAAADUAAAA1AAAANQAAAFgAAABMAAAATAAAAEwAAABMAAAATAAAAFgAAAAEAAAABAAAABsAAAAbAAAAWAAAADUAAAA1AAAANQAAADUAAABYAAAATAAAAEwAAABMAAAATAAAAEwAAABYAAAABAAAAAQAAAAbAAAAGwAAAFgAAAA1AAAANQAAADUAAAA1AAAAWAAAAEwAAABMAAAATAAAAEwAAABMAAAAWAAAAAQAAAAEAAAAGgAAAFgAAABYAAAAWAAAABoAAABYAAAAWAAAAFgAAAAaAAAAWAAAAFgAAABYAAAAWAAAAFgAAAAEAAAABAAAABsAAAAbAAAAGwAAABsAAAAbAAAAGwAAABsAAAAbAAAAGwAAABsAAAAbAAAAGwAAABsAAABYAAAABAAAAAQAAAAbAAAAGwAAABsAAAAbAAAAGwAAABsAAAAbAAAAGwAAABsAAAAbAAAAGwAAABsAAAAbAAAAWAAAAAQAAAAEAAAAGgAAAFgAAABYAAAAGwAAABsAAABYAAAAWAAAABoAAABYAAAAWAAAAFgAAAAaAAAAWAAAAFgAAAAEAAAABAAAAA== - -1,-2: - ind: -1,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAQAAAAEAAAABAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAEAAAABAAAAAQAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAQAAAAEAAAABAAAAFgAAABYAAAAWAAAAFgAAABYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAEAAAABAAAAAQAAABYAAAAGwAAABsAAAAbAAAAGwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAABAAAAAQAAAAEAAAAWAAAABsAAAAbAAAAGwAAABsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAQAAAAEAAAABAAAAFgAAAAbAAAAGwAAABsAAAAbAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAABYAAAAWAAAAFgAAABYAAAAWAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAAWAAAABsAAAAbAAAAGwAAABsAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAFgAAAAbAAAAGwAAABsAAAAbAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAABYAAAAWAAAAFgAAABYAAAAWAAAAA== - -2,-1: - ind: -2,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - 1,0: - ind: 1,0 - tiles: BAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - 1,-1: - ind: 1,-1 - tiles: BQAAAAQAAAAEAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAEAAAABAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAABAAAAAQAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAQAAAAEAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAEAAAABAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAABAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAQAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAEAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAABAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAQAAAAEAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAEAAAABAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAABAAAAAQAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAUAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAEAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAABAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - 1,-2: - ind: 1,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAQAAAAEAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAEAAAABAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAABAAAAAQAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAQAAAAEAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAEAAAABAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAABAAAAAQAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAQAAAAEAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAEAAAABAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAABAAAAAQAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAQAAAAEAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - type: MapGrid - - type: Broadphase - - angularDamping: 0.05 - linearDamping: 0.05 - fixedRotation: False - bodyType: Dynamic - type: Physics - - fixtures: [] - type: Fixtures - - type: OccluderTree - - type: Shuttle - - type: GridPathfinding - - gravityShakeSound: !type:SoundPathSpecifier - path: /Audio/Effects/alert.ogg - enabled: True - type: Gravity - - chunkCollection: - 0,-1: - 0: - color: '#FFFFFFFF' - id: ArrowsGreyscale - coordinates: 8,-19 - 1: - color: '#FFFFFFFF' - id: BrickTileDarkCornerNw - coordinates: 7,-4 - 2: - color: '#FFFFFFFF' - id: BrickTileDarkCornerSw - coordinates: 7,-10 - 3: - color: '#FFFFFFFF' - id: BrickTileDarkCornerSe - coordinates: 9,-10 - 4: - color: '#FFFFFFFF' - id: BrickTileDarkCornerSe - coordinates: 11,-9 - 5: - color: '#FFFFFFFF' - id: BrickTileDarkCornerNe - coordinates: 9,-4 - 6: - color: '#FFFFFFFF' - id: BrickTileDarkCornerNe - coordinates: 11,-5 - 7: - color: '#FFFFFFFF' - id: BrickTileDarkLineN - coordinates: 8,-4 - 8: - color: '#FFFFFFFF' - id: BrickTileDarkLineN - coordinates: 10,-5 - 9: - color: '#FFFFFFFF' - id: BrickTileDarkLineE - coordinates: 11,-6 - 10: - color: '#FFFFFFFF' - id: BrickTileDarkLineE - coordinates: 11,-7 - 11: - color: '#FFFFFFFF' - id: BrickTileDarkLineE - coordinates: 11,-8 - 12: - color: '#FFFFFFFF' - id: BrickTileDarkLineS - coordinates: 10,-9 - 13: - color: '#FFFFFFFF' - id: BrickTileDarkLineS - coordinates: 8,-10 - 14: - color: '#FFFFFFFF' - id: BrickTileDarkLineW - coordinates: 7,-9 - 15: - color: '#FFFFFFFF' - id: BrickTileDarkLineW - coordinates: 7,-5 - 16: - color: '#FFFFFFFF' - id: BrickTileDarkLineS - coordinates: 6,-8 - 17: - color: '#FFFFFFFF' - id: BrickTileDarkLineN - coordinates: 6,-6 - 18: - color: '#FFFFFFFF' - id: BrickTileDarkInnerSw - coordinates: 7,-8 - 19: - color: '#FFFFFFFF' - id: BrickTileDarkInnerNw - coordinates: 7,-6 - 20: - color: '#FFFFFFFF' - id: BrickTileDarkInnerSe - coordinates: 9,-9 - 21: - color: '#FFFFFFFF' - id: BrickTileDarkInnerNe - coordinates: 9,-5 - 23: - color: '#FFFFFFFF' - id: WarnCornerGreyscaleSE - coordinates: 1,-16 - 24: - angle: 3.141592653589793 rad - color: '#FFFFFFFF' - id: ArrowsGreyscale - coordinates: 1,-16 - 28: - angle: 3.141592653589793 rad - color: '#FFFFFFFF' - id: Arrows - coordinates: 0,-16 - 29: - color: '#FFFFFFFF' - id: WarnLineGreyscaleS - coordinates: 0,-16 - 34: - color: '#FFFFFFFF' - id: WarnCornerGreyscaleNE - coordinates: 1,-13 - 36: - color: '#FFFFFFFF' - id: WarnLineGreyscaleE - coordinates: 1,-14 - 37: - color: '#FFFFFFFF' - id: WarnLineGreyscaleE - coordinates: 1,-15 - 38: - color: '#FFFFFFFF' - id: WarnLineGreyscaleN - coordinates: 0,-13 - 44: - angle: 3.141592653589793 rad - color: '#52B4E996' - id: ArrowsGreyscale - coordinates: 10,-16 - 45: - angle: 3.141592653589793 rad - color: '#52B4E996' - id: ArrowsGreyscale - coordinates: 6,-16 - 46: - angle: 3.141592653589793 rad - color: '#DE3A3A96' - id: ArrowsGreyscale - coordinates: 7,-16 - 47: - angle: 3.141592653589793 rad - color: '#DE3A3A96' - id: ArrowsGreyscale - coordinates: 8,-16 - 48: - angle: 3.141592653589793 rad - color: '#DE3A3A96' - id: ArrowsGreyscale - coordinates: 11,-16 - 49: - angle: 3.141592653589793 rad - color: '#EFB34196' - id: ArrowsGreyscale - coordinates: 12,-16 - 75: - color: '#DE3A3A96' - id: MiniTileSteelLineN - coordinates: 0,-6 - 88: - color: '#DE3A3A96' - id: MiniTileSteelLineS - coordinates: 0,-8 - 89: - color: '#DE3A3A96' - id: MiniTileSteelLineN - coordinates: 1,-6 - 90: - color: '#DE3A3A96' - id: MiniTileSteelLineS - coordinates: 1,-8 - 91: - color: '#DE3A3A96' - id: MiniTileSteelLineW - coordinates: 3,-5 - 92: - color: '#DE3A3A96' - id: MiniTileSteelLineW - coordinates: 3,-4 - 93: - color: '#DE3A3A96' - id: MiniTileSteelLineW - coordinates: 3,-3 - 94: - color: '#DE3A3A96' - id: MiniTileSteelLineW - coordinates: 3,-9 - 95: - color: '#DE3A3A96' - id: MiniTileSteelLineW - coordinates: 3,-10 - 96: - color: '#DE3A3A96' - id: MiniTileSteelLineW - coordinates: 3,-11 - 97: - color: '#DE3A3A96' - id: MiniTileSteelInnerSw - coordinates: 3,-8 - 98: - color: '#DE3A3A96' - id: MiniTileSteelInnerNw - coordinates: 3,-6 - 99: - color: '#DE3A3A96' - id: MiniTileSteelLineS - coordinates: 2,-8 - 100: - color: '#DE3A3A96' - id: MiniTileSteelLineN - coordinates: 2,-6 - 101: - color: '#DE3A3A96' - id: MiniTileSteelLineW - coordinates: 3,-2 - 106: - color: '#DE3A3A96' - id: MiniTileSteelLineE - coordinates: 4,-2 - 107: - color: '#DE3A3A96' - id: MiniTileSteelLineE - coordinates: 4,-3 - 108: - color: '#DE3A3A96' - id: MiniTileSteelLineE - coordinates: 4,-4 - 109: - color: '#DE3A3A96' - id: MiniTileSteelLineE - coordinates: 4,-5 - 110: - color: '#DE3A3A96' - id: MiniTileSteelLineE - coordinates: 4,-9 - 111: - color: '#DE3A3A96' - id: MiniTileSteelLineE - coordinates: 4,-10 - 112: - color: '#DE3A3A96' - id: MiniTileSteelLineE - coordinates: 4,-11 - 113: - color: '#DE3A3A96' - id: MiniTileSteelInnerSe - coordinates: 4,-8 - 114: - color: '#DE3A3A96' - id: MiniTileSteelInnerNe - coordinates: 4,-6 - 115: - color: '#DE3A3A70' - id: MiniTileSteelInnerNw - coordinates: 5,-6 - 116: - color: '#DE3A3A70' - id: MiniTileSteelInnerSw - coordinates: 5,-8 - 117: - color: '#FFFFFFFF' - id: MiniTileDarkInnerSe - coordinates: 5,-8 - 118: - color: '#FFFFFFFF' - id: MiniTileDarkInnerNe - coordinates: 5,-6 - 119: - color: '#DE3A3A96' - id: MiniTileSteelLineS - coordinates: 2,-1 - 120: - color: '#DE3A3A96' - id: MiniTileSteelInnerSw - coordinates: 3,-1 - 122: - color: '#DE3A3A96' - id: MiniTileSteelInnerSe - coordinates: 4,-1 - 134: - color: '#DE3A3AFF' - id: MiniTileSteelCornerSe - coordinates: 1,-4 - 135: - color: '#DE3A3AFF' - id: MiniTileSteelLineS - coordinates: 0,-4 - 143: - color: '#DE3A3AFF' - id: MiniTileSteelLineE - coordinates: 1,-3 - 144: - color: '#DE3A3AFF' - id: MiniTileSteelLineE - coordinates: 1,-2 - 145: - color: '#DE3A3AFF' - id: MiniTileSteelInnerSe - coordinates: 1,-1 - 146: - color: '#DE3A3AFF' - id: MiniTileSteelLineS - coordinates: 6,-1 - 147: - color: '#DE3A3AFF' - id: MiniTileSteelLineS - coordinates: 7,-1 - 148: - color: '#DE3A3AFF' - id: MiniTileSteelLineS - coordinates: 8,-1 - 153: - color: '#DE3A3AFF' - id: MiniTileSteelLineS - coordinates: 5,-1 - 154: - color: '#DE3A3A96' - id: MiniTileSteelLineE - coordinates: 4,-12 - 155: - color: '#DE3A3A96' - id: MiniTileSteelLineE - coordinates: 4,-13 - 156: - color: '#DE3A3A96' - id: MiniTileSteelLineE - coordinates: 4,-14 - 157: - color: '#DE3A3A96' - id: MiniTileSteelLineE - coordinates: 4,-15 - 158: - color: '#DE3A3A96' - id: MiniTileSteelLineE - coordinates: 4,-16 - 159: - color: '#DE3A3A96' - id: MiniTileSteelLineE - coordinates: 4,-17 - 160: - color: '#DE3A3A96' - id: MiniTileSteelLineW - coordinates: 3,-12 - 161: - color: '#DE3A3A96' - id: MiniTileSteelLineW - coordinates: 3,-13 - 162: - color: '#DE3A3A96' - id: MiniTileSteelLineW - coordinates: 3,-14 - 163: - color: '#DE3A3A96' - id: MiniTileSteelLineW - coordinates: 3,-15 - 164: - color: '#DE3A3A96' - id: MiniTileSteelLineW - coordinates: 3,-16 - 165: - color: '#DE3A3A96' - id: MiniTileSteelLineW - coordinates: 3,-17 - 166: - color: '#DE3A3A96' - id: MiniTileSteelInnerNw - coordinates: 3,-18 - 167: - color: '#DE3A3A96' - id: MiniTileSteelInnerNe - coordinates: 4,-18 - 168: - color: '#DE3A3A96' - id: MiniTileSteelLineN - coordinates: 5,-18 - 169: - color: '#DE3A3A96' - id: MiniTileSteelLineN - coordinates: 7,-18 - 170: - color: '#DE3A3A96' - id: MiniTileSteelLineN - coordinates: 9,-18 - 171: - color: '#DE3A3A96' - id: MiniTileSteelCornerNe - coordinates: 12,-18 - 275: - color: '#FFFFFFFF' - id: DirtHeavy - coordinates: 3.738441,-17.754255 - 274: - color: '#FFFFFFFF' - id: DirtHeavy - coordinates: 10.751231,-18.732311 - 176: - color: '#DE3A3A96' - id: MiniTileSteelLineS - coordinates: 10,-19 - 177: - color: '#DE3A3A96' - id: MiniTileSteelLineS - coordinates: 9,-19 - 178: - color: '#DE3A3A96' - id: MiniTileSteelLineS - coordinates: 7,-19 - 179: - color: '#DE3A3A96' - id: MiniTileSteelLineS - coordinates: 6,-19 - 180: - color: '#DE3A3A96' - id: MiniTileSteelLineS - coordinates: 5,-19 - 181: - color: '#DE3A3A96' - id: MiniTileSteelLineS - coordinates: 4,-19 - 182: - color: '#DE3A3A96' - id: MiniTileSteelLineS - coordinates: 3,-19 - 183: - color: '#DE3A3A96' - id: MiniTileSteelLineS - coordinates: 2,-19 - 184: - color: '#DE3A3A96' - id: MiniTileSteelLineS - coordinates: 1,-19 - 191: - color: '#DE3A3A96' - id: MiniTileSteelLineN - coordinates: 0,-18 - 192: - color: '#DE3A3A96' - id: MiniTileSteelLineN - coordinates: 2,-18 - 193: - color: '#DE3A3AFF' - id: BrickTileSteelLineN - coordinates: 9,-21 - 194: - color: '#DE3A3AFF' - id: BrickTileSteelLineN - coordinates: 10,-21 - 195: - color: '#DE3A3AFF' - id: BrickTileSteelLineN - coordinates: 11,-21 - 196: - color: '#DE3A3AFF' - id: BrickTileSteelCornerNe - coordinates: 12,-21 - 197: - color: '#DE3A3AFF' - id: BrickTileSteelCornerSw - coordinates: 8,-23 - 198: - color: '#DE3A3AFF' - id: BrickTileSteelCornerSe - coordinates: 12,-23 - 199: - color: '#DE3A3AFF' - id: BrickTileSteelLineS - coordinates: 11,-23 - 200: - color: '#DE3A3AFF' - id: BrickTileSteelLineS - coordinates: 10,-23 - 201: - color: '#DE3A3AFF' - id: BrickTileSteelLineS - coordinates: 9,-23 - 202: - color: '#DE3A3AFF' - id: BrickTileSteelLineW - coordinates: 8,-22 - 203: - color: '#DE3A3AFF' - id: BrickTileSteelLineE - coordinates: 12,-22 - 204: - color: '#DE3A3A96' - id: BrickTileSteelLineN - coordinates: 10,-18 - 205: - color: '#DE3A3AFF' - id: BrickTileSteelLineW - coordinates: 8,-21 - 206: - color: '#DE3A3AFF' - id: BrickTileSteelInnerNe - coordinates: 8,-21 - 207: - color: '#DE3A3A96' - id: MiniTileSteelLineE - coordinates: 8,-20 - 208: - color: '#DE3A3A96' - id: MiniTileSteelLineW - coordinates: 8,-20 - 209: - color: '#DE3A3A96' - id: MiniTileSteelInnerSw - coordinates: 8,-19 - 210: - color: '#DE3A3A96' - id: MiniTileSteelInnerSe - coordinates: 8,-19 - 211: - color: '#DE3A3A96' - id: MiniTileSteelLineN - coordinates: 1,-18 - 212: - color: '#DE3A3A96' - id: MiniTileSteelLineN - coordinates: 6,-18 - 213: - color: '#DE3A3A96' - id: MiniTileSteelLineN - coordinates: 11,-18 - 214: - color: '#DE3A3A96' - id: MiniTileSteelInnerSw - coordinates: 0,-19 - 215: - color: '#DE3A3A96' - id: MiniTileSteelInnerSe - coordinates: 0,-19 - 216: - color: '#DE3A3A96' - id: MiniTileSteelLineE - coordinates: 0,-20 - 217: - color: '#DE3A3A96' - id: MiniTileSteelLineW - coordinates: 0,-20 - 218: - color: '#DE3A3A96' - id: MiniTileSteelInnerNw - coordinates: 0,-21 - 219: - color: '#DE3A3A96' - id: MiniTileSteelInnerNe - coordinates: 0,-21 - 220: - color: '#DE3A3A96' - id: MiniTileSteelCornerNe - coordinates: 1,-21 - 221: - color: '#DE3A3A96' - id: MiniTileSteelCornerSe - coordinates: 1,-23 - 227: - color: '#DE3A3A96' - id: MiniTileSteelLineE - coordinates: 1,-22 - 232: - color: '#DE3A3A96' - id: MiniTileSteelLineS - coordinates: 0,-23 - 233: - color: '#FFFFFFFF' - id: WarnCornerGreyscaleSW - coordinates: 6,-16 - 234: - color: '#FFFFFFFF' - id: WarnCornerGreyscaleSE - coordinates: 8,-16 - 235: - color: '#FFFFFFFF' - id: WarnCornerGreyscaleNE - coordinates: 8,-14 - 236: - color: '#FFFFFFFF' - id: WarnCornerGreyscaleNW - coordinates: 6,-14 - 237: - color: '#FFFFFFFF' - id: WarnCornerGreyscaleNW - coordinates: 10,-14 - 238: - color: '#FFFFFFFF' - id: WarnCornerGreyscaleNE - coordinates: 12,-14 - 239: - color: '#FFFFFFFF' - id: WarnCornerGreyscaleSW - coordinates: 10,-16 - 240: - color: '#FFFFFFFF' - id: WarnCornerGreyscaleSE - coordinates: 12,-16 - 241: - color: '#FFFFFFFF' - id: WarnLineGreyscaleE - coordinates: 12,-15 - 242: - color: '#FFFFFFFF' - id: WarnLineGreyscaleE - coordinates: 8,-15 - 243: - color: '#FFFFFFFF' - id: WarnLineGreyscaleN - coordinates: 11,-14 - 244: - color: '#FFFFFFFF' - id: WarnLineGreyscaleN - coordinates: 7,-14 - 245: - color: '#FFFFFFFF' - id: WarnLineGreyscaleS - coordinates: 11,-16 - 246: - color: '#FFFFFFFF' - id: WarnLineGreyscaleS - coordinates: 7,-16 - 247: - color: '#FFFFFFFF' - id: WarnLineGreyscaleW - coordinates: 10,-15 - 248: - color: '#FFFFFFFF' - id: WarnLineGreyscaleW - coordinates: 6,-15 - 249: - color: '#FFFFFFFF' - id: WarnLineGreyscaleW - coordinates: 8,-17 - 250: - color: '#DE3A3A96' - id: MiniTileSteelLineN - coordinates: 8,-18 - 251: - color: '#D4D4D428' - id: ArrowsGreyscale - coordinates: 0,-19 - 268: - color: '#DE3A3AFF' - id: MiniTileSteelInnerNw - coordinates: 0,-1 - 272: - color: '#DE3A3A96' - id: MiniTileSteelCornerSe - coordinates: 12,-19 - 276: - color: '#FFFFFFFF' - id: DirtHeavy - coordinates: 4.998858,-21.024313 - 277: - color: '#FFFFFFFF' - id: DirtHeavy - coordinates: 3.957191,-23.995127 - 278: - color: '#FFFFFFFF' - id: DirtMedium - coordinates: 5.9884415,-23.036127 - 279: - color: '#FFFFFFFF' - id: DirtMedium - coordinates: 3.9467745,-22.014585 - 280: - color: '#FFFFFFFF' - id: DirtLight - coordinates: 6.0196915,-23.984703 - 281: - color: '#FFFFFFFF' - id: DirtLight - coordinates: 5.9571915,-24.047247 - 282: - color: '#FFFFFFFF' - id: DirtLight - coordinates: 2.144691,-1.0323192 - 283: - color: '#FFFFFFFF' - id: DirtLight - coordinates: 1.7176077,-0.1984067 - 284: - color: '#FFFFFFFF' - id: DirtLight - coordinates: 0.08198166,-2.0642858 - 294: - color: '#FFFFFFFF' - id: DirtHeavy - coordinates: 3.7260447,-0.79033923 - 295: - color: '#FFFFFFFF' - id: DirtHeavy - coordinates: 3.2364616,-0.2587204 - 296: - color: '#FFFFFFFF' - id: DirtMedium - coordinates: 3.7677116,-2.7604575 - 297: - color: '#FFFFFFFF' - id: DirtMedium - coordinates: 3.2260447,-6.2781625 - 298: - color: '#FFFFFFFF' - id: DirtMedium - coordinates: 3.7468781,-5.7361193 - 299: - color: '#FFFFFFFF' - id: DirtLight - coordinates: 3.7260447,-7.7792053 - 300: - color: '#FFFFFFFF' - id: DirtLight - coordinates: 7.0155087,-7.560303 - 301: - color: '#FFFFFFFF' - id: DirtLight - coordinates: 8.005092,-6.9869885 - 302: - color: '#FFFFFFFF' - id: DirtHeavy - coordinates: 7.4530087,-6.5283365 - 303: - color: '#FFFFFFFF' - id: DirtMedium - coordinates: 9.963425,-7.0144215 - 304: - color: '#FFFFFFFF' - id: DirtMedium - coordinates: 11.046759,-8.067236 - 305: - color: '#FFFFFFFF' - id: DirtMedium - coordinates: 8.993807,-9.015811 - 306: - color: '#FFFFFFFF' - id: DirtMedium - coordinates: 8.525057,-8.546736 - 307: - color: '#FFFFFFFF' - id: DirtLight - coordinates: 9.972973,-8.536312 - 308: - color: '#FFFFFFFF' - id: DirtLight - coordinates: 8.98339,-5.5133786 - 309: - color: '#FFFFFFFF' - id: DirtLight - coordinates: 8.462557,-5.0130315 - 310: - color: '#FFFFFFFF' - id: DirtLight - coordinates: 5.98339,-8.038621 - 311: - color: '#FFFFFFFF' - id: DirtLight - coordinates: 6.472973,-7.517425 - 312: - color: '#FFFFFFFF' - id: DirtLight - coordinates: 6.472973,-8.017773 - 313: - color: '#FFFFFFFF' - id: DirtLight - coordinates: 5.983581,-6.502925 - 314: - color: '#FFFFFFFF' - id: DirtLight - coordinates: 6.483581,-5.9921536 - 315: - color: '#FFFFFFFF' - id: DirtLight - coordinates: 6.0564976,-6.565469 - 316: - color: '#FFFFFFFF' - id: DirtLight - coordinates: 3.746551,-6.7696443 - 319: - color: '#FFFFFFFF' - id: DirtLight - coordinates: 0.21045494,-7.2178726 - 320: - color: '#FFFFFFFF' - id: DirtLight - coordinates: 0.28337145,-7.7599154 - 333: - color: '#FFFFFFFF' - id: DirtHeavy - coordinates: 3.7263203,-12.735309 - 334: - color: '#FFFFFFFF' - id: DirtHeavy - coordinates: 3.247154,-13.256505 - 335: - color: '#FFFFFFFF' - id: DirtMedium - coordinates: 3.7471538,-15.74577 - 336: - color: '#FFFFFFFF' - id: DirtMedium - coordinates: 3.8200703,-15.693651 - 337: - color: '#FFFFFFFF' - id: DirtLight - coordinates: 0.74133277,-18.233133 - 338: - color: '#FFFFFFFF' - id: DirtLight - coordinates: 0.762166,-18.295677 - 339: - color: '#FFFFFFFF' - id: DirtLight - coordinates: 2.241333,-18.806448 - 340: - color: '#FFFFFFFF' - id: DirtLight - coordinates: 2.1892495,-18.65009 - 341: - color: '#FFFFFFFF' - id: DirtMedium - coordinates: 8.764579,-18.753668 - 342: - color: '#FFFFFFFF' - id: DirtMedium - coordinates: 10.972017,-14.933498 - 343: - color: '#FFFFFFFF' - id: DirtMedium - coordinates: 11.065767,-15.027314 - 344: - color: '#FFFFFFFF' - id: DirtMedium - coordinates: 11.524101,-15.548509 - 345: - color: '#FFFFFFFF' - id: DirtHeavy - coordinates: 9.919934,-14.026619 - 346: - color: '#FFFFFFFF' - id: DirtHeavy - coordinates: 10.117851,-14.120434 - 347: - color: '#FFFFFFFF' - id: DirtHeavy - coordinates: 7.4824343,-16.00716 - 348: - color: '#FFFFFFFF' - id: DirtHeavy - coordinates: 7.5553513,-15.955041 - 349: - color: '#FFFFFFFF' - id: DirtHeavy - coordinates: 6.5345173,-15.037738 - 350: - color: '#FFFFFFFF' - id: DirtHeavy - coordinates: 6.430351,-14.923075 - 351: - color: '#FFFFFFFF' - id: DirtHeavy - coordinates: 7.5345173,-14.05789 - 352: - color: '#FFFFFFFF' - id: DirtHeavy - coordinates: 7.5449343,-13.974499 - 361: - cleanable: True - angle: 0.7853981633974483 rad - color: '#FFFFFFFF' - id: DirtLight - coordinates: 10.516418,-21.538868 - 360: - cleanable: True - angle: 0.7853981633974483 rad - color: '#FFFFFFFF' - id: DirtLight - coordinates: 9.235168,-21.768192 - 362: - cleanable: True - angle: 0.7853981633974483 rad - color: '#FFFFFFFF' - id: DirtLight - coordinates: 10.474751,-21.476324 - 363: - cleanable: True - angle: 0.7853981633974483 rad - color: '#FFFFFFFF' - id: DirtLight - coordinates: 10.485168,-22.497866 - 364: - cleanable: True - angle: 0.7853981633974483 rad - color: '#FFFFFFFF' - id: DirtLight - coordinates: 8.256001,-22.299812 - 365: - cleanable: True - angle: 0.7853981633974483 rad - color: '#FFFFFFFF' - id: DirtLight - coordinates: 8.2455845,-21.768192 - 366: - cleanable: True - angle: 0.7853981633974483 rad - color: '#FFFFFFFF' - id: DirtLight - coordinates: 8.0164175,-21.538868 - 367: - cleanable: True - angle: 0.7853981633974483 rad - color: '#FFFFFFFF' - id: DirtLight - coordinates: 8.006001,-20.481033 - 368: - cleanable: True - angle: 0.7853981633974483 rad - color: '#FFFFFFFF' - id: DirtLight - coordinates: 8.4955845,-20.991804 - -1,-1: - 22: - color: '#FFFFFFFF' - id: WarnCornerGreyscaleSW - coordinates: -4,-16 - 25: - angle: 3.141592653589793 rad - color: '#FFFFFFFF' - id: ArrowsGreyscale - coordinates: -3,-16 - 26: - angle: 3.141592653589793 rad - color: '#FFFFFFFF' - id: Arrows - coordinates: -2,-16 - 27: - angle: 3.141592653589793 rad - color: '#FFFFFFFF' - id: Arrows - coordinates: -4,-16 - 30: - color: '#FFFFFFFF' - id: WarnLineGreyscaleS - coordinates: -2,-16 - 31: - color: '#FFFFFFFF' - id: WarnLineGreyscaleS - coordinates: -3,-16 - 32: - color: '#FFFFFFFF' - id: WarnLineGreyscaleS - coordinates: -1,-16 - 33: - angle: 3.141592653589793 rad - color: '#FFFFFFFF' - id: ArrowsGreyscale - coordinates: -1,-16 - 35: - color: '#FFFFFFFF' - id: WarnCornerGreyscaleNW - coordinates: -4,-13 - 39: - color: '#FFFFFFFF' - id: WarnLineGreyscaleN - coordinates: -1,-13 - 40: - color: '#FFFFFFFF' - id: WarnLineGreyscaleN - coordinates: -2,-13 - 41: - color: '#FFFFFFFF' - id: WarnLineGreyscaleN - coordinates: -3,-13 - 42: - color: '#FFFFFFFF' - id: WarnLineGreyscaleW - coordinates: -4,-14 - 43: - color: '#FFFFFFFF' - id: WarnLineGreyscaleW - coordinates: -4,-15 - 256: - color: '#FFFFFFFF' - id: BrickTileDarkCornerNe - coordinates: -8,-2 - 51: - color: '#FFFFFFFF' - id: BrickTileDarkCornerNw - coordinates: -11,-2 - 52: - color: '#FFFFFFFF' - id: BrickTileDarkCornerSw - coordinates: -11,-4 - 258: - color: '#FFFFFFFF' - id: WarnFull - coordinates: -6,-3 - 54: - color: '#FFFFFFFF' - id: BrickTileDarkLineN - coordinates: -10,-2 - 55: - color: '#FFFFFFFF' - id: BrickTileDarkLineN - coordinates: -9,-2 - 255: - color: '#FFFFFFFF' - id: BrickTileDarkCornerSe - coordinates: -8,-4 - 254: - color: '#FFFFFFFF' - id: BrickTileDarkLineE - coordinates: -8,-3 - 257: - color: '#FFFFFFFF' - id: WarnFull - coordinates: -6,-4 - 59: - color: '#FFFFFFFF' - id: BrickTileDarkLineS - coordinates: -9,-4 - 60: - color: '#FFFFFFFF' - id: BrickTileDarkLineS - coordinates: -10,-4 - 61: - color: '#FFFFFFFF' - id: BrickTileDarkLineW - coordinates: -11,-3 - 62: - color: '#DE3A3A96' - id: MiniTileSteelCornerNw - coordinates: -12,-6 - 63: - color: '#DE3A3A96' - id: MiniTileSteelCornerSw - coordinates: -12,-8 - 64: - color: '#DE3A3A96' - id: MiniTileSteelLineN - coordinates: -11,-6 - 65: - color: '#DE3A3A96' - id: MiniTileSteelLineN - coordinates: -10,-6 - 66: - color: '#DE3A3A96' - id: MiniTileSteelLineN - coordinates: -9,-6 - 67: - color: '#DE3A3A96' - id: MiniTileSteelLineN - coordinates: -8,-6 - 68: - color: '#DE3A3A96' - id: MiniTileSteelLineN - coordinates: -7,-6 - 69: - color: '#DE3A3A96' - id: MiniTileSteelLineN - coordinates: -6,-6 - 70: - color: '#DE3A3A96' - id: MiniTileSteelLineN - coordinates: -5,-6 - 71: - color: '#DE3A3A96' - id: MiniTileSteelLineN - coordinates: -4,-6 - 72: - color: '#DE3A3A96' - id: MiniTileSteelLineN - coordinates: -3,-6 - 73: - color: '#DE3A3A96' - id: MiniTileSteelLineN - coordinates: -2,-6 - 74: - color: '#DE3A3A96' - id: MiniTileSteelLineN - coordinates: -1,-6 - 76: - color: '#DE3A3A96' - id: MiniTileSteelLineW - coordinates: -12,-7 - 77: - color: '#DE3A3A96' - id: MiniTileSteelLineS - coordinates: -11,-8 - 78: - color: '#DE3A3A96' - id: MiniTileSteelLineS - coordinates: -10,-8 - 79: - color: '#DE3A3A96' - id: MiniTileSteelLineS - coordinates: -9,-8 - 80: - color: '#DE3A3A96' - id: MiniTileSteelLineS - coordinates: -8,-8 - 81: - color: '#DE3A3A96' - id: MiniTileSteelLineS - coordinates: -7,-8 - 82: - color: '#DE3A3A96' - id: MiniTileSteelLineS - coordinates: -6,-8 - 83: - color: '#DE3A3A96' - id: MiniTileSteelLineS - coordinates: -5,-8 - 84: - color: '#DE3A3A96' - id: MiniTileSteelLineS - coordinates: -4,-8 - 85: - color: '#DE3A3A96' - id: MiniTileSteelLineS - coordinates: -3,-8 - 86: - color: '#DE3A3A96' - id: MiniTileSteelLineS - coordinates: -2,-8 - 87: - color: '#DE3A3A96' - id: MiniTileSteelLineS - coordinates: -1,-8 - 133: - color: '#DE3A3AFF' - id: MiniTileSteelCornerSw - coordinates: -5,-4 - 136: - color: '#DE3A3AFF' - id: MiniTileSteelLineS - coordinates: -1,-4 - 137: - color: '#DE3A3AFF' - id: MiniTileSteelLineS - coordinates: -2,-4 - 138: - color: '#DE3A3AFF' - id: MiniTileSteelLineS - coordinates: -3,-4 - 139: - color: '#DE3A3AFF' - id: MiniTileSteelLineS - coordinates: -4,-4 - 140: - color: '#DE3A3AFF' - id: MiniTileSteelLineW - coordinates: -5,-1 - 141: - color: '#DE3A3AFF' - id: MiniTileSteelLineW - coordinates: -5,-2 - 142: - color: '#DE3A3AFF' - id: MiniTileSteelLineW - coordinates: -5,-3 - 173: - color: '#DE3A3A96' - id: MiniTileSteelCornerNw - coordinates: -4,-18 - 174: - color: '#DE3A3A96' - id: MiniTileSteelCornerSw - coordinates: -4,-19 - 185: - color: '#DE3A3A96' - id: MiniTileSteelLineS - coordinates: -1,-19 - 186: - color: '#DE3A3A96' - id: MiniTileSteelLineS - coordinates: -2,-19 - 187: - color: '#DE3A3A96' - id: MiniTileSteelLineS - coordinates: -3,-19 - 188: - color: '#DE3A3A96' - id: MiniTileSteelLineN - coordinates: -3,-18 - 189: - color: '#DE3A3A96' - id: MiniTileSteelLineN - coordinates: -2,-18 - 190: - color: '#DE3A3A96' - id: MiniTileSteelLineN - coordinates: -1,-18 - 222: - color: '#DE3A3A96' - id: MiniTileSteelCornerNw - coordinates: -4,-21 - 223: - color: '#DE3A3A96' - id: MiniTileSteelCornerSw - coordinates: -4,-23 - 224: - color: '#DE3A3A96' - id: MiniTileSteelLineN - coordinates: -1,-21 - 225: - color: '#DE3A3A96' - id: MiniTileSteelLineN - coordinates: -3,-21 - 226: - color: '#DE3A3A96' - id: MiniTileSteelLineN - coordinates: -2,-21 - 228: - color: '#DE3A3A96' - id: MiniTileSteelLineW - coordinates: -4,-22 - 229: - color: '#DE3A3A96' - id: MiniTileSteelLineS - coordinates: -3,-23 - 230: - color: '#DE3A3A96' - id: MiniTileSteelLineS - coordinates: -2,-23 - 231: - color: '#DE3A3A96' - id: MiniTileSteelLineS - coordinates: -1,-23 - 259: - color: '#FFFFFFFF' - id: WarnFull - coordinates: -6,-2 - 263: - color: '#DE3A3AFF' - id: MiniTileSteelLineN - coordinates: -4,-1 - 264: - color: '#DE3A3AFF' - id: MiniTileSteelLineN - coordinates: -3,-1 - 265: - color: '#DE3A3AFF' - id: MiniTileSteelLineN - coordinates: -2,-1 - 266: - color: '#DE3A3AFF' - id: MiniTileSteelLineN - coordinates: -1,-1 - 269: - color: '#DE3A3AFF' - id: MiniTileSteelInnerNe - coordinates: -5,-1 - 285: - color: '#FFFFFFFF' - id: DirtLight - coordinates: -0.2201016,-1.7619926 - 286: - color: '#FFFFFFFF' - id: DirtLight - coordinates: -0.961504,-0.10877085 - 288: - color: '#FFFFFFFF' - id: DirtLight - coordinates: -3.7630773,-0.3276728 - 289: - color: '#FFFFFFFF' - id: DirtLight - coordinates: -4.2839108,-0.0045316815 - 290: - color: '#FFFFFFFF' - id: DirtHeavy - coordinates: -5.9883523,-2.0147102 - 291: - color: '#FFFFFFFF' - id: DirtHeavy - coordinates: -5.8946023,-2.6401443 - 292: - color: '#FFFFFFFF' - id: DirtHeavy - coordinates: -6.061269,-3.6304157 - 293: - color: '#FFFFFFFF' - id: DirtHeavy - coordinates: -5.884186,-4.057796 - 317: - color: '#FFFFFFFF' - id: DirtLight - coordinates: -0.2687118,-7.7494917 - 318: - color: '#FFFFFFFF' - id: DirtLight - coordinates: -0.21662855,-7.707796 - 321: - color: '#FFFFFFFF' - id: DirtHeavy - coordinates: -2.2478786,-6.7696443 - 322: - color: '#FFFFFFFF' - id: DirtHeavy - coordinates: -1.7374618,-6.707101 - 323: - color: '#FFFFFFFF' - id: DirtLight - coordinates: -1.2374618,-7.269992 - 324: - color: '#FFFFFFFF' - id: DirtLight - coordinates: -1.2791286,-7.2387204 - 325: - color: '#FFFFFFFF' - id: DirtMedium - coordinates: -6.2703314,-7.768618 - 326: - color: '#FFFFFFFF' - id: DirtMedium - coordinates: -5.7390814,-7.226575 - 327: - color: '#FFFFFFFF' - id: DirtLight - coordinates: -5.770872,-7.706074 - 328: - color: '#FFFFFFFF' - id: DirtLight - coordinates: -5.781289,-7.7373466 - 329: - color: '#FFFFFFFF' - id: DirtLight - coordinates: -9.299551,-6.736651 - 330: - color: '#FFFFFFFF' - id: DirtLight - coordinates: -9.216217,-6.7679234 - 331: - color: '#FFFFFFFF' - id: DirtLight - coordinates: -9.216217,-6.8096185 - 332: - color: '#FFFFFFFF' - id: DirtMedium - coordinates: -9.747467,-7.247422 - 353: - color: '#FFFFFFFF' - id: DirtLight - coordinates: -2.570778,-15.994635 - 354: - color: '#FFFFFFFF' - id: DirtLight - coordinates: -2.5291111,-15.994635 - 355: - angle: 0.4886921905584123 rad - color: '#FFFFFFFF' - id: DirtLight - coordinates: -1.9457779,-15.932091 - 356: - angle: 0.4886921905584123 rad - color: '#FFFFFFFF' - id: DirtLight - coordinates: -1.7061944,-15.859124 - 357: - angle: 0.03490658503988659 rad - color: '#FFFFFFFF' - id: DirtLight - coordinates: -1.4770279,-16.08845 - 0,0: - 102: - color: '#DE3A3A96' - id: MiniTileSteelLineW - coordinates: 3,1 - 103: - color: '#DE3A3A96' - id: MiniTileSteelCornerNw - coordinates: 3,2 - 104: - color: '#DE3A3A96' - id: MiniTileSteelCornerNe - coordinates: 4,2 - 105: - color: '#DE3A3A96' - id: MiniTileSteelLineE - coordinates: 4,1 - 121: - color: '#DE3A3A96' - id: MiniTileSteelInnerNw - coordinates: 3,0 - 123: - color: '#DE3A3A96' - id: MiniTileSteelInnerNe - coordinates: 4,0 - 267: - color: '#DE3A3AFF' - id: MiniTileSteelCornerNw - 129: - color: '#DE3A3AFF' - id: MiniTileSteelEndN - coordinates: 1,1 - 130: - color: '#DE3A3AFF' - id: MiniTileSteelInnerNw - coordinates: 1,0 - 131: - color: '#DE3A3AFF' - id: MiniTileSteelInnerNe - coordinates: 1,0 - 149: - color: '#DE3A3AFF' - id: MiniTileSteelLineN - coordinates: 6,0 - 150: - color: '#DE3A3AFF' - id: MiniTileSteelLineN - coordinates: 7,0 - 151: - color: '#DE3A3AFF' - id: MiniTileSteelLineN - coordinates: 8,0 - 152: - color: '#DE3A3AFF' - id: MiniTileSteelLineN - coordinates: 5,0 - -1,0: - 262: - color: '#DE3A3AFF' - id: MiniTileSteelEndN - coordinates: -5,0 - 287: - color: '#FFFFFFFF' - id: DirtLight - coordinates: -1.3573375,0.099707484 - type: DecalGrid - - tiles: - -2,-2: 0 - -2,-1: 0 - -1,-2: 0 - -1,-1: 0 - 0,-2: 0 - 0,-1: 0 - 0,0: 0 - -2,0: 0 - -1,0: 0 - -6,-5: 0 - -6,-4: 0 - -6,-3: 0 - -6,-2: 0 - -6,-1: 0 - -5,-5: 0 - -5,-4: 0 - -5,-3: 0 - -5,-2: 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 - -2,-4: 0 - -2,-3: 0 - -1,-5: 0 - -1,-4: 0 - -1,-3: 0 - 0,-5: 0 - 0,-4: 0 - 0,-3: 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: 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,-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,-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,-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,-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 - 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 - 11,-10: 0 - 11,-9: 0 - 11,-8: 0 - 11,-7: 0 - 11,-6: 0 - 11,-5: 0 - 11,-4: 0 - 12,-10: 0 - 12,-9: 0 - 12,-8: 0 - 12,-7: 0 - 12,-6: 0 - 12,-5: 0 - 12,-4: 0 - 0,1: 0 - 0,2: 0 - 1,0: 0 - 1,1: 0 - 1,2: 0 - 2,0: 0 - 2,1: 0 - 2,2: 0 - 2,3: 0 - 2,4: 0 - 2,5: 0 - 3,0: 0 - 3,1: 0 - 3,2: 0 - 3,3: 0 - 3,4: 0 - 3,5: 0 - 4,0: 0 - 4,1: 0 - 4,2: 0 - 4,3: 0 - 4,4: 0 - 4,5: 1 - 5,0: 0 - 5,1: 0 - 5,2: 0 - 5,3: 0 - 5,4: 0 - 5,5: 0 - 6,0: 0 - 6,1: 0 - 7,0: 0 - 7,1: 0 - 8,0: 0 - 8,1: 0 - -6,0: 0 - -6,1: 0 - -5,0: 0 - -5,1: 0 - -4,0: 0 - -4,1: 0 - -3,0: 0 - -3,1: 0 - -2,1: 0 - -1,1: 0 - 0,-20: 0 - 0,-19: 0 - 0,-18: 0 - 0,-17: 0 - 1,-20: 0 - 1,-19: 0 - 1,-18: 0 - 1,-17: 0 - 2,-20: 0 - 2,-19: 0 - 2,-18: 0 - 2,-17: 0 - 3,-20: 0 - 3,-19: 0 - 3,-18: 0 - 3,-17: 0 - 4,-20: 0 - 4,-19: 0 - 4,-18: 0 - 4,-17: 0 - 5,-20: 0 - 5,-19: 0 - 5,-18: 0 - 5,-17: 0 - 6,-20: 0 - 6,-19: 0 - 6,-18: 0 - 6,-17: 0 - 7,-20: 0 - 7,-19: 0 - 7,-18: 0 - 7,-17: 0 - 8,-20: 0 - 8,-19: 0 - 8,-18: 0 - 8,-17: 0 - 9,-20: 0 - 9,-19: 0 - 9,-18: 0 - 9,-17: 0 - 10,-20: 0 - 10,-19: 0 - 10,-18: 0 - 10,-17: 0 - 11,-20: 0 - 11,-19: 0 - 11,-18: 0 - 11,-17: 0 - 12,-20: 0 - 12,-19: 0 - 12,-18: 0 - 12,-17: 0 - 13,-20: 0 - 13,-19: 0 - 13,-18: 0 - 13,-17: 0 - -6,-20: 0 - -6,-19: 0 - -6,-18: 0 - -6,-17: 0 - -5,-20: 0 - -5,-19: 0 - -5,-18: 0 - -5,-17: 0 - -4,-20: 0 - -4,-19: 0 - -4,-18: 0 - -4,-17: 0 - -3,-20: 0 - -3,-19: 0 - -3,-18: 0 - -3,-17: 0 - -2,-20: 0 - -2,-19: 0 - -2,-18: 0 - -2,-17: 0 - -1,-20: 0 - -1,-19: 0 - -1,-18: 0 - -1,-17: 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 - -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,-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,-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,-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,-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,-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,-12: 0 - -6,-11: 1 - -6,-10: 1 - -6,-9: 0 - -6,-8: 0 - -6,-7: 0 - -6,-6: 0 - -5,-16: 0 - -5,-15: 0 - -5,-14: 0 - -5,-13: 0 - -5,-12: 0 - -5,-11: 1 - -5,-10: 1 - -5,-9: 0 - -5,-8: 0 - -5,-7: 0 - -5,-6: 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 - -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 - -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 - -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 - 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 - 6,-16: 0 - 6,-15: 0 - 6,-14: 0 - 6,-13: 0 - 7,-16: 0 - 7,-15: 0 - 7,-14: 0 - 7,-13: 0 - 8,-16: 0 - 8,-15: 0 - 8,-14: 0 - 8,-13: 0 - 9,-16: 0 - 9,-15: 0 - 9,-14: 0 - 9,-13: 0 - 10,-16: 0 - 10,-15: 0 - 10,-14: 0 - 10,-13: 0 - 11,-16: 0 - 11,-15: 0 - 11,-14: 0 - 11,-13: 0 - 12,-16: 0 - 12,-15: 0 - 12,-14: 0 - 12,-13: 0 - 13,-16: 0 - 13,-15: 0 - 13,-14: 0 - 13,-13: 0 - 0,-24: 0 - 0,-23: 0 - 0,-22: 0 - 0,-21: 0 - 1,-24: 0 - 1,-23: 0 - 1,-22: 0 - 1,-21: 0 - 2,-27: 0 - 2,-26: 0 - 2,-25: 0 - 2,-24: 0 - 2,-23: 0 - 2,-22: 0 - 2,-21: 0 - 3,-27: 0 - 3,-26: 0 - 3,-25: 0 - 3,-24: 0 - 3,-23: 0 - 3,-22: 0 - 3,-21: 0 - 4,-27: 0 - 4,-26: 0 - 4,-25: 0 - 4,-24: 0 - 4,-23: 0 - 4,-22: 0 - 4,-21: 0 - 5,-27: 0 - 5,-26: 0 - 5,-25: 0 - 5,-24: 0 - 5,-23: 0 - 5,-22: 0 - 5,-21: 0 - 6,-27: 0 - 6,-26: 0 - 6,-25: 0 - 6,-24: 0 - 6,-23: 0 - 6,-22: 0 - 6,-21: 0 - 7,-27: 0 - 7,-26: 0 - 7,-25: 0 - 7,-24: 0 - 7,-23: 0 - 7,-22: 0 - 7,-21: 0 - 8,-24: 0 - 8,-23: 0 - 8,-22: 0 - 8,-21: 0 - 9,-24: 0 - 9,-23: 0 - 9,-22: 0 - 9,-21: 0 - 10,-24: 0 - 10,-23: 0 - 10,-22: 0 - 10,-21: 0 - 11,-24: 0 - 11,-23: 0 - 11,-22: 0 - 11,-21: 0 - 12,-24: 0 - 12,-23: 0 - 12,-22: 0 - 12,-21: 0 - 13,-24: 0 - 13,-23: 0 - 13,-22: 0 - 13,-21: 0 - -5,-24: 0 - -5,-23: 0 - -5,-22: 0 - -5,-21: 0 - -4,-24: 0 - -4,-23: 0 - -4,-22: 0 - -4,-21: 0 - -3,-24: 0 - -3,-23: 0 - -3,-22: 0 - -3,-21: 0 - -2,-24: 0 - -2,-23: 0 - -2,-22: 0 - -2,-21: 0 - -1,-24: 0 - -1,-23: 0 - -1,-22: 0 - -1,-21: 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 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: GridAtmosphere - - type: RadiationGridResistance -- uid: 2 - type: WallPlastitanium - components: - - pos: 8.5,-1.5 - parent: 1 - type: Transform -- uid: 3 - type: AsteroidRock - components: - - pos: -0.5,3.5 - parent: 1 - type: Transform -- uid: 4 - type: WallPlastitanium - components: - - pos: -2.5,1.5 - parent: 1 - type: Transform -- uid: 5 - type: AsteroidRock - components: - - pos: -0.5,2.5 - parent: 1 - type: Transform -- uid: 6 - type: AirlockMaintGlass - components: - - pos: 2.5,0.5 - parent: 1 - type: Transform -- uid: 7 - type: WallPlastitanium - components: - - pos: 0.5,2.5 - parent: 1 - type: Transform -- uid: 8 - type: WallPlastitanium - components: - - pos: 1.5,2.5 - parent: 1 - type: Transform -- uid: 9 - type: WallPlastitanium - components: - - pos: 2.5,2.5 - parent: 1 - type: Transform -- uid: 10 - type: WallPlastitanium - components: - - pos: 2.5,1.5 - parent: 1 - type: Transform -- uid: 11 - type: WallPlastitanium - components: - - pos: 0.5,1.5 - parent: 1 - type: Transform -- uid: 12 - type: WallPlastitanium - components: - - pos: 2.5,-1.5 - parent: 1 - type: Transform -- uid: 13 - type: WallPlastitanium - components: - - pos: 2.5,-2.5 - parent: 1 - type: Transform -- uid: 14 - type: CableHV - components: - - pos: -5.5,-2.5 - parent: 1 - type: Transform -- uid: 15 - type: Catwalk - components: - - pos: -2.5,0.5 - parent: 1 - type: Transform -- uid: 16 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 1.5,0.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor -- uid: 17 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: -3.5,0.5 - parent: 1 - type: Transform -- uid: 18 - type: Catwalk - components: - - pos: -0.5,0.5 - parent: 1 - type: Transform -- uid: 19 - type: CableHV - components: - - pos: -5.5,-3.5 - parent: 1 - type: Transform -- uid: 20 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -5.5,-3.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21 - type: AirlockMaintGlass - components: - - pos: 2.5,-0.5 - parent: 1 - type: Transform -- uid: 22 - type: CableHV - components: - - pos: 1.5,1.5 - parent: 1 - type: Transform -- uid: 23 - type: CableHV - components: - - pos: 0.5,1.5 - parent: 1 - type: Transform -- uid: 24 - type: CableHV - components: - - pos: 0.5,0.5 - parent: 1 - type: Transform -- uid: 25 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 3.5,-0.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor -- uid: 26 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 2.5,0.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor -- uid: 27 - type: WallPlastitanium - components: - - pos: -6.5,-1.5 - parent: 1 - type: Transform -- uid: 28 - type: WallPlastitanium - components: - - pos: -5.5,1.5 - parent: 1 - type: Transform -- uid: 29 - type: VendingMachineYouTool - components: - - flags: SessionSpecific - type: MetaData - - pos: 1.5,-2.5 - parent: 1 - type: Transform -- uid: 30 - type: CableApcExtension - components: - - pos: 1.5,1.5 - parent: 1 - type: Transform -- uid: 31 - type: CableApcExtension - components: - - pos: 0.5,1.5 - parent: 1 - type: Transform -- uid: 32 - type: CableApcExtension - components: - - pos: 0.5,0.5 - parent: 1 - type: Transform -- uid: 33 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 3.5,-1.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor -- uid: 34 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 0.5,0.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor -- uid: 35 - type: WallPlastitanium - components: - - pos: -6.5,-3.5 - parent: 1 - type: Transform -- uid: 36 - type: WallPlastitanium - components: - - pos: -5.5,0.5 - parent: 1 - type: Transform -- uid: 37 - type: AsteroidRock - components: - - pos: -4.5,4.5 - parent: 1 - type: Transform -- uid: 38 - type: CableMV - components: - - pos: 1.5,1.5 - parent: 1 - type: Transform -- uid: 39 - type: CableMV - components: - - pos: 0.5,1.5 - parent: 1 - type: Transform -- uid: 40 - type: CableMV - components: - - pos: 0.5,0.5 - parent: 1 - type: Transform -- uid: 41 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 3.5,-2.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor -- uid: 42 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 5.5,0.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor -- uid: 43 - type: WallPlastitanium - components: - - pos: -6.5,-2.5 - parent: 1 - type: Transform -- uid: 44 - type: WallPlastitanium - components: - - pos: -5.5,-0.5 - parent: 1 - type: Transform -- uid: 45 - type: AsteroidRock - components: - - pos: -3.5,4.5 - parent: 1 - type: Transform -- uid: 46 - type: WallPlastitanium - components: - - pos: -5.5,-4.5 - parent: 1 - type: Transform -- uid: 47 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 6.5,0.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor -- uid: 48 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -2.5,0.5 - parent: 1 - type: Transform -- uid: 49 - type: WallPlastitanium - components: - - pos: -2.5,2.5 - parent: 1 - type: Transform -- uid: 50 - type: CableTerminal - components: - - rot: -1.5707963267948966 rad - pos: 0.5,-3.5 - parent: 1 - type: Transform -- uid: 51 - type: APCHighCapacity - components: - - pos: 0.5,1.5 - parent: 1 - type: Transform -- uid: 52 - type: SubstationBasic - components: - - pos: 1.5,1.5 - parent: 1 - type: Transform -- uid: 53 - type: SignEngineering - components: - - pos: 2.5,-1.5 - parent: 1 - type: Transform -- uid: 54 - type: VendingMachineEngivend - components: - - flags: SessionSpecific - type: MetaData - - pos: 1.5,-1.5 - parent: 1 - type: Transform - missingComponents: - - AccessReader -- uid: 55 - type: VendingMachineEngiDrobe - components: - - flags: SessionSpecific - type: MetaData - - pos: 1.5,-3.5 - parent: 1 - type: Transform - missingComponents: - - AccessReader -- uid: 56 - type: WallPlastitanium - components: - - pos: 2.5,3.5 - parent: 1 - type: Transform -- uid: 57 - type: ClothingOuterHardsuitSyndicate - components: - - pos: 3.2254841,2.5191092 - parent: 1 - type: Transform -- uid: 58 - type: ClothingOuterHardsuitSalvage - components: - - pos: 4.729425,2.5900652 - parent: 1 - type: Transform -- uid: 59 - type: WallPlastitanium - components: - - pos: -4.5,-20.5 - parent: 1 - type: Transform -- uid: 60 - type: ClothingOuterHardsuitSyndicate - components: - - pos: 3.7220688,2.4907274 - parent: 1 - type: Transform -- uid: 61 - type: ClothingHeadHelmetSyndicate - components: - - pos: 3.211296,2.5049186 - parent: 1 - type: Transform -- uid: 62 - type: ClothingOuterHardsuitEngineering - components: - - pos: 4.2895927,2.5758739 - parent: 1 - type: Transform -- uid: 63 - type: WallPlastitanium - components: - - pos: 5.5,3.5 - parent: 1 - type: Transform -- uid: 64 - type: WallPlastitanium - components: - - pos: 5.5,2.5 - parent: 1 - type: Transform -- uid: 65 - type: WallPlastitanium - components: - - pos: -4.5,-21.5 - parent: 1 - type: Transform -- uid: 66 - type: ClothingHeadHelmetSyndicate - components: - - pos: 3.7078805,2.4339628 - parent: 1 - type: Transform -- uid: 67 - type: WindoorSecure - components: - - rot: 3.141592653589793 rad - pos: 3.5,1.5 - parent: 1 - type: Transform -- uid: 68 - type: WindoorSecure - components: - - rot: 3.141592653589793 rad - pos: 4.5,1.5 - parent: 1 - type: Transform -- uid: 69 - type: WallPlastitanium - components: - - pos: 5.5,1.5 - parent: 1 - type: Transform -- uid: 70 - type: WallPlastitanium - components: - - pos: 6.5,1.5 - parent: 1 - type: Transform -- uid: 71 - type: WallPlastitanium - components: - - pos: 7.5,1.5 - parent: 1 - type: Transform -- uid: 72 - type: AirlockExternalGlass - components: - - pos: 5.5,-0.5 - parent: 1 - type: Transform -- uid: 73 - type: AirlockExternalGlass - components: - - pos: 8.5,-0.5 - parent: 1 - type: Transform -- uid: 74 - type: AirlockExternalGlass - components: - - pos: 8.5,0.5 - parent: 1 - type: Transform -- uid: 75 - type: AirlockExternalGlass - components: - - pos: 5.5,0.5 - parent: 1 - type: Transform -- uid: 76 - type: WallPlastitanium - components: - - pos: 8.5,1.5 - parent: 1 - type: Transform -- uid: 77 - type: SignGravity - components: - - pos: 2.5,1.5 - parent: 1 - type: Transform -- uid: 78 - type: WallPlastitanium - components: - - pos: 7.5,-1.5 - parent: 1 - type: Transform -- uid: 79 - type: WallPlastitanium - components: - - pos: 6.5,-1.5 - parent: 1 - type: Transform -- uid: 80 - type: WallPlastitanium - components: - - pos: 5.5,-1.5 - parent: 1 - type: Transform -- uid: 81 - type: WallPlastitanium - components: - - pos: 12.5,-3.5 - parent: 1 - type: Transform -- uid: 82 - type: WallPlastitanium - components: - - pos: 5.5,-2.5 - parent: 1 - type: Transform -- uid: 83 - type: WallPlastitanium - components: - - pos: 5.5,-3.5 - parent: 1 - type: Transform -- uid: 84 - type: WallPlastitanium - components: - - pos: 5.5,-4.5 - parent: 1 - type: Transform -- uid: 85 - type: WallPlastitanium - components: - - pos: 6.5,-4.5 - parent: 1 - type: Transform -- uid: 86 - type: WallPlastitanium - components: - - pos: 6.5,-3.5 - parent: 1 - type: Transform -- uid: 87 - type: WallPlastitanium - components: - - pos: 6.5,-2.5 - parent: 1 - type: Transform -- uid: 88 - type: WallPlastitanium - components: - - pos: 7.5,-2.5 - parent: 1 - type: Transform -- uid: 89 - type: WallPlastitanium - components: - - pos: 8.5,-2.5 - parent: 1 - type: Transform -- uid: 90 - type: WallPlastitanium - components: - - pos: 9.5,-2.5 - parent: 1 - type: Transform -- uid: 91 - type: WallPlastitanium - components: - - pos: 10.5,-2.5 - parent: 1 - type: Transform -- uid: 92 - type: WallPlastitanium - components: - - pos: 10.5,-3.5 - parent: 1 - type: Transform -- uid: 93 - type: WallPlastitanium - components: - - pos: 11.5,-3.5 - parent: 1 - type: Transform -- uid: 94 - type: WallPlastitanium - components: - - pos: 12.5,-4.5 - parent: 1 - type: Transform -- uid: 95 - type: WallPlastitanium - components: - - pos: 12.5,-5.5 - parent: 1 - type: Transform -- uid: 96 - type: WallPlastitanium - components: - - pos: 12.5,-6.5 - parent: 1 - type: Transform -- uid: 97 - type: WallPlastitanium - components: - - pos: 12.5,-7.5 - parent: 1 - type: Transform -- uid: 98 - type: WallPlastitanium - components: - - pos: 12.5,-8.5 - parent: 1 - type: Transform -- uid: 99 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 4.5,0.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor -- uid: 100 - type: WallPlastitanium - components: - - pos: 12.5,-9.5 - parent: 1 - type: Transform -- uid: 101 - type: WallPlastitanium - components: - - pos: 11.5,-9.5 - parent: 1 - type: Transform -- uid: 102 - type: WallPlastitanium - components: - - pos: 10.5,-9.5 - parent: 1 - type: Transform -- uid: 103 - type: WallPlastitanium - components: - - pos: 10.5,-10.5 - parent: 1 - type: Transform -- uid: 104 - type: WallPlastitanium - components: - - pos: 9.5,-10.5 - parent: 1 - type: Transform -- uid: 105 - type: WallPlastitanium - components: - - pos: 8.5,-10.5 - parent: 1 - type: Transform -- uid: 106 - type: WallPlastitanium - components: - - pos: 7.5,-10.5 - parent: 1 - type: Transform -- uid: 107 - type: WallPlastitanium - components: - - pos: 6.5,-10.5 - parent: 1 - type: Transform -- uid: 108 - type: WallPlastitanium - components: - - pos: 6.5,-9.5 - parent: 1 - type: Transform -- uid: 109 - type: WallPlastitanium - components: - - pos: 6.5,-8.5 - parent: 1 - type: Transform -- uid: 110 - type: WallPlastitanium - components: - - pos: 5.5,-10.5 - parent: 1 - type: Transform -- uid: 111 - type: WallPlastitanium - components: - - pos: 5.5,-9.5 - parent: 1 - type: Transform -- uid: 112 - type: WallPlastitanium - components: - - pos: 5.5,-8.5 - parent: 1 - type: Transform -- uid: 113 - type: WallPlastitanium - components: - - pos: 2.5,-3.5 - parent: 1 - type: Transform -- uid: 114 - type: WallPlastitanium - components: - - pos: 2.5,-4.5 - parent: 1 - type: Transform -- uid: 115 - type: AirlockGlass - components: - - pos: 2.5,-7.5 - parent: 1 - type: Transform -- uid: 116 - type: AirlockGlass - components: - - pos: 2.5,-6.5 - parent: 1 - type: Transform -- uid: 117 - type: AirlockGlass - components: - - pos: 2.5,-5.5 - parent: 1 - type: Transform -- uid: 118 - type: WallPlastitanium - components: - - pos: 2.5,-8.5 - parent: 1 - type: Transform -- uid: 119 - type: WallPlastitanium - components: - - pos: 2.5,-9.5 - parent: 1 - type: Transform -- uid: 120 - type: WallPlastitanium - components: - - pos: 2.5,-10.5 - parent: 1 - type: Transform -- uid: 121 - type: WallPlastitanium - components: - - pos: 2.5,-11.5 - parent: 1 - type: Transform -- uid: 122 - type: WallPlastitanium - components: - - pos: 2.5,-12.5 - parent: 1 - type: Transform -- uid: 123 - type: WallPlastitanium - components: - - pos: 2.5,-13.5 - parent: 1 - type: Transform -- uid: 124 - type: WallPlastitanium - components: - - pos: 2.5,-14.5 - parent: 1 - type: Transform -- uid: 125 - type: WallPlastitanium - components: - - pos: 2.5,-15.5 - parent: 1 - type: Transform -- uid: 126 - type: WallPlastitanium - components: - - pos: 2.5,-16.5 - parent: 1 - type: Transform -- uid: 127 - type: WallPlastitanium - components: - - pos: 1.5,-8.5 - parent: 1 - type: Transform -- uid: 128 - type: AirlockMaint - components: - - pos: 0.5,-16.5 - parent: 1 - type: Transform -- uid: 129 - type: WallPlastitanium - components: - - pos: -0.5,-16.5 - parent: 1 - type: Transform -- uid: 130 - type: WallPlastitanium - components: - - pos: -1.5,-16.5 - parent: 1 - type: Transform -- uid: 131 - type: WallPlastitanium - components: - - pos: -2.5,-16.5 - parent: 1 - type: Transform -- uid: 132 - type: WallPlastitanium - components: - - pos: -3.5,-16.5 - parent: 1 - type: Transform -- uid: 133 - type: WallPlastitanium - components: - - pos: -4.5,-16.5 - parent: 1 - type: Transform -- uid: 134 - type: WallPlastitanium - components: - - pos: -6.5,-8.5 - parent: 1 - type: Transform -- uid: 135 - type: WallPlastitanium - components: - - pos: 13.5,-18.5 - parent: 1 - type: Transform -- uid: 136 - type: WallPlastitanium - components: - - pos: -4.5,-19.5 - parent: 1 - type: Transform -- uid: 137 - type: WallPlastitanium - components: - - pos: -3.5,-19.5 - parent: 1 - type: Transform -- uid: 138 - type: WallPlastitanium - components: - - pos: -2.5,-19.5 - parent: 1 - type: Transform -- uid: 139 - type: WallPlastitanium - components: - - pos: -1.5,-19.5 - parent: 1 - type: Transform -- uid: 140 - type: WallPlastitanium - components: - - pos: -0.5,-19.5 - parent: 1 - type: Transform -- uid: 141 - type: SignSmoking - components: - - pos: -0.5,-19.5 - parent: 1 - type: Transform -- uid: 142 - type: WallPlastitanium - components: - - pos: 1.5,-19.5 - parent: 1 - type: Transform -- uid: 143 - type: WallPlastitanium - components: - - pos: 2.5,-19.5 - parent: 1 - type: Transform -- uid: 144 - type: WallPlastitanium - components: - - pos: 3.5,-19.5 - parent: 1 - type: Transform -- uid: 145 - type: EngineeringTechFab - components: - - pos: 3.5,-20.5 - parent: 1 - type: Transform -- uid: 146 - type: WallPlastitanium - components: - - pos: 5.5,-19.5 - parent: 1 - type: Transform -- uid: 147 - type: WallPlastitanium - components: - - pos: 6.5,-19.5 - parent: 1 - type: Transform -- uid: 148 - type: WallPlastitanium - components: - - pos: 7.5,-19.5 - parent: 1 - type: Transform -- uid: 149 - type: chem_master - components: - - pos: 9.5,-22.5 - parent: 1 - type: Transform -- uid: 150 - type: WallPlastitanium - components: - - pos: 9.5,-19.5 - parent: 1 - type: Transform -- uid: 151 - type: WallPlastitanium - components: - - pos: 10.5,-19.5 - parent: 1 - type: Transform -- uid: 152 - type: WallPlastitanium - components: - - pos: 11.5,-19.5 - parent: 1 - type: Transform -- uid: 153 - type: WallPlastitanium - components: - - pos: 12.5,-19.5 - parent: 1 - type: Transform -- uid: 154 - type: WallPlastitanium - components: - - pos: 13.5,-19.5 - parent: 1 - type: Transform -- uid: 155 - type: WallPlastitanium - components: - - pos: 13.5,-16.5 - parent: 1 - type: Transform -- uid: 156 - type: WallPlastitanium - components: - - pos: 12.5,-16.5 - parent: 1 - type: Transform -- uid: 157 - type: AirlockMaint - components: - - pos: 11.5,-16.5 - parent: 1 - type: Transform -- uid: 158 - type: OxygenCanister - components: - - pos: 6.5,-13.5 - parent: 1 - type: Transform -- uid: 159 - type: WallPlastitanium - components: - - pos: 9.5,-16.5 - parent: 1 - type: Transform -- uid: 160 - type: WallPlastitanium - components: - - pos: 8.5,-16.5 - parent: 1 - type: Transform -- uid: 161 - type: WallPlastitanium - components: - - pos: 6.5,-16.5 - parent: 1 - type: Transform -- uid: 162 - type: WallPlastitanium - components: - - pos: 9.5,-13.5 - parent: 1 - type: Transform -- uid: 163 - type: WallPlastitanium - components: - - pos: 5.5,-16.5 - parent: 1 - type: Transform -- uid: 164 - type: WallPlastitanium - components: - - pos: 5.5,-15.5 - parent: 1 - type: Transform -- uid: 165 - type: WallPlastitanium - components: - - pos: 5.5,-14.5 - parent: 1 - type: Transform -- uid: 166 - type: WallPlastitanium - components: - - pos: 5.5,-13.5 - parent: 1 - type: Transform -- uid: 167 - type: WallPlastitanium - components: - - pos: 5.5,-12.5 - parent: 1 - type: Transform -- uid: 168 - type: WallPlastitanium - components: - - pos: 5.5,-11.5 - parent: 1 - type: Transform -- uid: 169 - type: Catwalk - components: - - pos: -1.5,0.5 - parent: 1 - type: Transform -- uid: 170 - type: Catwalk - components: - - pos: -3.5,0.5 - parent: 1 - type: Transform -- uid: 171 - type: WallPlastitanium - components: - - pos: -4.5,-4.5 - parent: 1 - type: Transform -- uid: 172 - type: WallPlastitanium - components: - - pos: -3.5,-4.5 - parent: 1 - type: Transform -- uid: 173 - type: WallPlastitanium - components: - - pos: -2.5,-4.5 - parent: 1 - type: Transform -- uid: 174 - type: WallPlastitanium - components: - - pos: -1.5,-4.5 - parent: 1 - type: Transform -- uid: 175 - type: WallPlastitanium - components: - - pos: -0.5,-4.5 - parent: 1 - type: Transform -- uid: 176 - type: WallPlastitanium - components: - - pos: 0.5,-4.5 - parent: 1 - type: Transform -- uid: 177 - type: WallPlastitanium - components: - - pos: 1.5,-4.5 - parent: 1 - type: Transform -- uid: 178 - type: CableApcExtension - components: - - pos: -3.5,-0.5 - parent: 1 - type: Transform -- uid: 179 - type: CableHV - components: - - pos: -4.5,-1.5 - parent: 1 - type: Transform -- uid: 180 - type: CableHV - components: - - pos: -4.5,-2.5 - parent: 1 - type: Transform -- uid: 181 - type: CableHV - components: - - pos: -4.5,-3.5 - parent: 1 - type: Transform -- uid: 182 - type: CableHV - components: - - pos: -3.5,-3.5 - parent: 1 - type: Transform -- uid: 183 - type: CableHV - components: - - pos: -2.5,-3.5 - parent: 1 - type: Transform -- uid: 184 - type: CableHV - components: - - pos: -1.5,-3.5 - parent: 1 - type: Transform -- uid: 185 - type: CableHV - components: - - pos: -0.5,-3.5 - parent: 1 - type: Transform -- uid: 186 - type: CableHV - components: - - pos: 0.5,-3.5 - parent: 1 - type: Transform -- uid: 187 - type: CableHV - components: - - pos: 1.5,-3.5 - parent: 1 - type: Transform -- uid: 188 - type: CableHV - components: - - pos: 1.5,-2.5 - parent: 1 - type: Transform -- uid: 189 - type: CableHV - components: - - pos: 1.5,-1.5 - parent: 1 - type: Transform -- uid: 190 - type: CableHV - components: - - pos: 1.5,-0.5 - parent: 1 - type: Transform -- uid: 191 - type: CableHV - components: - - pos: 1.5,0.5 - parent: 1 - type: Transform -- uid: 192 - type: CableMV - components: - - pos: 1.5,0.5 - parent: 1 - type: Transform -- uid: 193 - type: CableMV - components: - - pos: 1.5,-0.5 - parent: 1 - type: Transform -- uid: 194 - type: CableMV - components: - - pos: 1.5,-1.5 - parent: 1 - type: Transform -- uid: 195 - type: CableMV - components: - - pos: 1.5,-2.5 - parent: 1 - type: Transform -- uid: 196 - type: CableMV - components: - - pos: 1.5,-3.5 - parent: 1 - type: Transform -- uid: 197 - type: CableMV - components: - - pos: 0.5,-3.5 - parent: 1 - type: Transform -- uid: 198 - type: CableMV - components: - - pos: -0.5,-3.5 - parent: 1 - type: Transform -- uid: 199 - type: CableMV - components: - - pos: -1.5,-3.5 - parent: 1 - type: Transform -- uid: 200 - type: CableMV - components: - - pos: -2.5,-3.5 - parent: 1 - type: Transform -- uid: 201 - type: CableMV - components: - - pos: -3.5,-3.5 - parent: 1 - type: Transform -- uid: 202 - type: CableMV - components: - - pos: -4.5,-3.5 - parent: 1 - type: Transform -- uid: 203 - type: CableMV - components: - - pos: -4.5,-2.5 - parent: 1 - type: Transform -- uid: 204 - type: CableMV - components: - - pos: -4.5,-1.5 - parent: 1 - type: Transform -- uid: 205 - type: CableApcExtension - components: - - pos: -2.5,-0.5 - parent: 1 - type: Transform -- uid: 206 - type: CableApcExtension - components: - - pos: 1.5,0.5 - parent: 1 - type: Transform -- uid: 207 - type: CableApcExtension - components: - - pos: 1.5,-0.5 - parent: 1 - type: Transform -- uid: 208 - type: CableApcExtension - components: - - pos: 1.5,-1.5 - parent: 1 - type: Transform -- uid: 209 - type: CableApcExtension - components: - - pos: 1.5,-2.5 - parent: 1 - type: Transform -- uid: 210 - type: CableApcExtension - components: - - pos: 1.5,-3.5 - parent: 1 - type: Transform -- uid: 211 - type: CableApcExtension - components: - - pos: -0.5,-3.5 - parent: 1 - type: Transform -- uid: 212 - type: CableApcExtension - components: - - pos: 0.5,-3.5 - parent: 1 - type: Transform -- uid: 213 - type: CableApcExtension - components: - - pos: -1.5,-3.5 - parent: 1 - type: Transform -- uid: 214 - type: CableApcExtension - components: - - pos: -2.5,-3.5 - parent: 1 - type: Transform -- uid: 215 - type: CableApcExtension - components: - - pos: -3.5,-3.5 - parent: 1 - type: Transform -- uid: 216 - type: CableApcExtension - components: - - pos: -4.5,-3.5 - parent: 1 - type: Transform -- uid: 217 - type: CableApcExtension - components: - - pos: -4.5,-2.5 - parent: 1 - type: Transform -- uid: 218 - type: CableApcExtension - components: - - pos: -4.5,-1.5 - parent: 1 - type: Transform -- uid: 219 - type: CableApcExtension - components: - - pos: -4.5,-0.5 - parent: 1 - type: Transform -- uid: 220 - type: GravityGenerator - components: - - pos: -3.5,-2.5 - parent: 1 - type: Transform -- uid: 221 - type: CableHV - components: - - pos: 3.5,0.5 - parent: 1 - type: Transform -- uid: 222 - type: AirlockGlass - components: - - pos: 5.5,-5.5 - parent: 1 - type: Transform -- uid: 223 - type: AirlockGlass - components: - - pos: 5.5,-6.5 - parent: 1 - type: Transform -- uid: 224 - type: AirlockGlass - components: - - pos: 5.5,-7.5 - parent: 1 - type: Transform -- uid: 225 - type: FirelockGlass - components: - - pos: 6.5,-5.5 - parent: 1 - type: Transform -- uid: 226 - type: FirelockGlass - components: - - pos: 6.5,-6.5 - parent: 1 - type: Transform -- uid: 227 - type: FirelockGlass - components: - - pos: 6.5,-7.5 - parent: 1 - type: Transform -- uid: 228 - type: FirelockGlass - components: - - pos: 2.5,0.5 - parent: 1 - type: Transform -- uid: 229 - type: FirelockGlass - components: - - pos: 2.5,-0.5 - parent: 1 - type: Transform -- uid: 230 - type: AtmosDeviceFanTiny - components: - - rot: 3.141592653589793 rad - pos: 8.5,-0.5 - parent: 1 - type: Transform -- uid: 231 - type: AtmosDeviceFanTiny - components: - - rot: 3.141592653589793 rad - pos: 8.5,0.5 - parent: 1 - type: Transform -- uid: 232 - type: WallPlastitanium - components: - - pos: 13.5,-15.5 - parent: 1 - type: Transform -- uid: 233 - type: WallPlastitanium - components: - - pos: 13.5,-14.5 - parent: 1 - type: Transform -- uid: 234 - type: WallPlastitanium - components: - - pos: 13.5,-13.5 - parent: 1 - type: Transform -- uid: 235 - type: WallPlastitanium - components: - - pos: 13.5,-12.5 - parent: 1 - type: Transform -- uid: 236 - type: WallPlastitanium - components: - - pos: 12.5,-12.5 - parent: 1 - type: Transform -- uid: 237 - type: WallPlastitanium - components: - - pos: 11.5,-12.5 - parent: 1 - type: Transform -- uid: 238 - type: WallPlastitanium - components: - - pos: 10.5,-12.5 - parent: 1 - type: Transform -- uid: 239 - type: WallPlastitanium - components: - - pos: 9.5,-12.5 - parent: 1 - type: Transform -- uid: 240 - type: WallPlastitanium - components: - - pos: 8.5,-12.5 - parent: 1 - type: Transform -- uid: 241 - type: WallPlastitanium - components: - - pos: 7.5,-12.5 - parent: 1 - type: Transform -- uid: 242 - type: WallPlastitanium - components: - - pos: 6.5,-12.5 - parent: 1 - type: Transform -- uid: 243 - type: WallPlastitanium - components: - - pos: -4.5,-15.5 - parent: 1 - type: Transform -- uid: 244 - type: WallPlastitanium - components: - - pos: 9.5,-14.5 - parent: 1 - type: Transform -- uid: 245 - type: WallPlastitanium - components: - - pos: 9.5,-15.5 - parent: 1 - type: Transform -- uid: 246 - type: OxygenCanister - components: - - pos: 6.5,-14.5 - parent: 1 - type: Transform -- uid: 247 - type: SignCanisters - components: - - pos: 6.5,-16.5 - parent: 1 - type: Transform -- uid: 248 - type: NitrogenCanister - components: - - pos: 7.5,-13.5 - parent: 1 - type: Transform -- uid: 249 - type: NitrogenCanister - components: - - pos: 7.5,-14.5 - parent: 1 - type: Transform -- uid: 250 - type: NitrousOxideCanister - components: - - pos: 8.5,-13.5 - parent: 1 - type: Transform -- uid: 251 - type: PlasmaCanister - components: - - pos: 8.5,-14.5 - parent: 1 - type: Transform -- uid: 252 - type: ClosetEmergencyFilledRandom - components: - - pos: 10.5,-13.5 - parent: 1 - type: Transform -- uid: 253 - type: ClosetEmergencyFilledRandom - components: - - pos: 10.5,-14.5 - parent: 1 - type: Transform -- uid: 254 - type: ClosetFireFilled - components: - - pos: 11.5,-13.5 - parent: 1 - type: Transform -- uid: 255 - type: ClosetFireFilled - components: - - pos: 11.5,-14.5 - parent: 1 - type: Transform -- uid: 256 - type: ClosetRadiationSuitFilled - components: - - pos: 12.5,-13.5 - parent: 1 - type: Transform -- uid: 257 - type: ClosetL3Filled - components: - - pos: 12.5,-14.5 - parent: 1 - type: Transform -- uid: 258 - type: AirlockMaint - components: - - pos: 7.5,-16.5 - parent: 1 - type: Transform -- uid: 259 - type: SignToolStorage - components: - - pos: 3.5,-19.5 - parent: 1 - type: Transform -- uid: 260 - type: WallPlastitanium - components: - - pos: 10.5,-16.5 - parent: 1 - type: Transform -- uid: 261 - type: SignAtmos - components: - - pos: 12.5,-16.5 - parent: 1 - type: Transform -- uid: 262 - type: WallPlastitanium - components: - - pos: -4.5,-14.5 - parent: 1 - type: Transform -- uid: 263 - type: WallPlastitanium - components: - - pos: -4.5,-13.5 - parent: 1 - type: Transform -- uid: 264 - type: WallPlastitanium - components: - - pos: -4.5,-12.5 - parent: 1 - type: Transform -- uid: 265 - type: WallPlastitanium - components: - - pos: -4.5,-11.5 - parent: 1 - type: Transform -- uid: 266 - type: WallPlastitanium - components: - - pos: -3.5,-11.5 - parent: 1 - type: Transform -- uid: 267 - type: WallPlastitanium - components: - - pos: -2.5,-11.5 - parent: 1 - type: Transform -- uid: 268 - type: WallPlastitanium - components: - - pos: -1.5,-11.5 - parent: 1 - type: Transform -- uid: 269 - type: WallPlastitanium - components: - - pos: -0.5,-11.5 - parent: 1 - type: Transform -- uid: 270 - type: WallPlastitanium - components: - - pos: 0.5,-11.5 - parent: 1 - type: Transform -- uid: 271 - type: WallPlastitanium - components: - - pos: 1.5,-11.5 - parent: 1 - type: Transform -- uid: 272 - type: WallPlastitanium - components: - - pos: 1.5,-16.5 - parent: 1 - type: Transform -- uid: 273 - type: SignCargo - components: - - pos: 1.5,-16.5 - parent: 1 - type: Transform -- uid: 274 - type: CrateMaterialWood - components: - - pos: -3.5,-13.5 - parent: 1 - type: Transform -- uid: 275 - type: CrateMaterialPlastic - components: - - pos: -0.5,-12.5 - parent: 1 - type: Transform -- uid: 276 - type: CrateMaterialPlasteel - components: - - pos: 0.5,-12.5 - parent: 1 - type: Transform -- uid: 277 - type: CrateMaterialSteel - components: - - pos: -2.5,-12.5 - parent: 1 - type: Transform -- uid: 278 - type: CrateMaterialGlass - components: - - pos: 1.5,-12.5 - parent: 1 - type: Transform -- uid: 279 - type: CrateMaterialPlasma - components: - - pos: -1.5,-12.5 - parent: 1 - type: Transform -- uid: 280 - type: CrateMaterialSteel - components: - - pos: -2.5,-13.5 - parent: 1 - type: Transform -- uid: 281 - type: CrateChemistrySupplies - components: - - pos: 11.5,-20.5 - parent: 1 - type: Transform -- uid: 282 - type: CrateMaterialWood - components: - - pos: -3.5,-12.5 - parent: 1 - type: Transform -- uid: 283 - type: CrateMaterialSteel - components: - - pos: -2.5,-14.5 - parent: 1 - type: Transform -- uid: 284 - type: CrateMaterialPlasteel - components: - - pos: 0.5,-14.5 - parent: 1 - type: Transform -- uid: 285 - type: CrateMaterialGlass - components: - - pos: 1.5,-14.5 - parent: 1 - type: Transform -- uid: 286 - type: WallPlastitanium - components: - - pos: -4.5,-17.5 - parent: 1 - type: Transform -- uid: 287 - type: WallPlastitanium - components: - - pos: -5.5,-8.5 - parent: 1 - type: Transform -- uid: 288 - type: CrateMaterialGlass - components: - - pos: 1.5,-13.5 - parent: 1 - type: Transform -- uid: 289 - type: CrateMaterialPlasteel - components: - - pos: 0.5,-13.5 - parent: 1 - type: Transform -- uid: 290 - type: CrateMaterialPlastic - components: - - pos: -0.5,-13.5 - parent: 1 - type: Transform -- uid: 291 - type: CrateMaterialPlasma - components: - - pos: -1.5,-13.5 - parent: 1 - type: Transform -- uid: 292 - type: WallPlastitanium - components: - - pos: -9.5,-4.5 - parent: 1 - type: Transform -- uid: 293 - type: WallPlastitanium - components: - - pos: -12.5,-10.5 - parent: 1 - type: Transform -- uid: 294 - type: CrateMaterialWood - components: - - pos: -3.5,-14.5 - parent: 1 - type: Transform -- uid: 295 - type: WallPlastitanium - components: - - pos: -0.5,-8.5 - parent: 1 - type: Transform -- uid: 296 - type: WallPlastitanium - components: - - pos: -10.5,-4.5 - parent: 1 - type: Transform -- uid: 297 - type: WallPlastitanium - components: - - pos: -4.5,-8.5 - parent: 1 - type: Transform -- uid: 298 - type: WallPlastitanium - components: - - pos: -3.5,-8.5 - parent: 1 - type: Transform -- uid: 299 - type: ChairOfficeDark - components: - - pos: 11.5,-21.5 - parent: 1 - type: Transform -- uid: 300 - type: WallPlastitanium - components: - - pos: -6.5,-4.5 - parent: 1 - type: Transform -- uid: 301 - type: WallPlastitanium - components: - - pos: -7.5,-4.5 - parent: 1 - type: Transform -- uid: 302 - type: Airlock - components: - - pos: -8.5,-4.5 - parent: 1 - type: Transform -- uid: 303 - type: WallPlastitanium - components: - - pos: -11.5,-4.5 - parent: 1 - type: Transform -- uid: 304 - type: WallPlastitanium - components: - - pos: 0.5,-8.5 - parent: 1 - type: Transform -- uid: 305 - type: WallPlastitanium - components: - - pos: -12.5,-11.5 - parent: 1 - type: Transform -- uid: 306 - type: WallPlastitanium - components: - - pos: -7.5,-8.5 - parent: 1 - type: Transform -- uid: 307 - type: BoxLatexGloves - components: - - pos: 11.91406,-22.389015 - parent: 1 - type: Transform -- uid: 308 - type: CrateMaterialPlasma - components: - - pos: -1.5,-14.5 - parent: 1 - type: Transform -- uid: 309 - type: CrateMaterialPlastic - components: - - pos: -0.5,-14.5 - parent: 1 - type: Transform -- uid: 310 - type: WallPlastitanium - components: - - pos: 13.5,-17.5 - parent: 1 - type: Transform -- uid: 311 - type: WallPlastitanium - components: - - pos: -4.5,-18.5 - parent: 1 - type: Transform -- uid: 312 - type: WallPlastitanium - components: - - pos: 7.5,-20.5 - parent: 1 - type: Transform -- uid: 313 - type: WallPlastitanium - components: - - pos: 7.5,-21.5 - parent: 1 - type: Transform -- uid: 314 - type: WallPlastitanium - components: - - pos: 7.5,-22.5 - parent: 1 - type: Transform -- uid: 315 - type: WallPlastitanium - components: - - pos: 7.5,-23.5 - parent: 1 - type: Transform -- uid: 316 - type: WallPlastitanium - components: - - pos: 8.5,-23.5 - parent: 1 - type: Transform -- uid: 317 - type: WallPlastitanium - components: - - pos: 9.5,-23.5 - parent: 1 - type: Transform -- uid: 318 - type: WallPlastitanium - components: - - pos: 10.5,-23.5 - parent: 1 - type: Transform -- uid: 319 - type: WallPlastitanium - components: - - pos: 11.5,-23.5 - parent: 1 - type: Transform -- uid: 320 - type: WallPlastitanium - components: - - pos: 12.5,-23.5 - parent: 1 - type: Transform -- uid: 321 - type: WallPlastitanium - components: - - pos: 13.5,-23.5 - parent: 1 - type: Transform -- uid: 322 - type: WallPlastitanium - components: - - pos: 13.5,-22.5 - parent: 1 - type: Transform -- uid: 323 - type: WallPlastitanium - components: - - pos: 13.5,-21.5 - parent: 1 - type: Transform -- uid: 324 - type: WallPlastitanium - components: - - pos: 13.5,-20.5 - parent: 1 - type: Transform -- uid: 325 - type: chem_dispenser - components: - - pos: 8.5,-22.5 - parent: 1 - type: Transform -- uid: 326 - type: LockerMedicineFilled - components: - - pos: 12.5,-20.5 - parent: 1 - type: Transform - missingComponents: - - AccessReader -- uid: 327 - type: TableReinforced - components: - - pos: 10.5,-22.5 - parent: 1 - type: Transform -- uid: 328 - type: TableReinforced - components: - - pos: 11.5,-22.5 - parent: 1 - type: Transform -- uid: 329 - type: TableReinforced - components: - - pos: 12.5,-22.5 - parent: 1 - type: Transform -- uid: 330 - type: TableReinforced - components: - - pos: 12.5,-21.5 - parent: 1 - type: Transform -- uid: 331 - type: ChemicalMedipen - components: - - pos: 10.484516,-22.194567 - parent: 1 - type: Transform -- uid: 332 - type: ChemicalMedipen - components: - - pos: 10.498704,-22.393242 - parent: 1 - type: Transform -- uid: 333 - type: ChemicalMedipen - components: - - pos: 10.512893,-22.60611 - parent: 1 - type: Transform -- uid: 334 - type: SignChem - components: - - pos: 9.5,-19.5 - parent: 1 - type: Transform -- uid: 335 - type: CableHV - components: - - pos: 4.5,-19.5 - parent: 1 - type: Transform -- uid: 336 - type: HandLabeler - components: - - rot: -1.5707963267948966 rad - pos: 11.146079,-22.483614 - parent: 1 - type: Transform -- uid: 337 - type: BoxPillCanister - components: - - pos: 12.141069,-22.658646 - parent: 1 - type: Transform -- uid: 338 - type: BoxBottle - components: - - pos: 11.658673,-22.658646 - parent: 1 - type: Transform -- uid: 339 - type: MedkitFilled - components: - - pos: 12.663751,-22.58295 - parent: 1 - type: Transform -- uid: 340 - type: MedkitBurnFilled - components: - - pos: 12.649563,-22.143026 - parent: 1 - type: Transform -- uid: 341 - type: MedkitBruteFilled - components: - - pos: 12.606998,-21.759867 - parent: 1 - type: Transform -- uid: 342 - type: MedkitAdvancedFilled - components: - - pos: 12.606998,-21.390898 - parent: 1 - type: Transform -- uid: 343 - type: CableHV - components: - - pos: 8.5,-3.5 - parent: 1 - type: Transform -- uid: 344 - type: Airlock - components: - - pos: -8.5,-8.5 - parent: 1 - type: Transform -- uid: 345 - type: WallPlastitanium - components: - - pos: -9.5,-8.5 - parent: 1 - type: Transform -- uid: 346 - type: WallPlastitanium - components: - - pos: -10.5,-8.5 - parent: 1 - type: Transform -- uid: 347 - type: WallPlastitanium - components: - - pos: -11.5,-8.5 - parent: 1 - type: Transform -- uid: 348 - type: FirelockGlass - components: - - pos: 1.5,-5.5 - parent: 1 - type: Transform -- uid: 349 - type: FirelockGlass - components: - - pos: 1.5,-6.5 - parent: 1 - type: Transform -- uid: 350 - type: FirelockGlass - components: - - pos: 1.5,-7.5 - parent: 1 - type: Transform -- uid: 351 - type: WallPlastitanium - components: - - pos: -5.5,-11.5 - parent: 1 - type: Transform -- uid: 352 - type: WallPlastitanium - components: - - pos: -6.5,-11.5 - parent: 1 - type: Transform -- uid: 353 - type: WallPlastitanium - components: - - pos: -7.5,-11.5 - parent: 1 - type: Transform -- uid: 354 - type: WallPlastitanium - components: - - pos: -8.5,-11.5 - parent: 1 - type: Transform -- uid: 355 - type: WallPlastitanium - components: - - pos: -9.5,-11.5 - parent: 1 - type: Transform -- uid: 356 - type: WallPlastitanium - components: - - pos: -10.5,-11.5 - parent: 1 - type: Transform -- uid: 357 - type: WallPlastitanium - components: - - pos: -11.5,-11.5 - parent: 1 - type: Transform -- uid: 358 - type: ReinforcedWindow - components: - - pos: -6.5,-10.5 - parent: 1 - type: Transform -- uid: 359 - type: ReinforcedWindow - components: - - pos: -6.5,-9.5 - parent: 1 - type: Transform -- uid: 360 - type: ReinforcedWindow - components: - - pos: -3.5,-10.5 - parent: 1 - type: Transform -- uid: 361 - type: ReinforcedWindow - components: - - pos: -3.5,-9.5 - parent: 1 - type: Transform -- uid: 362 - type: WallPlastitanium - components: - - pos: -12.5,-9.5 - parent: 1 - type: Transform -- uid: 363 - type: WallPlastitanium - components: - - pos: -12.5,-8.5 - parent: 1 - type: Transform -- uid: 364 - type: WallPlastitanium - components: - - pos: -12.5,-4.5 - parent: 1 - type: Transform -- uid: 365 - type: SleeperSyndicate - components: - - rot: 1.5707963267948966 rad - pos: -11.5,-10.5 - parent: 1 - type: Transform - - containers: - entity_storage: !type:Container - ents: [] - type: ContainerContainer -- uid: 366 - type: SleeperSyndicate - components: - - rot: -1.5707963267948966 rad - pos: 1.5,-9.5 - parent: 1 - type: Transform - - containers: - entity_storage: !type:Container - ents: [] - type: ContainerContainer -- uid: 367 - type: FloraRockSolid02 - components: - - pos: -5.2956204,-10.04974 - parent: 1 - type: Transform -- uid: 368 - type: WallPlastitanium - components: - - pos: -2.5,-8.5 - parent: 1 - type: Transform -- uid: 369 - type: Airlock - components: - - pos: -1.5,-8.5 - parent: 1 - type: Transform -- uid: 370 - type: AsteroidRock - components: - - pos: 1.5,3.5 - parent: 1 - type: Transform -- uid: 371 - type: AsteroidRock - components: - - pos: 1.5,4.5 - parent: 1 - type: Transform -- uid: 372 - type: AsteroidRock - components: - - pos: 0.5,3.5 - parent: 1 - type: Transform -- uid: 373 - type: WallPlastitanium - components: - - pos: -11.5,-3.5 - parent: 1 - type: Transform -- uid: 374 - type: WallPlastitanium - components: - - pos: -11.5,-2.5 - parent: 1 - type: Transform -- uid: 375 - type: WallPlastitanium - components: - - pos: -11.5,-1.5 - parent: 1 - type: Transform -- uid: 376 - type: WallPlastitanium - components: - - pos: -11.5,-0.5 - parent: 1 - type: Transform -- uid: 377 - type: WallPlastitanium - components: - - pos: -10.5,-0.5 - parent: 1 - type: Transform -- uid: 378 - type: WallPlastitanium - components: - - pos: -9.5,-0.5 - parent: 1 - type: Transform -- uid: 379 - type: WallPlastitanium - components: - - pos: -8.5,-0.5 - parent: 1 - type: Transform -- uid: 380 - type: WallPlastitanium - components: - - pos: -7.5,-0.5 - parent: 1 - type: Transform -- uid: 381 - type: WallPlastitanium - components: - - pos: -6.5,-0.5 - parent: 1 - type: Transform -- uid: 382 - type: GeneratorRTG - components: - - pos: -5.5,-1.5 - parent: 1 - type: Transform -- uid: 383 - type: GeneratorRTG - components: - - pos: -5.5,-2.5 - parent: 1 - type: Transform -- uid: 384 - type: GeneratorRTG - components: - - pos: -5.5,-3.5 - parent: 1 - type: Transform -- uid: 385 - type: Dresser - components: - - pos: -10.5,-1.5 - parent: 1 - type: Transform -- uid: 386 - type: TableWood - components: - - pos: -11.5,-9.5 - parent: 1 - type: Transform -- uid: 387 - type: TableWood - components: - - pos: -10.5,-9.5 - parent: 1 - type: Transform -- uid: 388 - type: Bookshelf - components: - - pos: -9.5,-3.5 - parent: 1 - type: Transform -- uid: 389 - type: Bookshelf - components: - - pos: -10.5,-3.5 - parent: 1 - type: Transform -- uid: 390 - type: ComfyChair - components: - - rot: -1.5707963267948966 rad - pos: -2.5,-9.5 - parent: 1 - type: Transform -- uid: 391 - type: Bookshelf - components: - - pos: 0.5,-10.5 - parent: 1 - type: Transform -- uid: 392 - type: Bookshelf - components: - - pos: 1.5,-10.5 - parent: 1 - type: Transform -- uid: 393 - type: ComfyChair - components: - - rot: 1.5707963267948966 rad - pos: -7.5,-10.5 - parent: 1 - type: Transform -- uid: 394 - type: Rack - components: - - pos: 3.5,2.5 - parent: 1 - type: Transform -- uid: 395 - type: Rack - components: - - pos: 4.5,2.5 - parent: 1 - type: Transform -- uid: 396 - type: WallPlastitanium - components: - - pos: 3.5,3.5 - parent: 1 - type: Transform -- uid: 397 - type: WallPlastitanium - components: - - pos: 4.5,3.5 - parent: 1 - type: Transform -- uid: 398 - type: WallPlastitanium - components: - - pos: -4.5,-22.5 - parent: 1 - type: Transform -- uid: 399 - type: WallPlastitanium - components: - - pos: -4.5,-23.5 - parent: 1 - type: Transform -- uid: 400 - type: WallPlastitanium - components: - - pos: -3.5,-23.5 - parent: 1 - type: Transform -- uid: 401 - type: WallPlastitanium - components: - - pos: -2.5,-23.5 - parent: 1 - type: Transform -- uid: 402 - type: WallPlastitanium - components: - - pos: -1.5,-23.5 - parent: 1 - type: Transform -- uid: 403 - type: WallPlastitanium - components: - - pos: -0.5,-23.5 - parent: 1 - type: Transform -- uid: 404 - type: WallPlastitanium - components: - - pos: 0.5,-23.5 - parent: 1 - type: Transform -- uid: 405 - type: WallPlastitanium - components: - - pos: 1.5,-23.5 - parent: 1 - type: Transform -- uid: 406 - type: WallPlastitanium - components: - - pos: 2.5,-23.5 - parent: 1 - type: Transform -- uid: 407 - type: WallPlastitanium - components: - - pos: 2.5,-22.5 - parent: 1 - type: Transform -- uid: 408 - type: WallPlastitanium - components: - - pos: 2.5,-21.5 - parent: 1 - type: Transform -- uid: 409 - type: WallPlastitanium - components: - - pos: 2.5,-20.5 - parent: 1 - type: Transform -- uid: 410 - type: AirlockScience - components: - - pos: 4.5,-19.5 - parent: 1 - type: Transform -- uid: 411 - type: Airlock - components: - - pos: 0.5,-19.5 - parent: 1 - type: Transform -- uid: 412 - type: SignCanisters - components: - - pos: 8.5,-16.5 - parent: 1 - type: Transform -- uid: 413 - type: JanitorialTrolley - components: - - rot: 1.5707963267948966 rad - pos: -3.5,-22.5 - parent: 1 - type: Transform -- uid: 414 - type: ClosetL3JanitorFilled - components: - - pos: -2.5,-20.5 - parent: 1 - type: Transform -- uid: 415 - type: ClosetJanitorFilled - components: - - pos: -1.5,-20.5 - parent: 1 - type: Transform -- uid: 416 - type: JanitorialTrolley - components: - - rot: 1.5707963267948966 rad - pos: -2.5,-22.5 - parent: 1 - type: Transform -- uid: 417 - type: VendingMachineJaniDrobe - components: - - flags: SessionSpecific - type: MetaData - - pos: -3.5,-20.5 - parent: 1 - type: Transform - missingComponents: - - AccessReader -- uid: 418 - type: VehicleKeyPussyWagon - components: - - pos: 0.5,-22.5 - parent: 1 - type: Transform -- uid: 419 - type: SpawnVehiclePussywagon - components: - - pos: -0.5,-22.5 - parent: 1 - type: Transform -- uid: 420 - type: Rack - components: - - pos: 0.5,-22.5 - parent: 1 - type: Transform -- uid: 421 - type: TableReinforced - components: - - pos: 1.5,-21.5 - parent: 1 - type: Transform -- uid: 422 - type: TableReinforced - components: - - pos: 1.5,-20.5 - parent: 1 - type: Transform -- uid: 423 - type: TableReinforced - components: - - pos: 1.5,-22.5 - parent: 1 - type: Transform -- uid: 424 - type: MopItem - components: - - pos: 1.5882571,-22.558651 - parent: 1 - type: Transform -- uid: 425 - type: MopItem - components: - - rot: 3.141592653589793 rad - pos: 1.5173165,-22.345783 - parent: 1 - type: Transform -- uid: 426 - type: RandomSoap - components: - - pos: 1.5,-22.5 - parent: 1 - type: Transform -- uid: 427 - type: SprayBottleWater - components: - - pos: 1.2477419,-21.721376 - parent: 1 - type: Transform -- uid: 428 - type: SprayBottleWater - components: - - pos: 1.5882571,-21.678802 - parent: 1 - type: Transform -- uid: 429 - type: WeedSpray - components: - - rot: -1.5707963267948966 rad - pos: 1.5456927,-20.784763 - parent: 1 - type: Transform -- uid: 430 - type: WeedSpray - components: - - rot: 1.5707963267948966 rad - pos: 1.4747521,-20.557705 - parent: 1 - type: Transform -- uid: 431 - type: PestSpray - components: - - rot: -1.5707963267948966 rad - pos: 1.6591978,-21.281452 - parent: 1 - type: Transform -- uid: 432 - type: PestSpray - components: - - rot: 1.5707963267948966 rad - pos: 1.5173165,-21.082775 - parent: 1 - type: Transform -- uid: 433 - type: FloorDrain - components: - - pos: -2.5,-21.5 - parent: 1 - type: Transform - - fixtures: [] - type: Fixtures -- uid: 434 - type: ComputerIFFSyndicate - components: - - rot: -1.5707963267948966 rad - pos: 11.5,-5.5 - parent: 1 - type: Transform -- uid: 435 - type: FloorDrain - components: - - pos: 0.5,-21.5 - parent: 1 - type: Transform - - fixtures: [] - type: Fixtures -- uid: 436 - type: ComputerBroken - components: - - pos: 10.5,-4.5 - parent: 1 - type: Transform -- uid: 437 - type: ComputerRadar - components: - - pos: 9.5,-3.5 - parent: 1 - type: Transform -- uid: 438 - type: ComputerPowerMonitoring - components: - - pos: 7.5,-3.5 - parent: 1 - type: Transform -- uid: 439 - type: SyndicateComputerComms - components: - - rot: -1.5707963267948966 rad - pos: 11.5,-7.5 - parent: 1 - type: Transform -- uid: 440 - type: ComputerShuttleSyndie - components: - - rot: -1.5707963267948966 rad - pos: 11.5,-6.5 - parent: 1 - type: Transform -- uid: 441 - type: ComputerSurveillanceWirelessCameraMonitor - components: - - rot: 3.141592653589793 rad - pos: 9.5,-9.5 - parent: 1 - type: Transform -- uid: 442 - type: TableReinforced - components: - - pos: 11.5,-8.5 - parent: 1 - type: Transform -- uid: 443 - type: TableReinforced - components: - - pos: 10.5,-8.5 - parent: 1 - type: Transform -- uid: 444 - type: TableReinforced - components: - - pos: 11.5,-4.5 - parent: 1 - type: Transform -- uid: 445 - type: ComputerCrewMonitoring - components: - - rot: 3.141592653589793 rad - pos: 8.5,-9.5 - parent: 1 - type: Transform -- uid: 446 - type: ComputerBroken - components: - - pos: 8.5,-3.5 - parent: 1 - type: Transform -- uid: 447 - type: ComputerFrame - components: - - rot: 3.141592653589793 rad - pos: 7.5,-9.5 - parent: 1 - type: Transform -- uid: 448 - type: ChairOfficeDark - components: - - rot: 3.141592653589793 rad - pos: 8.5,-4.5 - parent: 1 - type: Transform -- uid: 449 - type: TableReinforcedGlass - components: - - pos: -7.5,-9.5 - parent: 1 - type: Transform -- uid: 450 - type: ChairOfficeDark - components: - - pos: 8.5,-8.5 - parent: 1 - type: Transform -- uid: 451 - type: ChairOfficeDark - components: - - rot: 1.5707963267948966 rad - pos: 10.5,-7.5 - parent: 1 - type: Transform -- uid: 452 - type: TableReinforcedGlass - components: - - pos: -2.5,-10.5 - parent: 1 - type: Transform -- uid: 453 - type: TableReinforcedGlass - components: - - pos: -9.5,-1.5 - parent: 1 - type: Transform -- uid: 454 - type: TableReinforcedGlass - components: - - pos: -8.5,-1.5 - parent: 1 - type: Transform -- uid: 455 - type: ClothingHeadsetAltSyndicate - components: - - pos: -8.527191,-1.4141216 - parent: 1 - type: Transform -- uid: 456 - type: ClothingHeadsetAltSyndicate - components: - - pos: -7.3212013,-9.374667 - parent: 1 - type: Transform -- uid: 457 - type: ClothingHeadsetAltSyndicate - components: - - pos: -2.3411698,-10.410619 - parent: 1 - type: Transform -- uid: 458 - type: ClothingMaskGasVoiceMasker - components: - - pos: -7.5482116,-9.431432 - parent: 1 - type: Transform -- uid: 459 - type: ClothingMaskGasVoiceMasker - components: - - pos: -2.5256157,-10.495765 - parent: 1 - type: Transform -- uid: 460 - type: ClothingMaskGasVoiceMasker - components: - - pos: -8.743822,-1.4572027 - parent: 1 - type: Transform -- uid: 461 - type: SpawnPointGhostSyndicateCommsAgent - components: - - pos: -11.5,-10.5 - parent: 1 - type: Transform - - type: Followed -- uid: 462 - type: SpawnPointGhostSyndicateCommsAgent - components: - - pos: 1.5,-9.5 - parent: 1 - type: Transform - - type: Followed -- uid: 463 - type: WallPlastitanium - components: - - pos: -4.5,1.5 - parent: 1 - type: Transform -- uid: 464 - type: CableHV - components: - - pos: 2.5,0.5 - parent: 1 - type: Transform -- uid: 465 - type: CableHV - components: - - pos: 3.5,-0.5 - parent: 1 - type: Transform -- uid: 466 - type: CableHV - components: - - pos: 3.5,-1.5 - parent: 1 - type: Transform -- uid: 467 - type: CableHV - components: - - pos: 3.5,1.5 - parent: 1 - type: Transform -- uid: 468 - type: CableHV - components: - - pos: 3.5,-2.5 - parent: 1 - type: Transform -- uid: 469 - type: CableHV - components: - - pos: 4.5,-0.5 - parent: 1 - type: Transform -- uid: 470 - type: CableHV - components: - - pos: 5.5,-0.5 - parent: 1 - type: Transform -- uid: 471 - type: CableHV - components: - - pos: 6.5,-0.5 - parent: 1 - type: Transform -- uid: 472 - type: CableHV - components: - - pos: 7.5,-0.5 - parent: 1 - type: Transform -- uid: 473 - type: CableHV - components: - - pos: 3.5,-3.5 - parent: 1 - type: Transform -- uid: 474 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 6.5,-5.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor -- uid: 475 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: 0.5,-0.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor -- uid: 476 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 7.5,-0.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor -- uid: 477 - type: CableMV - components: - - pos: 3.5,-5.5 - parent: 1 - type: Transform -- uid: 478 - type: GasPipeBend - components: - - pos: 7.5,-7.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor -- uid: 479 - type: CableHV - components: - - pos: 6.5,-6.5 - parent: 1 - type: Transform -- uid: 480 - type: CableHV - components: - - pos: 7.5,-6.5 - parent: 1 - type: Transform -- uid: 481 - type: CableHV - components: - - pos: 8.5,-6.5 - parent: 1 - type: Transform -- uid: 482 - type: CableHV - components: - - pos: 9.5,-6.5 - parent: 1 - type: Transform -- uid: 483 - type: CableHV - components: - - pos: 10.5,-6.5 - parent: 1 - type: Transform -- uid: 484 - type: CableHV - components: - - pos: 8.5,-5.5 - parent: 1 - type: Transform -- uid: 485 - type: CableHV - components: - - pos: 8.5,-4.5 - parent: 1 - type: Transform -- uid: 486 - type: CableHV - components: - - pos: 8.5,-7.5 - parent: 1 - type: Transform -- uid: 487 - type: CableHV - components: - - pos: 8.5,-8.5 - parent: 1 - type: Transform -- uid: 488 - type: GasPipeStraight - components: - - pos: 4.5,-5.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor -- uid: 489 - type: CableHV - components: - - pos: 1.5,-6.5 - parent: 1 - type: Transform -- uid: 490 - type: CableHV - components: - - pos: 0.5,-6.5 - parent: 1 - type: Transform -- uid: 491 - type: CableHV - components: - - pos: -0.5,-6.5 - parent: 1 - type: Transform -- uid: 492 - type: CableHV - components: - - pos: -1.5,-6.5 - parent: 1 - type: Transform -- uid: 493 - type: CableHV - components: - - pos: -2.5,-6.5 - parent: 1 - type: Transform -- uid: 494 - type: CableHV - components: - - pos: -3.5,-6.5 - parent: 1 - type: Transform -- uid: 495 - type: CableHV - components: - - pos: -4.5,-6.5 - parent: 1 - type: Transform -- uid: 496 - type: CableHV - components: - - pos: -5.5,-6.5 - parent: 1 - type: Transform -- uid: 497 - type: CableHV - components: - - pos: -6.5,-6.5 - parent: 1 - type: Transform -- uid: 498 - type: CableHV - components: - - pos: -7.5,-6.5 - parent: 1 - type: Transform -- uid: 499 - type: CableHV - components: - - pos: -8.5,-6.5 - parent: 1 - type: Transform -- uid: 500 - type: CableHV - components: - - pos: -9.5,-6.5 - parent: 1 - type: Transform -- uid: 501 - type: CableHV - components: - - pos: -10.5,-6.5 - parent: 1 - type: Transform -- uid: 502 - type: CableHV - components: - - pos: -11.5,-6.5 - parent: 1 - type: Transform -- uid: 503 - type: CableHV - components: - - pos: -8.5,-7.5 - parent: 1 - type: Transform -- uid: 504 - type: CableHV - components: - - pos: -8.5,-8.5 - parent: 1 - type: Transform -- uid: 505 - type: CableHV - components: - - pos: -8.5,-9.5 - parent: 1 - type: Transform -- uid: 506 - type: CableHV - components: - - pos: -9.5,-9.5 - parent: 1 - type: Transform -- uid: 507 - type: CableHV - components: - - pos: -10.5,-9.5 - parent: 1 - type: Transform -- uid: 508 - type: CableHV - components: - - pos: -8.5,-5.5 - parent: 1 - type: Transform -- uid: 509 - type: CableHV - components: - - pos: -8.5,-4.5 - parent: 1 - type: Transform -- uid: 510 - type: CableHV - components: - - pos: -8.5,-3.5 - parent: 1 - type: Transform -- uid: 511 - type: CableHV - components: - - pos: -8.5,-2.5 - parent: 1 - type: Transform -- uid: 512 - type: CableHV - components: - - pos: -9.5,-2.5 - parent: 1 - type: Transform -- uid: 513 - type: CableHV - components: - - pos: -7.5,-2.5 - parent: 1 - type: Transform -- uid: 514 - type: CableHV - components: - - pos: -1.5,-7.5 - parent: 1 - type: Transform -- uid: 515 - type: CableHV - components: - - pos: -1.5,-8.5 - parent: 1 - type: Transform -- uid: 516 - type: CableHV - components: - - pos: -1.5,-9.5 - parent: 1 - type: Transform -- uid: 517 - type: CableHV - components: - - pos: -0.5,-9.5 - parent: 1 - type: Transform -- uid: 518 - type: CableHV - components: - - pos: 0.5,-9.5 - parent: 1 - type: Transform -- uid: 519 - type: CableMV - components: - - pos: 3.5,-7.5 - parent: 1 - type: Transform -- uid: 520 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 2.5,-0.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor -- uid: 521 - type: CableHV - components: - - pos: 3.5,-9.5 - parent: 1 - type: Transform -- uid: 522 - type: CableHV - components: - - pos: 3.5,-10.5 - parent: 1 - type: Transform -- uid: 523 - type: CableHV - components: - - pos: 3.5,-11.5 - parent: 1 - type: Transform -- uid: 524 - type: CableHV - components: - - pos: 3.5,-12.5 - parent: 1 - type: Transform -- uid: 525 - type: CableHV - components: - - pos: 3.5,-13.5 - parent: 1 - type: Transform -- uid: 526 - type: CableHV - components: - - pos: 3.5,-14.5 - parent: 1 - type: Transform -- uid: 527 - type: CableHV - components: - - pos: 3.5,-15.5 - parent: 1 - type: Transform -- uid: 528 - type: CableHV - components: - - pos: 3.5,-16.5 - parent: 1 - type: Transform -- uid: 529 - type: CableHV - components: - - pos: 3.5,-17.5 - parent: 1 - type: Transform -- uid: 530 - type: CableHV - components: - - pos: 3.5,-18.5 - parent: 1 - type: Transform -- uid: 531 - type: CableHV - components: - - pos: 2.5,-18.5 - parent: 1 - type: Transform -- uid: 532 - type: CableHV - components: - - pos: 1.5,-18.5 - parent: 1 - type: Transform -- uid: 533 - type: CableHV - components: - - pos: 0.5,-18.5 - parent: 1 - type: Transform -- uid: 534 - type: CableHV - components: - - pos: 0.5,-17.5 - parent: 1 - type: Transform -- uid: 535 - type: CableHV - components: - - pos: 0.5,-19.5 - parent: 1 - type: Transform -- uid: 536 - type: CableHV - components: - - pos: 0.5,-20.5 - parent: 1 - type: Transform -- uid: 537 - type: CableHV - components: - - pos: 0.5,-16.5 - parent: 1 - type: Transform -- uid: 538 - type: CableHV - components: - - pos: 0.5,-15.5 - parent: 1 - type: Transform -- uid: 539 - type: CableHV - components: - - pos: -0.5,-15.5 - parent: 1 - type: Transform -- uid: 540 - type: CableHV - components: - - pos: -1.5,-15.5 - parent: 1 - type: Transform -- uid: 541 - type: CableHV - components: - - pos: -2.5,-15.5 - parent: 1 - type: Transform -- uid: 542 - type: CableHV - components: - - pos: 0.5,-21.5 - parent: 1 - type: Transform -- uid: 543 - type: CableHV - components: - - pos: -0.5,-21.5 - parent: 1 - type: Transform -- uid: 544 - type: CableHV - components: - - pos: -1.5,-21.5 - parent: 1 - type: Transform -- uid: 545 - type: CableHV - components: - - pos: -2.5,-21.5 - parent: 1 - type: Transform -- uid: 546 - type: CableHV - components: - - pos: 4.5,-18.5 - parent: 1 - type: Transform -- uid: 547 - type: CableHV - components: - - pos: 5.5,-18.5 - parent: 1 - type: Transform -- uid: 548 - type: CableHV - components: - - pos: 6.5,-18.5 - parent: 1 - type: Transform -- uid: 549 - type: CableHV - components: - - pos: 7.5,-18.5 - parent: 1 - type: Transform -- uid: 550 - type: CableHV - components: - - pos: 8.5,-18.5 - parent: 1 - type: Transform -- uid: 551 - type: CableHV - components: - - pos: 9.5,-18.5 - parent: 1 - type: Transform -- uid: 552 - type: CableHV - components: - - pos: 10.5,-18.5 - parent: 1 - type: Transform -- uid: 553 - type: CableHV - components: - - pos: 11.5,-18.5 - parent: 1 - type: Transform -- uid: 554 - type: CableHV - components: - - pos: 11.5,-17.5 - parent: 1 - type: Transform -- uid: 555 - type: CableHV - components: - - pos: 11.5,-16.5 - parent: 1 - type: Transform -- uid: 556 - type: CableHV - components: - - pos: 11.5,-15.5 - parent: 1 - type: Transform -- uid: 557 - type: CableHV - components: - - pos: 7.5,-17.5 - parent: 1 - type: Transform -- uid: 558 - type: CableHV - components: - - pos: 7.5,-16.5 - parent: 1 - type: Transform -- uid: 559 - type: CableHV - components: - - pos: 7.5,-15.5 - parent: 1 - type: Transform -- uid: 560 - type: CableHV - components: - - pos: 7.5,-14.5 - parent: 1 - type: Transform -- uid: 561 - type: CableHV - components: - - pos: 11.5,-14.5 - parent: 1 - type: Transform -- uid: 562 - type: CableHV - components: - - pos: 8.5,-19.5 - parent: 1 - type: Transform -- uid: 563 - type: CableHV - components: - - pos: 8.5,-20.5 - parent: 1 - type: Transform -- uid: 564 - type: CableHV - components: - - pos: 8.5,-21.5 - parent: 1 - type: Transform -- uid: 565 - type: CableHV - components: - - pos: 9.5,-21.5 - parent: 1 - type: Transform -- uid: 566 - type: CableHV - components: - - pos: 10.5,-21.5 - parent: 1 - type: Transform -- uid: 567 - type: CableHV - components: - - pos: 11.5,-21.5 - parent: 1 - type: Transform -- uid: 568 - type: CableMV - components: - - pos: 2.5,0.5 - parent: 1 - type: Transform -- uid: 569 - type: CableMV - components: - - pos: 3.5,1.5 - parent: 1 - type: Transform -- uid: 570 - type: CableMV - components: - - pos: 3.5,0.5 - parent: 1 - type: Transform -- uid: 571 - type: CableMV - components: - - pos: 3.5,-0.5 - parent: 1 - type: Transform -- uid: 572 - type: CableMV - components: - - pos: 4.5,-0.5 - parent: 1 - type: Transform -- uid: 573 - type: CableMV - components: - - pos: 5.5,-0.5 - parent: 1 - type: Transform -- uid: 574 - type: CableMV - components: - - pos: 6.5,-0.5 - parent: 1 - type: Transform -- uid: 575 - type: CableMV - components: - - pos: 7.5,-0.5 - parent: 1 - type: Transform -- uid: 576 - type: CableMV - components: - - pos: 3.5,-1.5 - parent: 1 - type: Transform -- uid: 577 - type: CableMV - components: - - pos: 3.5,-2.5 - parent: 1 - type: Transform -- uid: 578 - type: CableMV - components: - - pos: 3.5,-3.5 - parent: 1 - type: Transform -- uid: 579 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 5.5,-7.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor -- uid: 580 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: 0.5,-1.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor -- uid: 581 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 8.5,-0.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor -- uid: 582 - type: CableMV - components: - - pos: 3.5,-6.5 - parent: 1 - type: Transform -- uid: 583 - type: GasVentPump - components: - - pos: 7.5,-4.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor -- uid: 584 - type: CableMV - components: - - pos: 6.5,-6.5 - parent: 1 - type: Transform -- uid: 585 - type: CableMV - components: - - pos: 7.5,-6.5 - parent: 1 - type: Transform -- uid: 586 - type: CableMV - components: - - pos: 8.5,-6.5 - parent: 1 - type: Transform -- uid: 587 - type: CableMV - components: - - pos: 8.5,-5.5 - parent: 1 - type: Transform -- uid: 588 - type: CableMV - components: - - pos: 8.5,-4.5 - parent: 1 - type: Transform -- uid: 589 - type: CableMV - components: - - pos: 9.5,-6.5 - parent: 1 - type: Transform -- uid: 590 - type: CableMV - components: - - pos: 10.5,-6.5 - parent: 1 - type: Transform -- uid: 591 - type: CableMV - components: - - pos: 8.5,-7.5 - parent: 1 - type: Transform -- uid: 592 - type: CableMV - components: - - pos: 8.5,-8.5 - parent: 1 - type: Transform -- uid: 593 - type: GasPipeTJunction - components: - - pos: 4.5,-0.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor -- uid: 594 - type: CableMV - components: - - pos: 1.5,-6.5 - parent: 1 - type: Transform -- uid: 595 - type: CableMV - components: - - pos: 0.5,-6.5 - parent: 1 - type: Transform -- uid: 596 - type: CableMV - components: - - pos: -0.5,-6.5 - parent: 1 - type: Transform -- uid: 597 - type: CableMV - components: - - pos: -1.5,-6.5 - parent: 1 - type: Transform -- uid: 598 - type: CableMV - components: - - pos: -1.5,-7.5 - parent: 1 - type: Transform -- uid: 599 - type: CableMV - components: - - pos: -1.5,-8.5 - parent: 1 - type: Transform -- uid: 600 - type: CableMV - components: - - pos: -1.5,-9.5 - parent: 1 - type: Transform -- uid: 601 - type: CableMV - components: - - pos: -0.5,-9.5 - parent: 1 - type: Transform -- uid: 602 - type: CableMV - components: - - pos: 0.5,-9.5 - parent: 1 - type: Transform -- uid: 603 - type: CableMV - components: - - pos: -2.5,-6.5 - parent: 1 - type: Transform -- uid: 604 - type: CableMV - components: - - pos: -3.5,-6.5 - parent: 1 - type: Transform -- uid: 605 - type: CableMV - components: - - pos: -4.5,-6.5 - parent: 1 - type: Transform -- uid: 606 - type: CableMV - components: - - pos: -5.5,-6.5 - parent: 1 - type: Transform -- uid: 607 - type: CableMV - components: - - pos: -6.5,-6.5 - parent: 1 - type: Transform -- uid: 608 - type: CableMV - components: - - pos: -7.5,-6.5 - parent: 1 - type: Transform -- uid: 609 - type: CableMV - components: - - pos: -8.5,-6.5 - parent: 1 - type: Transform -- uid: 610 - type: CableMV - components: - - pos: -9.5,-6.5 - parent: 1 - type: Transform -- uid: 611 - type: CableMV - components: - - pos: -11.5,-6.5 - parent: 1 - type: Transform -- uid: 612 - type: CableMV - components: - - pos: -8.5,-5.5 - parent: 1 - type: Transform -- uid: 613 - type: CableMV - components: - - pos: -10.5,-6.5 - parent: 1 - type: Transform -- uid: 614 - type: CableMV - components: - - pos: -8.5,-4.5 - parent: 1 - type: Transform -- uid: 615 - type: CableMV - components: - - pos: -8.5,-3.5 - parent: 1 - type: Transform -- uid: 616 - type: CableMV - components: - - pos: -8.5,-2.5 - parent: 1 - type: Transform -- uid: 617 - type: CableMV - components: - - pos: -9.5,-2.5 - parent: 1 - type: Transform -- uid: 618 - type: CableMV - components: - - pos: -7.5,-2.5 - parent: 1 - type: Transform -- uid: 619 - type: CableMV - components: - - pos: -8.5,-7.5 - parent: 1 - type: Transform -- uid: 620 - type: CableMV - components: - - pos: -8.5,-8.5 - parent: 1 - type: Transform -- uid: 621 - type: CableMV - components: - - pos: -8.5,-9.5 - parent: 1 - type: Transform -- uid: 622 - type: CableMV - components: - - pos: -9.5,-9.5 - parent: 1 - type: Transform -- uid: 623 - type: CableMV - components: - - pos: -10.5,-9.5 - parent: 1 - type: Transform -- uid: 624 - type: CableMV - components: - - pos: 4.5,-6.5 - parent: 1 - type: Transform -- uid: 625 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 1.5,-0.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor -- uid: 626 - type: CableMV - components: - - pos: 3.5,-9.5 - parent: 1 - type: Transform -- uid: 627 - type: CableMV - components: - - pos: 3.5,-10.5 - parent: 1 - type: Transform -- uid: 628 - type: CableMV - components: - - pos: 3.5,-11.5 - parent: 1 - type: Transform -- uid: 629 - type: CableMV - components: - - pos: 3.5,-12.5 - parent: 1 - type: Transform -- uid: 630 - type: CableMV - components: - - pos: 3.5,-13.5 - parent: 1 - type: Transform -- uid: 631 - type: CableMV - components: - - pos: 3.5,-14.5 - parent: 1 - type: Transform -- uid: 632 - type: CableMV - components: - - pos: 3.5,-15.5 - parent: 1 - type: Transform -- uid: 633 - type: CableMV - components: - - pos: 3.5,-16.5 - parent: 1 - type: Transform -- uid: 634 - type: CableMV - components: - - pos: 3.5,-17.5 - parent: 1 - type: Transform -- uid: 635 - type: CableMV - components: - - pos: 3.5,-18.5 - parent: 1 - type: Transform -- uid: 636 - type: CableMV - components: - - pos: 2.5,-18.5 - parent: 1 - type: Transform -- uid: 637 - type: CableMV - components: - - pos: 1.5,-18.5 - parent: 1 - type: Transform -- uid: 638 - type: CableMV - components: - - pos: 0.5,-18.5 - parent: 1 - type: Transform -- uid: 639 - type: CableMV - components: - - pos: 0.5,-17.5 - parent: 1 - type: Transform -- uid: 640 - type: CableMV - components: - - pos: 0.5,-16.5 - parent: 1 - type: Transform -- uid: 641 - type: CableMV - components: - - pos: 0.5,-15.5 - parent: 1 - type: Transform -- uid: 642 - type: CableMV - components: - - pos: -0.5,-15.5 - parent: 1 - type: Transform -- uid: 643 - type: CableMV - components: - - pos: -1.5,-15.5 - parent: 1 - type: Transform -- uid: 644 - type: CableMV - components: - - pos: -2.5,-15.5 - parent: 1 - type: Transform -- uid: 645 - type: CableMV - components: - - pos: 0.5,-19.5 - parent: 1 - type: Transform -- uid: 646 - type: CableMV - components: - - pos: 0.5,-20.5 - parent: 1 - type: Transform -- uid: 647 - type: CableMV - components: - - pos: 0.5,-21.5 - parent: 1 - type: Transform -- uid: 648 - type: CableMV - components: - - pos: -0.5,-21.5 - parent: 1 - type: Transform -- uid: 649 - type: CableMV - components: - - pos: -1.5,-21.5 - parent: 1 - type: Transform -- uid: 650 - type: CableMV - components: - - pos: -2.5,-21.5 - parent: 1 - type: Transform -- uid: 651 - type: CableMV - components: - - pos: 4.5,-18.5 - parent: 1 - type: Transform -- uid: 652 - type: CableMV - components: - - pos: 5.5,-18.5 - parent: 1 - type: Transform -- uid: 653 - type: CableMV - components: - - pos: 6.5,-18.5 - parent: 1 - type: Transform -- uid: 654 - type: CableMV - components: - - pos: 7.5,-18.5 - parent: 1 - type: Transform -- uid: 655 - type: CableMV - components: - - pos: 7.5,-17.5 - parent: 1 - type: Transform -- uid: 656 - type: CableMV - components: - - pos: 7.5,-16.5 - parent: 1 - type: Transform -- uid: 657 - type: CableMV - components: - - pos: 7.5,-15.5 - parent: 1 - type: Transform -- uid: 658 - type: CableMV - components: - - pos: 7.5,-14.5 - parent: 1 - type: Transform -- uid: 659 - type: CableMV - components: - - pos: 8.5,-18.5 - parent: 1 - type: Transform -- uid: 660 - type: CableMV - components: - - pos: 8.5,-19.5 - parent: 1 - type: Transform -- uid: 661 - type: CableMV - components: - - pos: 8.5,-20.5 - parent: 1 - type: Transform -- uid: 662 - type: CableMV - components: - - pos: 8.5,-21.5 - parent: 1 - type: Transform -- uid: 663 - type: CableMV - components: - - pos: 9.5,-21.5 - parent: 1 - type: Transform -- uid: 664 - type: CableMV - components: - - pos: 10.5,-21.5 - parent: 1 - type: Transform -- uid: 665 - type: CableMV - components: - - pos: 11.5,-21.5 - parent: 1 - type: Transform -- uid: 666 - type: CableMV - components: - - pos: 9.5,-18.5 - parent: 1 - type: Transform -- uid: 667 - type: CableMV - components: - - pos: 10.5,-18.5 - parent: 1 - type: Transform -- uid: 668 - type: CableMV - components: - - pos: 11.5,-18.5 - parent: 1 - type: Transform -- uid: 669 - type: CableMV - components: - - pos: 11.5,-17.5 - parent: 1 - type: Transform -- uid: 670 - type: CableMV - components: - - pos: 11.5,-16.5 - parent: 1 - type: Transform -- uid: 671 - type: CableMV - components: - - pos: 11.5,-15.5 - parent: 1 - type: Transform -- uid: 672 - type: CableMV - components: - - pos: 11.5,-14.5 - parent: 1 - type: Transform -- uid: 673 - type: CableApcExtension - components: - - pos: 2.5,0.5 - parent: 1 - type: Transform -- uid: 674 - type: CableApcExtension - components: - - pos: 3.5,0.5 - parent: 1 - type: Transform -- uid: 675 - type: CableApcExtension - components: - - pos: 3.5,1.5 - parent: 1 - type: Transform -- uid: 676 - type: CableApcExtension - components: - - pos: 3.5,-0.5 - parent: 1 - type: Transform -- uid: 677 - type: CableApcExtension - components: - - pos: 4.5,-0.5 - parent: 1 - type: Transform -- uid: 678 - type: CableApcExtension - components: - - pos: 5.5,-0.5 - parent: 1 - type: Transform -- uid: 679 - type: CableApcExtension - components: - - pos: 6.5,-0.5 - parent: 1 - type: Transform -- uid: 680 - type: CableApcExtension - components: - - pos: 7.5,-0.5 - parent: 1 - type: Transform -- uid: 681 - type: CableApcExtension - components: - - pos: 3.5,-1.5 - parent: 1 - type: Transform -- uid: 682 - type: CableApcExtension - components: - - pos: 3.5,-2.5 - parent: 1 - type: Transform -- uid: 683 - type: CableApcExtension - components: - - pos: 3.5,-3.5 - parent: 1 - type: Transform -- uid: 684 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 6.5,-7.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor -- uid: 685 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 5.5,-0.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor -- uid: 686 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 6.5,-0.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor -- uid: 687 - type: CableMV - components: - - pos: 3.5,-4.5 - parent: 1 - type: Transform -- uid: 688 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 7.5,-5.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor -- uid: 689 - type: CableApcExtension - components: - - pos: 6.5,-6.5 - parent: 1 - type: Transform -- uid: 690 - type: CableApcExtension - components: - - pos: 8.5,-6.5 - parent: 1 - type: Transform -- uid: 691 - type: CableApcExtension - components: - - pos: 8.5,-5.5 - parent: 1 - type: Transform -- uid: 692 - type: CableApcExtension - components: - - pos: 8.5,-4.5 - parent: 1 - type: Transform -- uid: 693 - type: CableApcExtension - components: - - pos: 7.5,-6.5 - parent: 1 - type: Transform -- uid: 694 - type: CableApcExtension - components: - - pos: 9.5,-6.5 - parent: 1 - type: Transform -- uid: 695 - type: CableApcExtension - components: - - pos: 10.5,-6.5 - parent: 1 - type: Transform -- uid: 696 - type: CableApcExtension - components: - - pos: 8.5,-7.5 - parent: 1 - type: Transform -- uid: 697 - type: CableApcExtension - components: - - pos: 8.5,-8.5 - parent: 1 - type: Transform -- uid: 698 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: 7.5,-8.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor -- uid: 699 - type: CableApcExtension - components: - - pos: 0.5,-6.5 - parent: 1 - type: Transform -- uid: 700 - type: CableApcExtension - components: - - pos: 1.5,-6.5 - parent: 1 - type: Transform -- uid: 701 - type: CableApcExtension - components: - - pos: -0.5,-6.5 - parent: 1 - type: Transform -- uid: 702 - type: CableApcExtension - components: - - pos: -1.5,-6.5 - parent: 1 - type: Transform -- uid: 703 - type: CableApcExtension - components: - - pos: -1.5,-7.5 - parent: 1 - type: Transform -- uid: 704 - type: CableApcExtension - components: - - pos: -1.5,-8.5 - parent: 1 - type: Transform -- uid: 705 - type: CableApcExtension - components: - - pos: -1.5,-9.5 - parent: 1 - type: Transform -- uid: 706 - type: CableApcExtension - components: - - pos: -0.5,-9.5 - parent: 1 - type: Transform -- uid: 707 - type: CableApcExtension - components: - - pos: 0.5,-9.5 - parent: 1 - type: Transform -- uid: 708 - type: CableApcExtension - components: - - pos: -2.5,-6.5 - parent: 1 - type: Transform -- uid: 709 - type: CableApcExtension - components: - - pos: -3.5,-6.5 - parent: 1 - type: Transform -- uid: 710 - type: CableApcExtension - components: - - pos: -4.5,-6.5 - parent: 1 - type: Transform -- uid: 711 - type: CableApcExtension - components: - - pos: -5.5,-6.5 - parent: 1 - type: Transform -- uid: 712 - type: CableApcExtension - components: - - pos: -6.5,-6.5 - parent: 1 - type: Transform -- uid: 713 - type: CableApcExtension - components: - - pos: -7.5,-6.5 - parent: 1 - type: Transform -- uid: 714 - type: CableApcExtension - components: - - pos: -8.5,-6.5 - parent: 1 - type: Transform -- uid: 715 - type: CableApcExtension - components: - - pos: -9.5,-6.5 - parent: 1 - type: Transform -- uid: 716 - type: CableApcExtension - components: - - pos: -10.5,-6.5 - parent: 1 - type: Transform -- uid: 717 - type: CableApcExtension - components: - - pos: -11.5,-6.5 - parent: 1 - type: Transform -- uid: 718 - type: CableApcExtension - components: - - pos: -8.5,-7.5 - parent: 1 - type: Transform -- uid: 719 - type: CableApcExtension - components: - - pos: -8.5,-8.5 - parent: 1 - type: Transform -- uid: 720 - type: CableApcExtension - components: - - pos: -8.5,-9.5 - parent: 1 - type: Transform -- uid: 721 - type: CableApcExtension - components: - - pos: -9.5,-9.5 - parent: 1 - type: Transform -- uid: 722 - type: CableApcExtension - components: - - pos: -10.5,-9.5 - parent: 1 - type: Transform -- uid: 723 - type: CableApcExtension - components: - - pos: -8.5,-5.5 - parent: 1 - type: Transform -- uid: 724 - type: CableApcExtension - components: - - pos: -8.5,-4.5 - parent: 1 - type: Transform -- uid: 725 - type: CableApcExtension - components: - - pos: -8.5,-3.5 - parent: 1 - type: Transform -- uid: 726 - type: CableApcExtension - components: - - pos: -8.5,-2.5 - parent: 1 - type: Transform -- uid: 727 - type: CableApcExtension - components: - - pos: -9.5,-2.5 - parent: 1 - type: Transform -- uid: 728 - type: CableApcExtension - components: - - pos: -7.5,-2.5 - parent: 1 - type: Transform -- uid: 729 - type: CableMV - components: - - pos: 3.5,-8.5 - parent: 1 - type: Transform -- uid: 730 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 3.5,-0.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor -- uid: 731 - type: CableApcExtension - components: - - pos: 3.5,-9.5 - parent: 1 - type: Transform -- uid: 732 - type: CableApcExtension - components: - - pos: 3.5,-10.5 - parent: 1 - type: Transform -- uid: 733 - type: CableApcExtension - components: - - pos: 3.5,-11.5 - parent: 1 - type: Transform -- uid: 734 - type: CableApcExtension - components: - - pos: 3.5,-12.5 - parent: 1 - type: Transform -- uid: 735 - type: CableApcExtension - components: - - pos: 3.5,-13.5 - parent: 1 - type: Transform -- uid: 736 - type: CableApcExtension - components: - - pos: 3.5,-14.5 - parent: 1 - type: Transform -- uid: 737 - type: CableApcExtension - components: - - pos: 3.5,-15.5 - parent: 1 - type: Transform -- uid: 738 - type: CableApcExtension - components: - - pos: 3.5,-16.5 - parent: 1 - type: Transform -- uid: 739 - type: CableApcExtension - components: - - pos: 3.5,-17.5 - parent: 1 - type: Transform -- uid: 740 - type: CableApcExtension - components: - - pos: 3.5,-18.5 - parent: 1 - type: Transform -- uid: 741 - type: CableApcExtension - components: - - pos: 2.5,-18.5 - parent: 1 - type: Transform -- uid: 742 - type: CableApcExtension - components: - - pos: 1.5,-18.5 - parent: 1 - type: Transform -- uid: 743 - type: CableApcExtension - components: - - pos: 0.5,-18.5 - parent: 1 - type: Transform -- uid: 744 - type: CableApcExtension - components: - - pos: 0.5,-17.5 - parent: 1 - type: Transform -- uid: 745 - type: CableApcExtension - components: - - pos: 0.5,-16.5 - parent: 1 - type: Transform -- uid: 746 - type: CableApcExtension - components: - - pos: 0.5,-15.5 - parent: 1 - type: Transform -- uid: 747 - type: CableApcExtension - components: - - pos: -0.5,-15.5 - parent: 1 - type: Transform -- uid: 748 - type: CableApcExtension - components: - - pos: -1.5,-15.5 - parent: 1 - type: Transform -- uid: 749 - type: CableApcExtension - components: - - pos: -2.5,-15.5 - parent: 1 - type: Transform -- uid: 750 - type: CableApcExtension - components: - - pos: 0.5,-19.5 - parent: 1 - type: Transform -- uid: 751 - type: CableApcExtension - components: - - pos: 0.5,-20.5 - parent: 1 - type: Transform -- uid: 752 - type: CableApcExtension - components: - - pos: 0.5,-21.5 - parent: 1 - type: Transform -- uid: 753 - type: CableApcExtension - components: - - pos: -0.5,-21.5 - parent: 1 - type: Transform -- uid: 754 - type: CableApcExtension - components: - - pos: -1.5,-21.5 - parent: 1 - type: Transform -- uid: 755 - type: CableApcExtension - components: - - pos: -2.5,-21.5 - parent: 1 - type: Transform -- uid: 756 - type: CableApcExtension - components: - - pos: 4.5,-18.5 - parent: 1 - type: Transform -- uid: 757 - type: CableApcExtension - components: - - pos: 5.5,-18.5 - parent: 1 - type: Transform -- uid: 758 - type: CableApcExtension - components: - - pos: 6.5,-18.5 - parent: 1 - type: Transform -- uid: 759 - type: CableApcExtension - components: - - pos: 7.5,-18.5 - parent: 1 - type: Transform -- uid: 760 - type: CableApcExtension - components: - - pos: 8.5,-18.5 - parent: 1 - type: Transform -- uid: 761 - type: CableApcExtension - components: - - pos: 10.5,-18.5 - parent: 1 - type: Transform -- uid: 762 - type: CableApcExtension - components: - - pos: 9.5,-18.5 - parent: 1 - type: Transform -- uid: 763 - type: CableApcExtension - components: - - pos: 11.5,-18.5 - parent: 1 - type: Transform -- uid: 764 - type: CableApcExtension - components: - - pos: 11.5,-17.5 - parent: 1 - type: Transform -- uid: 765 - type: CableApcExtension - components: - - pos: 7.5,-17.5 - parent: 1 - type: Transform -- uid: 766 - type: CableApcExtension - components: - - pos: 7.5,-16.5 - parent: 1 - type: Transform -- uid: 767 - type: CableApcExtension - components: - - pos: 7.5,-15.5 - parent: 1 - type: Transform -- uid: 768 - type: CableApcExtension - components: - - pos: 7.5,-14.5 - parent: 1 - type: Transform -- uid: 769 - type: CableApcExtension - components: - - pos: 11.5,-14.5 - parent: 1 - type: Transform -- uid: 770 - type: CableApcExtension - components: - - pos: 11.5,-15.5 - parent: 1 - type: Transform -- uid: 771 - type: CableApcExtension - components: - - pos: 11.5,-16.5 - parent: 1 - type: Transform -- uid: 772 - type: CableApcExtension - components: - - pos: 8.5,-19.5 - parent: 1 - type: Transform -- uid: 773 - type: CableApcExtension - components: - - pos: 8.5,-20.5 - parent: 1 - type: Transform -- uid: 774 - type: CableApcExtension - components: - - pos: 8.5,-21.5 - parent: 1 - type: Transform -- uid: 775 - type: CableApcExtension - components: - - pos: 9.5,-21.5 - parent: 1 - type: Transform -- uid: 776 - type: CableApcExtension - components: - - pos: 10.5,-21.5 - parent: 1 - type: Transform -- uid: 777 - type: CableApcExtension - components: - - pos: 11.5,-21.5 - parent: 1 - type: Transform -- uid: 778 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -3.5,-15.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 779 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -3.5,-15.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 780 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 1.5,-15.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 781 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 1.5,-15.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 782 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -3.5,-21.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 783 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 1.5,-21.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 784 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 12.5,-21.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 785 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 8.5,-21.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 786 - type: Poweredlight - components: - - pos: 7.5,-13.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 787 - type: Poweredlight - components: - - pos: 11.5,-13.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 788 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 1.5,-9.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 789 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -11.5,-10.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 790 - type: Poweredlight - components: - - pos: -7.5,-9.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 791 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -2.5,-10.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 792 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -10.5,-2.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 793 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -6.5,-2.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 794 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -11.5,-6.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 795 - type: Poweredlight - components: - - pos: -7.5,-5.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 796 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 7.5,-8.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 797 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -2.5,-7.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 798 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -7.5,-7.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 799 - type: Poweredlight - components: - - pos: -2.5,-5.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 800 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 7.5,-4.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 801 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 11.5,-8.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 802 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 11.5,-4.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 803 - type: CableHV - components: - - pos: -5.5,-1.5 - parent: 1 - type: Transform -- uid: 804 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -4.5,0.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 805 - type: Poweredlight - components: - - pos: -4.5,0.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 806 - type: Poweredlight - components: - - pos: 0.5,0.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 807 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 1.5,-3.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 808 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 1.5,-3.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 809 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -4.5,-3.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 810 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 7.5,-0.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 811 - type: Poweredlight - components: - - pos: 3.5,2.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 812 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 5.5,-18.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 813 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 2.5,-18.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 814 - type: CableHV - components: - - pos: -0.5,-18.5 - parent: 1 - type: Transform -- uid: 815 - type: CableHV - components: - - pos: -1.5,-18.5 - parent: 1 - type: Transform -- uid: 816 - type: CableHV - components: - - pos: -2.5,-18.5 - parent: 1 - type: Transform -- uid: 817 - type: CableApcExtension - components: - - pos: -0.5,-18.5 - parent: 1 - type: Transform -- uid: 818 - type: CableMV - components: - - pos: -1.5,-18.5 - parent: 1 - type: Transform -- uid: 819 - type: CableMV - components: - - pos: -2.5,-18.5 - parent: 1 - type: Transform -- uid: 820 - type: CableMV - components: - - pos: -0.5,-18.5 - parent: 1 - type: Transform -- uid: 821 - type: CableApcExtension - components: - - pos: -1.5,-18.5 - parent: 1 - type: Transform -- uid: 822 - type: CableApcExtension - components: - - pos: -2.5,-18.5 - parent: 1 - type: Transform -- uid: 823 - type: Poweredlight - components: - - pos: -2.5,-17.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 824 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -2.5,-18.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 825 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 10.5,-18.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 826 - type: Poweredlight - components: - - pos: 10.5,-17.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 827 - type: CableHV - components: - - pos: 7.5,-3.5 - parent: 1 - type: Transform -- uid: 828 - type: CableMV - components: - - pos: 8.5,-3.5 - parent: 1 - type: Transform -- uid: 829 - type: CableMV - components: - - pos: 7.5,-3.5 - parent: 1 - type: Transform -- uid: 830 - type: CableApcExtension - components: - - pos: 8.5,-3.5 - parent: 1 - type: Transform -- uid: 831 - type: CableApcExtension - components: - - pos: 7.5,-3.5 - parent: 1 - type: Transform -- uid: 832 - type: WallPlastitanium - components: - - pos: 2.5,-24.5 - parent: 1 - type: Transform -- uid: 833 - type: WallPlastitanium - components: - - pos: 2.5,-25.5 - parent: 1 - type: Transform -- uid: 834 - type: WallPlastitanium - components: - - pos: 2.5,-26.5 - parent: 1 - type: Transform -- uid: 835 - type: WallPlastitanium - components: - - pos: 3.5,-26.5 - parent: 1 - type: Transform -- uid: 836 - type: CableHV - components: - - pos: 4.5,-20.5 - parent: 1 - type: Transform -- uid: 837 - type: CableHV - components: - - pos: 3.5,-20.5 - parent: 1 - type: Transform -- uid: 838 - type: CableHV - components: - - pos: 3.5,-25.5 - parent: 1 - type: Transform -- uid: 839 - type: CableMV - components: - - pos: 4.5,-19.5 - parent: 1 - type: Transform -- uid: 840 - type: CableMV - components: - - pos: 4.5,-20.5 - parent: 1 - type: Transform -- uid: 841 - type: CableHV - components: - - pos: 3.5,-21.5 - parent: 1 - type: Transform -- uid: 842 - type: CableHV - components: - - pos: 3.5,-24.5 - parent: 1 - type: Transform -- uid: 843 - type: CableHV - components: - - pos: 3.5,-23.5 - parent: 1 - type: Transform -- uid: 844 - type: CableHV - components: - - pos: 3.5,-22.5 - parent: 1 - type: Transform -- uid: 845 - type: CableApcExtension - components: - - pos: 4.5,-20.5 - parent: 1 - type: Transform -- uid: 846 - type: CableApcExtension - components: - - pos: 4.5,-19.5 - parent: 1 - type: Transform -- uid: 847 - type: WallPlastitanium - components: - - pos: 4.5,-26.5 - parent: 1 - type: Transform -- uid: 848 - type: WallPlastitanium - components: - - pos: 5.5,-26.5 - parent: 1 - type: Transform -- uid: 849 - type: WallPlastitanium - components: - - pos: 6.5,-26.5 - parent: 1 - type: Transform -- uid: 850 - type: WallPlastitanium - components: - - pos: 7.5,-26.5 - parent: 1 - type: Transform -- uid: 851 - type: WallPlastitanium - components: - - pos: 7.5,-25.5 - parent: 1 - type: Transform -- uid: 852 - type: WallPlastitanium - components: - - pos: 7.5,-24.5 - parent: 1 - type: Transform -- uid: 853 - type: CableHV - components: - - pos: 4.5,-25.5 - parent: 1 - type: Transform -- uid: 854 - type: CableHV - components: - - pos: 5.5,-25.5 - parent: 1 - type: Transform -- uid: 855 - type: CableHV - components: - - pos: 6.5,-25.5 - parent: 1 - type: Transform -- uid: 856 - type: CableHV - components: - - pos: 6.5,-24.5 - parent: 1 - type: Transform -- uid: 857 - type: CableHV - components: - - pos: 6.5,-23.5 - parent: 1 - type: Transform -- uid: 858 - type: CableHV - components: - - pos: 6.5,-22.5 - parent: 1 - type: Transform -- uid: 859 - type: CableHV - components: - - pos: 6.5,-21.5 - parent: 1 - type: Transform -- uid: 860 - type: CableHV - components: - - pos: 6.5,-20.5 - parent: 1 - type: Transform -- uid: 861 - type: CableHV - components: - - pos: 5.5,-20.5 - parent: 1 - type: Transform -- uid: 862 - type: CableMV - components: - - pos: 3.5,-20.5 - parent: 1 - type: Transform -- uid: 863 - type: CableMV - components: - - pos: 3.5,-21.5 - parent: 1 - type: Transform -- uid: 864 - type: CableMV - components: - - pos: 3.5,-22.5 - parent: 1 - type: Transform -- uid: 865 - type: CableMV - components: - - pos: 3.5,-23.5 - parent: 1 - type: Transform -- uid: 866 - type: CableMV - components: - - pos: 3.5,-24.5 - parent: 1 - type: Transform -- uid: 867 - type: CableMV - components: - - pos: 3.5,-25.5 - parent: 1 - type: Transform -- uid: 868 - type: CableMV - components: - - pos: 4.5,-25.5 - parent: 1 - type: Transform -- uid: 869 - type: CableMV - components: - - pos: 5.5,-25.5 - parent: 1 - type: Transform -- uid: 870 - type: CableMV - components: - - pos: 6.5,-25.5 - parent: 1 - type: Transform -- uid: 871 - type: CableMV - components: - - pos: 6.5,-24.5 - parent: 1 - type: Transform -- uid: 872 - type: CableMV - components: - - pos: 6.5,-23.5 - parent: 1 - type: Transform -- uid: 873 - type: CableMV - components: - - pos: 6.5,-22.5 - parent: 1 - type: Transform -- uid: 874 - type: CableMV - components: - - pos: 6.5,-21.5 - parent: 1 - type: Transform -- uid: 875 - type: CableMV - components: - - pos: 6.5,-20.5 - parent: 1 - type: Transform -- uid: 876 - type: CableMV - components: - - pos: 5.5,-20.5 - parent: 1 - type: Transform -- uid: 877 - type: CableApcExtension - components: - - pos: 3.5,-20.5 - parent: 1 - type: Transform -- uid: 878 - type: CableApcExtension - components: - - pos: 3.5,-21.5 - parent: 1 - type: Transform -- uid: 879 - type: CableApcExtension - components: - - pos: 3.5,-22.5 - parent: 1 - type: Transform -- uid: 880 - type: CableApcExtension - components: - - pos: 3.5,-23.5 - parent: 1 - type: Transform -- uid: 881 - type: CableApcExtension - components: - - pos: 3.5,-24.5 - parent: 1 - type: Transform -- uid: 882 - type: CableApcExtension - components: - - pos: 3.5,-25.5 - parent: 1 - type: Transform -- uid: 883 - type: CableApcExtension - components: - - pos: 4.5,-25.5 - parent: 1 - type: Transform -- uid: 884 - type: CableApcExtension - components: - - pos: 5.5,-25.5 - parent: 1 - type: Transform -- uid: 885 - type: CableApcExtension - components: - - pos: 6.5,-25.5 - parent: 1 - type: Transform -- uid: 886 - type: CableApcExtension - components: - - pos: 6.5,-24.5 - parent: 1 - type: Transform -- uid: 887 - type: CableApcExtension - components: - - pos: 6.5,-23.5 - parent: 1 - type: Transform -- uid: 888 - type: CableApcExtension - components: - - pos: 6.5,-21.5 - parent: 1 - type: Transform -- uid: 889 - type: CableApcExtension - components: - - pos: 6.5,-20.5 - parent: 1 - type: Transform -- uid: 890 - type: CableApcExtension - components: - - pos: 5.5,-20.5 - parent: 1 - type: Transform -- uid: 891 - type: CableApcExtension - components: - - pos: 6.5,-22.5 - parent: 1 - type: Transform -- uid: 892 - type: Poweredlight - components: - - pos: 3.5,-20.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 893 - type: Poweredlight - components: - - pos: 6.5,-20.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 894 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 6.5,-20.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 895 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 6.5,-25.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 896 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 6.5,-25.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 897 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 3.5,-25.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 898 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 3.5,-25.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 899 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 3.5,-20.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 900 - type: AirlockChemistry - components: - - pos: 8.5,-19.5 - parent: 1 - type: Transform -- uid: 901 - type: ScienceTechFab - components: - - pos: 3.5,-21.5 - parent: 1 - type: Transform -- uid: 902 - type: MedicalTechFab - components: - - pos: 3.5,-22.5 - parent: 1 - type: Transform -- uid: 903 - type: SecurityTechFab - components: - - pos: 3.5,-23.5 - parent: 1 - type: Transform -- uid: 904 - type: ServiceTechFab - components: - - pos: 3.5,-24.5 - parent: 1 - type: Transform -- uid: 905 - type: Protolathe - components: - - pos: 3.5,-25.5 - parent: 1 - type: Transform -- uid: 906 - type: Autolathe - components: - - pos: 4.5,-25.5 - parent: 1 - type: Transform -- uid: 907 - type: ExosuitFabricator - components: - - pos: 6.5,-20.5 - parent: 1 - type: Transform -- uid: 908 - type: CircuitImprinter - components: - - pos: 5.5,-25.5 - parent: 1 - type: Transform -- uid: 909 - type: UniformPrinter - components: - - pos: 6.5,-25.5 - parent: 1 - type: Transform -- uid: 910 - type: SMESBasic - components: - - pos: -1.5,-3.5 - parent: 1 - type: Transform -- uid: 911 - type: SMESBasic - components: - - pos: -0.5,-3.5 - parent: 1 - type: Transform -- uid: 912 - type: SignRadiation - components: - - pos: -5.5,-0.5 - parent: 1 - type: Transform -- uid: 913 - type: CableTerminal - components: - - rot: 1.5707963267948966 rad - pos: -2.5,-3.5 - parent: 1 - type: Transform -- uid: 914 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 3.5,-8.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 915 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 4.5,-8.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 916 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 4.5,-4.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 917 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 3.5,-4.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 918 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 3.5,-15.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 919 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 4.5,-17.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor -- uid: 920 - type: SpawnPointLatejoin - components: - - pos: -8.5,-6.5 - parent: 1 - type: Transform -- uid: 921 - type: SpawnPointAssistant - components: - - pos: -8.5,-6.5 - parent: 1 - type: Transform -- uid: 922 - type: MedicalBed - components: - - pos: -7.5,-3.5 - parent: 1 - type: Transform -- uid: 923 - type: BedsheetSpawner - components: - - pos: -7.5,-3.5 - parent: 1 - type: Transform -- uid: 924 - type: SpawnPointGhostSyndicateCommsAgent - components: - - pos: -7.5,-1.5 - parent: 1 - type: Transform -- uid: 925 - type: SleeperSyndicate - components: - - rot: -1.5707963267948966 rad - pos: -7.5,-1.5 - parent: 1 - type: Transform - - containers: - entity_storage: !type:Container - ents: [] - type: ContainerContainer -- uid: 926 - type: AsteroidRock - components: - - pos: -2.5,4.5 - parent: 1 - type: Transform -- uid: 927 - type: AsteroidRock - components: - - pos: -4.5,3.5 - parent: 1 - type: Transform -- uid: 928 - type: GasMinerOxygen - components: - - pos: -1.5,3.5 - parent: 1 - type: Transform - - canCollide: False - type: Physics -- uid: 929 - type: AsteroidRock - components: - - pos: -2.5,3.5 - parent: 1 - type: Transform -- uid: 930 - type: GasMinerNitrogen - components: - - pos: -3.5,3.5 - parent: 1 - type: Transform - - canCollide: False - type: Physics -- uid: 931 - type: AsteroidRock - components: - - pos: -4.5,2.5 - parent: 1 - type: Transform -- uid: 932 - type: WallPlastitanium - components: - - pos: -0.5,1.5 - parent: 1 - type: Transform -- uid: 933 - type: AsteroidRock - components: - - pos: -1.5,4.5 - parent: 1 - type: Transform -- uid: 934 - type: AsteroidRock - components: - - pos: -0.5,4.5 - parent: 1 - type: Transform -- uid: 935 - type: ReinforcedPlasmaWindow - components: - - pos: -1.5,1.5 - parent: 1 - type: Transform -- uid: 936 - type: ReinforcedPlasmaWindow - components: - - pos: -3.5,1.5 - parent: 1 - type: Transform -- uid: 937 - type: GasPassiveVent - components: - - pos: -1.5,2.5 - parent: 1 - type: Transform -- uid: 938 - type: GasPassiveVent - components: - - pos: -3.5,2.5 - parent: 1 - type: Transform -- uid: 939 - type: AtmosFixOxygenMarker - components: - - pos: -1.5,2.5 - parent: 1 - type: Transform -- uid: 940 - type: AtmosFixOxygenMarker - components: - - pos: -1.5,3.5 - parent: 1 - type: Transform -- uid: 941 - type: AtmosFixNitrogenMarker - components: - - pos: -3.5,2.5 - parent: 1 - type: Transform -- uid: 942 - type: AtmosFixNitrogenMarker - components: - - pos: -3.5,3.5 - parent: 1 - type: Transform -- uid: 943 - type: GasPipeStraight - components: - - pos: -3.5,1.5 - parent: 1 - type: Transform -- uid: 944 - type: GasPipeStraight - components: - - pos: -1.5,1.5 - parent: 1 - type: Transform -- uid: 945 - type: GasPipeTJunction - components: - - pos: -0.5,0.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor -- uid: 946 - type: GasPipeTJunction - components: - - pos: 3.5,0.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor -- uid: 947 - type: FirelockGlass - components: - - pos: 4.5,-3.5 - parent: 1 - type: Transform -- uid: 948 - type: GasPipeStraight - components: - - pos: 3.5,-4.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor -- uid: 949 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 4.5,-6.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor -- uid: 950 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 4.5,-8.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor -- uid: 951 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 1.5,-7.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor -- uid: 952 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 4.5,-5.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor -- uid: 953 - type: GasPipeFourway - components: - - pos: 3.5,-5.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor -- uid: 954 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 3.5,-6.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor -- uid: 955 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 3.5,-8.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor -- uid: 956 - type: GasPipeStraight - components: - - pos: 3.5,-9.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor -- uid: 957 - type: GasPipeStraight - components: - - pos: 3.5,-10.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor -- uid: 958 - type: GasPipeStraight - components: - - pos: 3.5,-12.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor -- uid: 959 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 3.5,-11.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor -- uid: 960 - type: GasPipeStraight - components: - - pos: 3.5,-13.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor -- uid: 961 - type: GasPipeStraight - components: - - pos: 3.5,-14.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor -- uid: 962 - type: GasPipeStraight - components: - - pos: 3.5,-15.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor -- uid: 963 - type: GasPipeStraight - components: - - pos: 3.5,-16.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor -- uid: 964 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 1.5,-5.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor -- uid: 965 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 0.5,-5.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor -- uid: 966 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -0.5,-5.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor -- uid: 967 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -2.5,-5.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor -- uid: 968 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -3.5,-5.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor -- uid: 969 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -4.5,-5.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor -- uid: 970 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -5.5,-5.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor -- uid: 971 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -6.5,-5.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor -- uid: 972 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -7.5,-5.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor -- uid: 973 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -9.5,-5.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor -- uid: 974 - type: GasPipeFourway - components: - - pos: -8.5,-5.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor -- uid: 975 - type: GasPipeTJunction - components: - - pos: -1.5,-5.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor -- uid: 976 - type: GasPipeStraight - components: - - pos: -1.5,-6.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor -- uid: 977 - type: GasPipeStraight - components: - - pos: -1.5,-7.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor -- uid: 978 - type: GasPipeStraight - components: - - pos: -1.5,-8.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor -- uid: 979 - type: GasPipeStraight - components: - - pos: -1.5,-9.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor -- uid: 980 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: -1.5,-10.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor -- uid: 981 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -8.5,-6.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor -- uid: 982 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -8.5,-7.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor -- uid: 983 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -8.5,-8.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor -- uid: 984 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -8.5,-9.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor -- uid: 985 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -8.5,-4.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor -- uid: 986 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -8.5,-3.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor -- uid: 987 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -8.5,-2.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor -- uid: 988 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: -7.5,-2.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor -- uid: 989 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: -10.5,-5.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor -- uid: 990 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -8.5,-10.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor -- uid: 991 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: -0.5,-10.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor -- uid: 992 - type: FirelockGlass - components: - - pos: 3.5,-3.5 - parent: 1 - type: Transform -- uid: 993 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 3.5,-3.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor -- uid: 994 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 7.5,0.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor -- uid: 995 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -0.5,-0.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor -- uid: 996 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 3.5,-7.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor -- uid: 997 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 4.5,-11.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor -- uid: 998 - type: AtmosFixBlockerMarker - components: - - pos: -5.5,-9.5 - parent: 1 - type: Transform -- uid: 999 - type: AtmosFixBlockerMarker - components: - - pos: -5.5,-10.5 - parent: 1 - type: Transform -- uid: 1000 - type: AtmosFixBlockerMarker - components: - - pos: -4.5,-10.5 - parent: 1 - type: Transform -- uid: 1001 - type: AtmosFixBlockerMarker - components: - - pos: -4.5,-9.5 - parent: 1 - type: Transform -- uid: 1002 - type: GasMixerFlipped - components: - - rot: -1.5707963267948966 rad - pos: -1.5,0.5 - parent: 1 - type: Transform - - inletTwoConcentration: 0.23000002 - inletOneConcentration: 0.77 - type: GasMixer - - color: '#0000FFFF' - type: AtmosPipeColor -- uid: 1003 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 4.5,-16.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor -- uid: 1004 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 4.5,-15.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor -- uid: 1005 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 4.5,-14.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor -- uid: 1006 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 4.5,-12.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor -- uid: 1007 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 4.5,-11.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor -- uid: 1008 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 4.5,-10.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor -- uid: 1009 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 4.5,-9.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor -- uid: 1010 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 4.5,-8.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor -- uid: 1011 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 5.5,-5.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor -- uid: 1012 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 3.5,-7.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor -- uid: 1013 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: 3.5,-6.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor -- uid: 1014 - type: GasPipeFourway - components: - - pos: 4.5,-7.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor -- uid: 1015 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 4.5,-4.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor -- uid: 1016 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 4.5,-3.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor -- uid: 1017 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 4.5,-1.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor -- uid: 1018 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 2.5,-7.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor -- uid: 1019 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: 3.5,-2.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor -- uid: 1020 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: 3.5,-13.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor -- uid: 1021 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 4.5,-13.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor -- uid: 1022 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 4.5,-2.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor -- uid: 1023 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 2.5,-5.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor -- uid: 1024 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 4.5,-1.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor -- uid: 1025 - type: FirelockGlass - components: - - pos: 4.5,-9.5 - parent: 1 - type: Transform -- uid: 1026 - type: FirelockGlass - components: - - pos: 3.5,-9.5 - parent: 1 - type: Transform -- uid: 1027 - type: CableMV - components: - - pos: 5.5,-6.5 - parent: 1 - type: Transform -- uid: 1028 - type: CableMV - components: - - pos: 2.5,-6.5 - parent: 1 - type: Transform -- uid: 1029 - type: CableApcExtension - components: - - pos: 3.5,-4.5 - parent: 1 - type: Transform -- uid: 1030 - type: CableApcExtension - components: - - pos: 3.5,-5.5 - parent: 1 - type: Transform -- uid: 1031 - type: CableApcExtension - components: - - pos: 3.5,-6.5 - parent: 1 - type: Transform -- uid: 1032 - type: CableApcExtension - components: - - pos: 3.5,-7.5 - parent: 1 - type: Transform -- uid: 1033 - type: CableApcExtension - components: - - pos: 3.5,-8.5 - parent: 1 - type: Transform -- uid: 1034 - type: CableApcExtension - components: - - pos: 4.5,-6.5 - parent: 1 - type: Transform -- uid: 1035 - type: CableApcExtension - components: - - pos: 5.5,-6.5 - parent: 1 - type: Transform -- uid: 1036 - type: CableApcExtension - components: - - pos: 2.5,-6.5 - parent: 1 - type: Transform -- uid: 1037 - type: CableHV - components: - - pos: 3.5,-4.5 - parent: 1 - type: Transform -- uid: 1038 - type: CableHV - components: - - pos: 3.5,-5.5 - parent: 1 - type: Transform -- uid: 1039 - type: CableHV - components: - - pos: 3.5,-6.5 - parent: 1 - type: Transform -- uid: 1040 - type: CableHV - components: - - pos: 3.5,-7.5 - parent: 1 - type: Transform -- uid: 1041 - type: CableHV - components: - - pos: 3.5,-8.5 - parent: 1 - type: Transform -- uid: 1042 - type: CableHV - components: - - pos: 5.5,-6.5 - parent: 1 - type: Transform -- uid: 1043 - type: CableHV - components: - - pos: 4.5,-6.5 - parent: 1 - type: Transform -- uid: 1044 - type: CableHV - components: - - pos: 2.5,-6.5 - parent: 1 - type: Transform -- uid: 1045 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -0.5,-7.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor -- uid: 1046 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -1.5,-7.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor -- uid: 1047 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -2.5,-7.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor -- uid: 1048 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -4.5,-7.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor -- uid: 1049 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -5.5,-7.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor -- uid: 1050 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -6.5,-7.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor -- uid: 1051 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -7.5,-7.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor -- uid: 1052 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -8.5,-7.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor -- uid: 1053 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -3.5,-7.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor -- uid: 1054 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -9.5,-7.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor -- uid: 1055 - type: GasPipeStraight - components: - - pos: -9.5,-8.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor -- uid: 1056 - type: GasPipeStraight - components: - - pos: -9.5,-6.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor -- uid: 1057 - type: GasPipeStraight - components: - - pos: -9.5,-5.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor -- uid: 1058 - type: GasPipeStraight - components: - - pos: -9.5,-4.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor -- uid: 1059 - type: GasPipeStraight - components: - - pos: -9.5,-3.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor -- uid: 1060 - type: GasVentScrubber - components: - - pos: -3.5,-6.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor -- uid: 1061 - type: GasVentScrubber - components: - - pos: -9.5,-2.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor -- uid: 1062 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: -9.5,-9.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor -- uid: 1063 - type: GasPipeTJunction - components: - - pos: 0.5,-7.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor -- uid: 1064 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 4.5,-15.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 1065 - type: GasPipeFourway - components: - - pos: 4.5,-18.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor -- uid: 1066 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 4.5,-19.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor -- uid: 1067 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 4.5,-21.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor -- uid: 1068 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 4.5,-20.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor -- uid: 1069 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 5.5,-18.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor -- uid: 1070 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 6.5,-18.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor -- uid: 1071 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 7.5,-18.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor -- uid: 1072 - type: GasPipeStraight - components: - - pos: 8.5,-17.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor -- uid: 1073 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 8.5,-18.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor -- uid: 1074 - type: GasPipeStraight - components: - - pos: 9.5,-19.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor -- uid: 1075 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 10.5,-18.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor -- uid: 1076 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 11.5,-18.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor -- uid: 1077 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 8.5,-16.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor -- uid: 1078 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 12.5,-18.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor -- uid: 1079 - type: GasPipeTJunction - components: - - pos: 9.5,-18.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor -- uid: 1080 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 7.5,-17.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor -- uid: 1081 - type: GasPipeStraight - components: - - pos: 12.5,-17.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor -- uid: 1082 - type: GasPipeStraight - components: - - pos: 12.5,-16.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor -- uid: 1083 - type: GasVentScrubber - components: - - pos: 8.5,-15.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor -- uid: 1084 - type: GasVentScrubber - components: - - pos: 12.5,-15.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor -- uid: 1085 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: 10.5,-20.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor -- uid: 1086 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: 9.5,-20.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor -- uid: 1087 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 4.5,-22.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor -- uid: 1088 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: 4.5,-23.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor -- uid: 1089 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 3.5,-18.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor -- uid: 1090 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 2.5,-18.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor -- uid: 1091 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 1.5,-18.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor -- uid: 1092 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 0.5,-18.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor -- uid: 1093 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -0.5,-18.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor -- uid: 1094 - type: GasPipeStraight - components: - - pos: -0.5,-19.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor -- uid: 1095 - type: GasPipeStraight - components: - - pos: -0.5,-20.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor -- uid: 1096 - type: GasPipeStraight - components: - - pos: -0.5,-17.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor -- uid: 1097 - type: GasPipeStraight - components: - - pos: -0.5,-16.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor -- uid: 1098 - type: GasVentScrubber - components: - - pos: -0.5,-15.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor -- uid: 1099 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: -0.5,-21.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor -- uid: 1100 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 3.5,-17.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor -- uid: 1101 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 2.5,-17.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor -- uid: 1102 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 1.5,-17.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor -- uid: 1103 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 0.5,-17.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor -- uid: 1104 - type: GasPipeStraight - components: - - pos: 0.5,-18.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor -- uid: 1105 - type: GasPipeStraight - components: - - pos: 0.5,-19.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor -- uid: 1106 - type: GasPipeStraight - components: - - pos: 0.5,-16.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor -- uid: 1107 - type: GasPipeStraight - components: - - pos: 0.5,-15.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor -- uid: 1108 - type: GasVentPump - components: - - pos: 0.5,-14.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor -- uid: 1109 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 0.5,-20.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor -- uid: 1110 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 4.5,-17.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor -- uid: 1111 - type: GasPipeTJunction - components: - - pos: 5.5,-17.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor -- uid: 1112 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 8.5,-17.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor -- uid: 1113 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 9.5,-17.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor -- uid: 1114 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 6.5,-17.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor -- uid: 1115 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 10.5,-17.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor -- uid: 1116 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 10.5,-16.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor -- uid: 1117 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 10.5,-18.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor -- uid: 1118 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 10.5,-19.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor -- uid: 1119 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 10.5,-20.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor -- uid: 1120 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 6.5,-16.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor -- uid: 1121 - type: GasVentPump - components: - - pos: 6.5,-15.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor -- uid: 1122 - type: GasVentPump - components: - - pos: 10.5,-15.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor -- uid: 1123 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 10.5,-21.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor -- uid: 1124 - type: GasPipeStraight - components: - - pos: 5.5,-18.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor -- uid: 1125 - type: GasPipeStraight - components: - - pos: 5.5,-19.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor -- uid: 1126 - type: GasPipeStraight - components: - - pos: 5.5,-20.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor -- uid: 1127 - type: GasPipeStraight - components: - - pos: 5.5,-21.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor -- uid: 1128 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 6.5,-22.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor -- uid: 1129 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: 5.5,-22.5 - parent: 1 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor -- uid: 1130 - type: GasPipeStraight - components: - - pos: 0.5,-8.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor -- uid: 1131 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: 0.5,-9.5 - parent: 1 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor -- uid: 1132 - type: FoodLollipop - components: - - pos: -11.671532,-9.3326435 - parent: 1 - type: Transform -- uid: 1133 - type: LightBulb - components: - - rot: 1.5707963267948966 rad - pos: -10.254866,-9.5700445 - parent: 1 - type: Transform -- uid: 1134 - type: ClearPDA - components: - - pos: -11.004866,-9.382414 - parent: 1 - type: Transform -- uid: 1135 - type: ComfyChair - components: - - pos: -5.5,-5.5 - parent: 1 - type: Transform -- uid: 1136 - type: ComfyChair - components: - - pos: -3.5,-5.5 - parent: 1 - type: Transform -- uid: 1137 - type: TableWood - components: - - pos: -4.5,-5.5 - parent: 1 - type: Transform -- uid: 1138 - type: Carpet - components: - - pos: -5.5,-5.5 - parent: 1 - type: Transform -- uid: 1139 - type: LampGold - components: - - pos: -4.5658245,-4.899079 - parent: 1 - type: Transform -- uid: 1140 - type: Carpet - components: - - pos: -4.5,-5.5 - parent: 1 - type: Transform -- uid: 1141 - type: Bookshelf - components: - - pos: -2.5,-5.5 - parent: 1 - type: Transform -- uid: 1142 - type: Carpet - components: - - pos: -3.5,-5.5 - parent: 1 - type: Transform -- uid: 1143 - type: PlushieRouny - components: - - pos: -4.336658,-5.3473063 - parent: 1 - type: Transform -- uid: 1144 - type: VendingMachineCigs - components: - - flags: SessionSpecific - type: MetaData - - pos: -1.5,-17.5 - parent: 1 - type: Transform -- uid: 1145 - type: AsteroidRock - components: - - pos: 2.5,4.5 - parent: 1 - type: Transform -- uid: 1146 - type: AsteroidRock - components: - - pos: 3.5,4.5 - parent: 1 - type: Transform -- uid: 1147 - type: AsteroidRock - components: - - pos: 4.5,4.5 - parent: 1 - type: Transform -- uid: 1148 - type: AsteroidRock - components: - - pos: 5.5,4.5 - parent: 1 - type: Transform -- uid: 1149 - type: AsteroidRock - components: - - pos: 6.5,4.5 - parent: 1 - type: Transform -- uid: 1150 - type: AsteroidRock - components: - - pos: 6.5,3.5 - parent: 1 - type: Transform -- uid: 1151 - type: AsteroidRock - components: - - pos: 6.5,2.5 - parent: 1 - type: Transform -- uid: 1152 - type: AsteroidRock - components: - - pos: 7.5,2.5 - parent: 1 - type: Transform -- uid: 1153 - type: AsteroidRock - components: - - pos: 8.5,2.5 - parent: 1 - type: Transform -- uid: 1154 - type: AsteroidRock - components: - - pos: 9.5,2.5 - parent: 1 - type: Transform -- uid: 1155 - type: AsteroidRock - components: - - pos: 9.5,1.5 - parent: 1 - type: Transform -- uid: 1156 - type: AsteroidRock - components: - - pos: 9.5,-1.5 - parent: 1 - type: Transform -- uid: 1157 - type: AsteroidRock - components: - - pos: 10.5,-1.5 - parent: 1 - type: Transform -- uid: 1158 - type: AsteroidRock - components: - - pos: 11.5,-2.5 - parent: 1 - type: Transform -- uid: 1159 - type: AsteroidRock - components: - - pos: 12.5,-2.5 - parent: 1 - type: Transform -- uid: 1160 - type: AsteroidRock - components: - - pos: 11.5,-1.5 - parent: 1 - type: Transform -- uid: 1161 - type: AsteroidRock - components: - - pos: 13.5,-2.5 - parent: 1 - type: Transform -- uid: 1162 - type: AsteroidRock - components: - - pos: 13.5,-3.5 - parent: 1 - type: Transform -- uid: 1163 - type: AsteroidRock - components: - - pos: 13.5,-4.5 - parent: 1 - type: Transform -- uid: 1164 - type: AsteroidRock - components: - - pos: 13.5,-5.5 - parent: 1 - type: Transform -- uid: 1165 - type: AsteroidRock - components: - - pos: 13.5,-6.5 - parent: 1 - type: Transform -- uid: 1166 - type: AsteroidRock - components: - - pos: 13.5,-7.5 - parent: 1 - type: Transform -- uid: 1167 - type: AsteroidRock - components: - - pos: 13.5,-8.5 - parent: 1 - type: Transform -- uid: 1168 - type: AsteroidRock - components: - - pos: 13.5,-9.5 - parent: 1 - type: Transform -- uid: 1169 - type: AsteroidRock - components: - - pos: 13.5,-10.5 - parent: 1 - type: Transform -- uid: 1170 - type: AsteroidRock - components: - - pos: 12.5,-10.5 - parent: 1 - type: Transform -- uid: 1171 - type: AsteroidRock - components: - - pos: 11.5,-10.5 - parent: 1 - type: Transform -- uid: 1172 - type: AsteroidRock - components: - - pos: 6.5,-11.5 - parent: 1 - type: Transform -- uid: 1173 - type: AsteroidRock - components: - - pos: 7.5,-11.5 - parent: 1 - type: Transform -- uid: 1174 - type: AsteroidRock - components: - - pos: 8.5,-11.5 - parent: 1 - type: Transform -- uid: 1175 - type: AsteroidRock - components: - - pos: 9.5,-11.5 - parent: 1 - type: Transform -- uid: 1176 - type: AsteroidRock - components: - - pos: 10.5,-11.5 - parent: 1 - type: Transform -- uid: 1177 - type: AsteroidRock - components: - - pos: 11.5,-11.5 - parent: 1 - type: Transform -- uid: 1178 - type: AsteroidRock - components: - - pos: 12.5,-11.5 - parent: 1 - type: Transform -- uid: 1179 - type: AsteroidRock - components: - - pos: 13.5,-11.5 - parent: 1 - type: Transform -- uid: 1180 - type: AsteroidRock - components: - - pos: 14.5,-11.5 - parent: 1 - type: Transform -- uid: 1181 - type: AsteroidRock - components: - - pos: 14.5,-12.5 - parent: 1 - type: Transform -- uid: 1182 - type: AsteroidRock - components: - - pos: 14.5,-13.5 - parent: 1 - type: Transform -- uid: 1183 - type: AsteroidRock - components: - - pos: 14.5,-14.5 - parent: 1 - type: Transform -- uid: 1184 - type: AsteroidRock - components: - - pos: 14.5,-15.5 - parent: 1 - type: Transform -- uid: 1185 - type: AsteroidRock - components: - - pos: 14.5,-16.5 - parent: 1 - type: Transform -- uid: 1186 - type: AsteroidRock - components: - - pos: 14.5,-17.5 - parent: 1 - type: Transform -- uid: 1187 - type: AsteroidRock - components: - - pos: 14.5,-18.5 - parent: 1 - type: Transform -- uid: 1188 - type: AsteroidRock - components: - - pos: 14.5,-19.5 - parent: 1 - type: Transform -- uid: 1189 - type: AsteroidRock - components: - - pos: 14.5,-20.5 - parent: 1 - type: Transform -- uid: 1190 - type: AsteroidRock - components: - - pos: 14.5,-21.5 - parent: 1 - type: Transform -- uid: 1191 - type: AsteroidRock - components: - - pos: 14.5,-22.5 - parent: 1 - type: Transform -- uid: 1192 - type: AsteroidRock - components: - - pos: 14.5,-23.5 - parent: 1 - type: Transform -- uid: 1193 - type: AsteroidRock - components: - - pos: 14.5,-24.5 - parent: 1 - type: Transform -- uid: 1194 - type: AsteroidRock - components: - - pos: 13.5,-24.5 - parent: 1 - type: Transform -- uid: 1195 - type: AsteroidRock - components: - - pos: 12.5,-24.5 - parent: 1 - type: Transform -- uid: 1196 - type: AsteroidRock - components: - - pos: 11.5,-24.5 - parent: 1 - type: Transform -- uid: 1197 - type: AsteroidRock - components: - - pos: 10.5,-24.5 - parent: 1 - type: Transform -- uid: 1198 - type: AsteroidRock - components: - - pos: 9.5,-24.5 - parent: 1 - type: Transform -- uid: 1199 - type: AsteroidRock - components: - - pos: 8.5,-24.5 - parent: 1 - type: Transform -- uid: 1200 - type: AsteroidRock - components: - - pos: 8.5,-25.5 - parent: 1 - type: Transform -- uid: 1201 - type: AsteroidRock - components: - - pos: 8.5,-26.5 - parent: 1 - type: Transform -- uid: 1202 - type: AsteroidRock - components: - - pos: 8.5,-27.5 - parent: 1 - type: Transform -- uid: 1203 - type: AsteroidRock - components: - - pos: 7.5,-27.5 - parent: 1 - type: Transform -- uid: 1204 - type: AsteroidRock - components: - - pos: 6.5,-27.5 - parent: 1 - type: Transform -- uid: 1205 - type: AsteroidRock - components: - - pos: 5.5,-27.5 - parent: 1 - type: Transform -- uid: 1206 - type: AsteroidRock - components: - - pos: 4.5,-27.5 - parent: 1 - type: Transform -- uid: 1207 - type: AsteroidRock - components: - - pos: 3.5,-27.5 - parent: 1 - type: Transform -- uid: 1208 - type: AsteroidRock - components: - - pos: 2.5,-27.5 - parent: 1 - type: Transform -- uid: 1209 - type: AsteroidRock - components: - - pos: 1.5,-27.5 - parent: 1 - type: Transform -- uid: 1210 - type: AsteroidRock - components: - - pos: 1.5,-26.5 - parent: 1 - type: Transform -- uid: 1211 - type: AsteroidRock - components: - - pos: 1.5,-25.5 - parent: 1 - type: Transform -- uid: 1212 - type: AsteroidRock - components: - - pos: 1.5,-24.5 - parent: 1 - type: Transform -- uid: 1213 - type: AsteroidRock - components: - - pos: 0.5,-24.5 - parent: 1 - type: Transform -- uid: 1214 - type: AsteroidRock - components: - - pos: -0.5,-24.5 - parent: 1 - type: Transform -- uid: 1215 - type: AsteroidRock - components: - - pos: -1.5,-24.5 - parent: 1 - type: Transform -- uid: 1216 - type: AsteroidRock - components: - - pos: -2.5,-24.5 - parent: 1 - type: Transform -- uid: 1217 - type: AsteroidRock - components: - - pos: -3.5,-24.5 - parent: 1 - type: Transform -- uid: 1218 - type: AsteroidRock - components: - - pos: -4.5,-24.5 - parent: 1 - type: Transform -- uid: 1219 - type: AsteroidRock - components: - - pos: -5.5,-24.5 - parent: 1 - type: Transform -- uid: 1220 - type: AsteroidRock - components: - - pos: -5.5,-23.5 - parent: 1 - type: Transform -- uid: 1221 - type: AsteroidRock - components: - - pos: -5.5,-22.5 - parent: 1 - type: Transform -- uid: 1222 - type: AsteroidRock - components: - - pos: -5.5,-21.5 - parent: 1 - type: Transform -- uid: 1223 - type: AsteroidRock - components: - - pos: -5.5,-20.5 - parent: 1 - type: Transform -- uid: 1224 - type: AsteroidRock - components: - - pos: -5.5,-19.5 - parent: 1 - type: Transform -- uid: 1225 - type: AsteroidRock - components: - - pos: -5.5,-18.5 - parent: 1 - type: Transform -- uid: 1226 - type: AsteroidRock - components: - - pos: -5.5,-17.5 - parent: 1 - type: Transform -- uid: 1227 - type: AsteroidRock - components: - - pos: -5.5,-16.5 - parent: 1 - type: Transform -- uid: 1228 - type: AsteroidRock - components: - - pos: -5.5,-15.5 - parent: 1 - type: Transform -- uid: 1229 - type: AsteroidRock - components: - - pos: -5.5,-14.5 - parent: 1 - type: Transform -- uid: 1230 - type: AsteroidRock - components: - - pos: -5.5,-13.5 - parent: 1 - type: Transform -- uid: 1231 - type: AsteroidRock - components: - - pos: -5.5,-12.5 - parent: 1 - type: Transform -- uid: 1232 - type: AsteroidRock - components: - - pos: -6.5,-12.5 - parent: 1 - type: Transform -- uid: 1233 - type: AsteroidRock - components: - - pos: -7.5,-12.5 - parent: 1 - type: Transform -- uid: 1234 - type: AsteroidRock - components: - - pos: -8.5,-12.5 - parent: 1 - type: Transform -- uid: 1235 - type: AsteroidRock - components: - - pos: -9.5,-12.5 - parent: 1 - type: Transform -- uid: 1236 - type: AsteroidRock - components: - - pos: -10.5,-12.5 - parent: 1 - type: Transform -- uid: 1237 - type: AsteroidRock - components: - - pos: -11.5,-12.5 - parent: 1 - type: Transform -- uid: 1238 - type: AsteroidRock - components: - - pos: -12.5,-12.5 - parent: 1 - type: Transform -- uid: 1239 - type: AsteroidRock - components: - - pos: -13.5,-12.5 - parent: 1 - type: Transform -- uid: 1240 - type: AsteroidRock - components: - - pos: -13.5,-11.5 - parent: 1 - type: Transform -- uid: 1241 - type: AsteroidRock - components: - - pos: -13.5,-10.5 - parent: 1 - type: Transform -- uid: 1242 - type: AsteroidRock - components: - - pos: -12.5,-3.5 - parent: 1 - type: Transform -- uid: 1243 - type: AsteroidRock - components: - - pos: -12.5,-2.5 - parent: 1 - type: Transform -- uid: 1244 - type: AsteroidRock - components: - - pos: -12.5,-1.5 - parent: 1 - type: Transform -- uid: 1245 - type: AsteroidRock - components: - - pos: -12.5,-0.5 - parent: 1 - type: Transform -- uid: 1246 - type: AsteroidRock - components: - - pos: -12.5,0.5 - parent: 1 - type: Transform -- uid: 1247 - type: AsteroidRock - components: - - pos: -11.5,0.5 - parent: 1 - type: Transform -- uid: 1248 - type: AsteroidRock - components: - - pos: -10.5,0.5 - parent: 1 - type: Transform -- uid: 1249 - type: AsteroidRock - components: - - pos: -9.5,0.5 - parent: 1 - type: Transform -- uid: 1250 - type: AsteroidRock - components: - - pos: -8.5,0.5 - parent: 1 - type: Transform -- uid: 1251 - type: AsteroidRock - components: - - pos: -7.5,0.5 - parent: 1 - type: Transform -- uid: 1252 - type: AsteroidRock - components: - - pos: -6.5,0.5 - parent: 1 - type: Transform -- uid: 1253 - type: AsteroidRock - components: - - pos: -6.5,1.5 - parent: 1 - type: Transform -- uid: 1254 - type: AsteroidRock - components: - - pos: -6.5,2.5 - parent: 1 - type: Transform -- uid: 1255 - type: AsteroidRock - components: - - pos: -5.5,2.5 - parent: 1 - type: Transform -- uid: 1256 - type: AtmosFixBlockerMarker - components: - - pos: -15.5,-5.5 - parent: 1 - type: Transform -- uid: 1257 - type: AtmosFixBlockerMarker - components: - - pos: -15.5,-6.5 - parent: 1 - type: Transform -- uid: 1258 - type: AsteroidRock - components: - - pos: -0.5,7.5 - parent: 1 - type: Transform -- uid: 1259 - type: AsteroidRock - components: - - pos: -1.5,7.5 - parent: 1 - type: Transform -- uid: 1260 - type: AsteroidRock - components: - - pos: -2.5,7.5 - parent: 1 - type: Transform -- uid: 1261 - type: AsteroidRock - components: - - pos: -2.5,6.5 - parent: 1 - type: Transform -- uid: 1262 - type: AsteroidRock - components: - - pos: -3.5,6.5 - parent: 1 - type: Transform -- uid: 1263 - type: AtmosFixBlockerMarker - components: - - pos: -10.5,-14.5 - parent: 1 - type: Transform -- uid: 1264 - type: AtmosFixBlockerMarker - components: - - pos: -15.5,-8.5 - parent: 1 - type: Transform -- uid: 1265 - type: AsteroidRock - components: - - pos: -6.5,6.5 - parent: 1 - type: Transform -- uid: 1266 - type: AtmosFixBlockerMarker - components: - - pos: -15.5,-7.5 - parent: 1 - type: Transform -- uid: 1267 - type: AsteroidRock - components: - - pos: -7.5,5.5 - parent: 1 - type: Transform -- uid: 1268 - type: AsteroidRock - components: - - pos: -7.5,4.5 - parent: 1 - type: Transform -- uid: 1269 - type: AsteroidRock - components: - - pos: -8.5,4.5 - parent: 1 - type: Transform -- uid: 1270 - type: AsteroidRock - components: - - pos: -9.5,4.5 - parent: 1 - type: Transform -- uid: 1271 - type: AsteroidRock - components: - - pos: -10.5,4.5 - parent: 1 - type: Transform -- uid: 1272 - type: AtmosFixBlockerMarker - components: - - pos: -6.5,-13.5 - parent: 1 - type: Transform -- uid: 1273 - type: AtmosFixBlockerMarker - components: - - pos: 0.5,4.5 - parent: 1 - type: Transform -- uid: 1274 - type: AsteroidRock - components: - - pos: -13.5,4.5 - parent: 1 - type: Transform -- uid: 1275 - type: AsteroidRock - components: - - pos: -13.5,3.5 - parent: 1 - type: Transform -- uid: 1276 - type: AsteroidRock - components: - - pos: -13.5,2.5 - parent: 1 - type: Transform -- uid: 1277 - type: AtmosFixBlockerMarker - components: - - pos: 9.5,0.5 - parent: 1 - type: Transform -- uid: 1278 - type: AtmosFixBlockerMarker - components: - - pos: 9.5,-0.5 - parent: 1 - type: Transform -- uid: 1279 - type: AsteroidRock - components: - - pos: 1.5,6.5 - parent: 1 - type: Transform -- uid: 1280 - type: AsteroidRock - components: - - pos: 1.5,5.5 - parent: 1 - type: Transform -- uid: 1281 - type: AsteroidRock - components: - - pos: 0.5,6.5 - parent: 1 - type: Transform -- uid: 1282 - type: AsteroidRock - components: - - pos: 0.5,5.5 - parent: 1 - type: Transform -- uid: 1283 - type: AsteroidRock - components: - - pos: -0.5,6.5 - parent: 1 - type: Transform -- uid: 1284 - type: AsteroidRock - components: - - pos: -0.5,5.5 - parent: 1 - type: Transform -- uid: 1285 - type: AsteroidRock - components: - - pos: -1.5,6.5 - parent: 1 - type: Transform -- uid: 1286 - type: AsteroidRock - components: - - pos: -1.5,5.5 - parent: 1 - type: Transform -- uid: 1287 - type: AsteroidRock - components: - - pos: -2.5,5.5 - parent: 1 - type: Transform -- uid: 1288 - type: AsteroidRock - components: - - pos: -3.5,5.5 - parent: 1 - type: Transform -- uid: 1289 - type: AsteroidRock - components: - - pos: -4.5,5.5 - parent: 1 - type: Transform -- uid: 1290 - type: AsteroidRock - components: - - pos: -5.5,5.5 - parent: 1 - type: Transform -- uid: 1291 - type: AsteroidRock - components: - - pos: -6.5,5.5 - parent: 1 - type: Transform -- uid: 1292 - type: AsteroidRock - components: - - pos: -5.5,4.5 - parent: 1 - type: Transform -- uid: 1293 - type: AsteroidRock - components: - - pos: -5.5,3.5 - parent: 1 - type: Transform -- uid: 1294 - type: AsteroidRock - components: - - pos: -6.5,4.5 - parent: 1 - type: Transform -- uid: 1295 - type: AsteroidRock - components: - - pos: -6.5,3.5 - parent: 1 - type: Transform -- uid: 1296 - type: AsteroidRock - components: - - pos: -7.5,3.5 - parent: 1 - type: Transform -- uid: 1297 - type: AsteroidRock - components: - - pos: -7.5,2.5 - parent: 1 - type: Transform -- uid: 1298 - type: AsteroidRock - components: - - pos: -7.5,1.5 - parent: 1 - type: Transform -- uid: 1299 - type: AsteroidRock - components: - - pos: -8.5,3.5 - parent: 1 - type: Transform -- uid: 1300 - type: AsteroidRock - components: - - pos: -8.5,2.5 - parent: 1 - type: Transform -- uid: 1301 - type: AsteroidRock - components: - - pos: -8.5,1.5 - parent: 1 - type: Transform -- uid: 1302 - type: AsteroidRock - components: - - pos: -9.5,3.5 - parent: 1 - type: Transform -- uid: 1303 - type: AsteroidRock - components: - - pos: -9.5,2.5 - parent: 1 - type: Transform -- uid: 1304 - type: AsteroidRock - components: - - pos: -9.5,1.5 - parent: 1 - type: Transform -- uid: 1305 - type: AsteroidRock - components: - - pos: -10.5,3.5 - parent: 1 - type: Transform -- uid: 1306 - type: AsteroidRock - components: - - pos: -10.5,2.5 - parent: 1 - type: Transform -- uid: 1307 - type: AsteroidRock - components: - - pos: -10.5,1.5 - parent: 1 - type: Transform -- uid: 1308 - type: AtmosFixBlockerMarker - components: - - pos: -14.5,-7.5 - parent: 1 - type: Transform -- uid: 1309 - type: AtmosFixBlockerMarker - components: - - pos: -14.5,-6.5 - parent: 1 - type: Transform -- uid: 1310 - type: AsteroidRock - components: - - pos: -11.5,1.5 - parent: 1 - type: Transform -- uid: 1311 - type: AsteroidRock - components: - - pos: -12.5,3.5 - parent: 1 - type: Transform -- uid: 1312 - type: AtmosFixBlockerMarker - components: - - pos: -14.5,-5.5 - parent: 1 - type: Transform -- uid: 1313 - type: AsteroidRock - components: - - pos: -12.5,1.5 - parent: 1 - type: Transform -- uid: 1314 - type: AsteroidRock - components: - - pos: -13.5,1.5 - parent: 1 - type: Transform -- uid: 1315 - type: AsteroidRock - components: - - pos: -13.5,0.5 - parent: 1 - type: Transform -- uid: 1316 - type: AsteroidRock - components: - - pos: -13.5,-0.5 - parent: 1 - type: Transform -- uid: 1317 - type: AsteroidRock - components: - - pos: -13.5,-1.5 - parent: 1 - type: Transform -- uid: 1318 - type: AsteroidRock - components: - - pos: -14.5,1.5 - parent: 1 - type: Transform -- uid: 1319 - type: AsteroidRock - components: - - pos: -14.5,0.5 - parent: 1 - type: Transform -- uid: 1320 - type: AsteroidRock - components: - - pos: -14.5,-0.5 - parent: 1 - type: Transform -- uid: 1321 - type: AsteroidRock - components: - - pos: -14.5,-1.5 - parent: 1 - type: Transform -- uid: 1322 - type: AtmosFixBlockerMarker - components: - - pos: 10.5,-0.5 - parent: 1 - type: Transform -- uid: 1323 - type: AtmosFixBlockerMarker - components: - - pos: 10.5,0.5 - parent: 1 - type: Transform -- uid: 1324 - type: AsteroidRock - components: - - pos: -15.5,-0.5 - parent: 1 - type: Transform -- uid: 1325 - type: AsteroidRock - components: - - pos: -15.5,-1.5 - parent: 1 - type: Transform -- uid: 1326 - type: AsteroidRock - components: - - pos: -15.5,-2.5 - parent: 1 - type: Transform -- uid: 1327 - type: AsteroidRock - components: - - pos: -15.5,-3.5 - parent: 1 - type: Transform -- uid: 1328 - type: AsteroidRock - components: - - pos: -16.5,-14.5 - parent: 1 - type: Transform -- uid: 1329 - type: AsteroidRock - components: - - pos: -6.5,-17.5 - parent: 1 - type: Transform -- uid: 1330 - type: AsteroidRock - components: - - pos: -6.5,-16.5 - parent: 1 - type: Transform -- uid: 1331 - type: AsteroidRock - components: - - pos: -16.5,-15.5 - parent: 1 - type: Transform -- uid: 1332 - type: AsteroidRock - components: - - pos: -16.5,-13.5 - parent: 1 - type: Transform -- uid: 1333 - type: AsteroidRock - components: - - pos: -15.5,-9.5 - parent: 1 - type: Transform -- uid: 1334 - type: AsteroidRock - components: - - pos: -15.5,-10.5 - parent: 1 - type: Transform -- uid: 1335 - type: AsteroidRock - components: - - pos: -15.5,-11.5 - parent: 1 - type: Transform -- uid: 1336 - type: AsteroidRock - components: - - pos: -15.5,-12.5 - parent: 1 - type: Transform -- uid: 1337 - type: AsteroidRock - components: - - pos: -16.5,-2.5 - parent: 1 - type: Transform -- uid: 1338 - type: AsteroidRock - components: - - pos: -16.5,-3.5 - parent: 1 - type: Transform -- uid: 1339 - type: AsteroidRock - components: - - pos: -16.5,-4.5 - parent: 1 - type: Transform -- uid: 1340 - type: AsteroidRock - components: - - pos: -16.5,-5.5 - parent: 1 - type: Transform -- uid: 1341 - type: AsteroidRock - components: - - pos: -16.5,-6.5 - parent: 1 - type: Transform -- uid: 1342 - type: AsteroidRock - components: - - pos: -16.5,-7.5 - parent: 1 - type: Transform -- uid: 1343 - type: AsteroidRock - components: - - pos: -16.5,-8.5 - parent: 1 - type: Transform -- uid: 1344 - type: AsteroidRock - components: - - pos: -16.5,-9.5 - parent: 1 - type: Transform -- uid: 1345 - type: AsteroidRock - components: - - pos: -16.5,-10.5 - parent: 1 - type: Transform -- uid: 1346 - type: AsteroidRock - components: - - pos: -16.5,-11.5 - parent: 1 - type: Transform -- uid: 1347 - type: AsteroidRock - components: - - pos: -16.5,-12.5 - parent: 1 - type: Transform -- uid: 1348 - type: AtmosFixBlockerMarker - components: - - pos: 11.5,0.5 - parent: 1 - type: Transform -- uid: 1349 - type: AtmosFixBlockerMarker - components: - - pos: 12.5,-0.5 - parent: 1 - type: Transform -- uid: 1350 - type: AsteroidRock - components: - - pos: -17.5,-10.5 - parent: 1 - type: Transform -- uid: 1351 - type: AsteroidRock - components: - - pos: -17.5,-9.5 - parent: 1 - type: Transform -- uid: 1352 - type: AsteroidRock - components: - - pos: -17.5,-8.5 - parent: 1 - type: Transform -- uid: 1353 - type: AsteroidRock - components: - - pos: -17.5,-7.5 - parent: 1 - type: Transform -- uid: 1354 - type: AsteroidRock - components: - - pos: -17.5,-6.5 - parent: 1 - type: Transform -- uid: 1355 - type: AsteroidRock - components: - - pos: -17.5,-5.5 - parent: 1 - type: Transform -- uid: 1356 - type: AtmosFixBlockerMarker - components: - - pos: 11.5,-0.5 - parent: 1 - type: Transform -- uid: 1357 - type: AsteroidRock - components: - - pos: -11.5,-17.5 - parent: 1 - type: Transform -- uid: 1358 - type: AsteroidRock - components: - - pos: -10.5,-13.5 - parent: 1 - type: Transform -- uid: 1359 - type: AtmosFixBlockerMarker - components: - - pos: -14.5,-3.5 - parent: 1 - type: Transform -- uid: 1360 - type: AsteroidRock - components: - - pos: -10.5,-15.5 - parent: 1 - type: Transform -- uid: 1361 - type: AsteroidRock - components: - - pos: -10.5,-16.5 - parent: 1 - type: Transform -- uid: 1362 - type: AsteroidRock - components: - - pos: -10.5,-17.5 - parent: 1 - type: Transform -- uid: 1363 - type: AsteroidRock - components: - - pos: -9.5,-13.5 - parent: 1 - type: Transform -- uid: 1364 - type: AsteroidRock - components: - - pos: -9.5,-14.5 - parent: 1 - type: Transform -- uid: 1365 - type: AsteroidRock - components: - - pos: -9.5,-15.5 - parent: 1 - type: Transform -- uid: 1366 - type: AsteroidRock - components: - - pos: -9.5,-16.5 - parent: 1 - type: Transform -- uid: 1367 - type: AsteroidRock - components: - - pos: -9.5,-17.5 - parent: 1 - type: Transform -- uid: 1368 - type: AsteroidRock - components: - - pos: -8.5,-13.5 - parent: 1 - type: Transform -- uid: 1369 - type: AsteroidRock - components: - - pos: -8.5,-14.5 - parent: 1 - type: Transform -- uid: 1370 - type: AsteroidRock - components: - - pos: -8.5,-15.5 - parent: 1 - type: Transform -- uid: 1371 - type: AsteroidRock - components: - - pos: -8.5,-16.5 - parent: 1 - type: Transform -- uid: 1372 - type: AsteroidRock - components: - - pos: -8.5,-17.5 - parent: 1 - type: Transform -- uid: 1373 - type: AsteroidRock - components: - - pos: -7.5,-13.5 - parent: 1 - type: Transform -- uid: 1374 - type: AsteroidRock - components: - - pos: -7.5,-14.5 - parent: 1 - type: Transform -- uid: 1375 - type: AsteroidRock - components: - - pos: -7.5,-15.5 - parent: 1 - type: Transform -- uid: 1376 - type: AsteroidRock - components: - - pos: -7.5,-16.5 - parent: 1 - type: Transform -- uid: 1377 - type: AsteroidRock - components: - - pos: -7.5,-17.5 - parent: 1 - type: Transform -- uid: 1378 - type: AtmosFixBlockerMarker - components: - - pos: -14.5,-4.5 - parent: 1 - type: Transform -- uid: 1379 - type: AsteroidRock - components: - - pos: -6.5,-14.5 - parent: 1 - type: Transform -- uid: 1380 - type: AsteroidRock - components: - - pos: -6.5,-15.5 - parent: 1 - type: Transform -- uid: 1381 - type: AsteroidRock - components: - - pos: -15.5,-13.5 - parent: 1 - type: Transform -- uid: 1382 - type: AsteroidRock - components: - - pos: -15.5,-14.5 - parent: 1 - type: Transform -- uid: 1383 - type: AtmosFixBlockerMarker - components: - - pos: 12.5,0.5 - parent: 1 - type: Transform -- uid: 1384 - type: AtmosFixBlockerMarker - components: - - pos: 13.5,-0.5 - parent: 1 - type: Transform -- uid: 1385 - type: AtmosFixBlockerMarker - components: - - pos: 13.5,0.5 - parent: 1 - type: Transform -- uid: 1386 - type: AsteroidRock - components: - - pos: -14.5,-13.5 - parent: 1 - type: Transform -- uid: 1387 - type: AsteroidRock - components: - - pos: -14.5,-14.5 - parent: 1 - type: Transform -- uid: 1388 - type: AsteroidRock - components: - - pos: -14.5,-15.5 - parent: 1 - type: Transform -- uid: 1389 - type: AsteroidRock - components: - - pos: -14.5,-16.5 - parent: 1 - type: Transform -- uid: 1390 - type: AsteroidRock - components: - - pos: -14.5,-17.5 - parent: 1 - type: Transform -- uid: 1391 - type: AsteroidRock - components: - - pos: -13.5,-13.5 - parent: 1 - type: Transform -- uid: 1392 - type: AsteroidRock - components: - - pos: -13.5,-14.5 - parent: 1 - type: Transform -- uid: 1393 - type: AsteroidRock - components: - - pos: -13.5,-15.5 - parent: 1 - type: Transform -- uid: 1394 - type: AsteroidRock - components: - - pos: -13.5,-16.5 - parent: 1 - type: Transform -- uid: 1395 - type: AsteroidRock - components: - - pos: -13.5,-17.5 - parent: 1 - type: Transform -- uid: 1396 - type: AsteroidRock - components: - - pos: -12.5,-13.5 - parent: 1 - type: Transform -- uid: 1397 - type: AsteroidRock - components: - - pos: -12.5,-14.5 - parent: 1 - type: Transform -- uid: 1398 - type: AsteroidRock - components: - - pos: -12.5,-15.5 - parent: 1 - type: Transform -- uid: 1399 - type: AsteroidRock - components: - - pos: -12.5,-16.5 - parent: 1 - type: Transform -- uid: 1400 - type: AsteroidRock - components: - - pos: -12.5,-17.5 - parent: 1 - type: Transform -- uid: 1401 - type: AsteroidRock - components: - - pos: -11.5,-13.5 - parent: 1 - type: Transform -- uid: 1402 - type: AsteroidRock - components: - - pos: -11.5,-14.5 - parent: 1 - type: Transform -- uid: 1403 - type: AsteroidRock - components: - - pos: -11.5,-15.5 - parent: 1 - type: Transform -- uid: 1404 - type: AsteroidRock - components: - - pos: -11.5,-16.5 - parent: 1 - type: Transform -- uid: 1405 - type: AtmosFixBlockerMarker - components: - - pos: 14.5,-0.5 - parent: 1 - type: Transform -- uid: 1406 - type: AtmosFixBlockerMarker - components: - - pos: 14.5,0.5 - parent: 1 - type: Transform -- uid: 1407 - type: AsteroidRock - components: - - pos: -10.5,-18.5 - parent: 1 - type: Transform -- uid: 1408 - type: AsteroidRock - components: - - pos: -10.5,-19.5 - parent: 1 - type: Transform -- uid: 1409 - type: AsteroidRock - components: - - pos: -9.5,-18.5 - parent: 1 - type: Transform -- uid: 1410 - type: AsteroidRock - components: - - pos: -9.5,-19.5 - parent: 1 - type: Transform -- uid: 1411 - type: AsteroidRock - components: - - pos: -8.5,-18.5 - parent: 1 - type: Transform -- uid: 1412 - type: AsteroidRock - components: - - pos: -8.5,-19.5 - parent: 1 - type: Transform -- uid: 1413 - type: AsteroidRock - components: - - pos: -7.5,-18.5 - parent: 1 - type: Transform -- uid: 1414 - type: AsteroidRock - components: - - pos: -7.5,-19.5 - parent: 1 - type: Transform -- uid: 1415 - type: AsteroidRock - components: - - pos: -6.5,-18.5 - parent: 1 - type: Transform -- uid: 1416 - type: AsteroidRock - components: - - pos: -6.5,-19.5 - parent: 1 - type: Transform -- uid: 1417 - type: AsteroidRock - components: - - pos: -14.5,-12.5 - parent: 1 - type: Transform -- uid: 1418 - type: AsteroidRock - components: - - pos: -14.5,-11.5 - parent: 1 - type: Transform -- uid: 1419 - type: AsteroidRock - components: - - pos: -14.5,-10.5 - parent: 1 - type: Transform -- uid: 1420 - type: AsteroidRock - components: - - pos: -13.5,-9.5 - parent: 1 - type: Transform -- uid: 1421 - type: AsteroidRock - components: - - pos: -13.5,-3.5 - parent: 1 - type: Transform -- uid: 1422 - type: AsteroidRock - components: - - pos: -13.5,-2.5 - parent: 1 - type: Transform -- uid: 1423 - type: AsteroidRock - components: - - pos: -14.5,-2.5 - parent: 1 - type: Transform -- uid: 1424 - type: AtmosFixBlockerMarker - components: - - pos: 15.5,0.5 - parent: 1 - type: Transform -- uid: 1425 - type: AtmosFixBlockerMarker - components: - - pos: 15.5,2.5 - parent: 1 - type: Transform -- uid: 1426 - type: AtmosFixBlockerMarker - components: - - pos: 15.5,-0.5 - parent: 1 - type: Transform -- uid: 1427 - type: AtmosFixBlockerMarker - components: - - pos: 15.5,1.5 - parent: 1 - type: Transform -- uid: 1428 - type: AsteroidRock - components: - - pos: -7.5,-20.5 - parent: 1 - type: Transform -- uid: 1429 - type: AtmosFixBlockerMarker - components: - - pos: 14.5,2.5 - parent: 1 - type: Transform -- uid: 1430 - type: AtmosFixBlockerMarker - components: - - pos: 14.5,1.5 - parent: 1 - type: Transform -- uid: 1431 - type: AtmosFixBlockerMarker - components: - - pos: 13.5,2.5 - parent: 1 - type: Transform -- uid: 1432 - type: AsteroidRock - components: - - pos: -6.5,-20.5 - parent: 1 - type: Transform -- uid: 1433 - type: AsteroidRock - components: - - pos: -6.5,-21.5 - parent: 1 - type: Transform -- uid: 1434 - type: AsteroidRock - components: - - pos: -6.5,-22.5 - parent: 1 - type: Transform -- uid: 1435 - type: AsteroidRock - components: - - pos: -6.5,-23.5 - parent: 1 - type: Transform -- uid: 1436 - type: AtmosFixBlockerMarker - components: - - pos: 13.5,1.5 - parent: 1 - type: Transform -- uid: 1437 - type: AsteroidRock - components: - - pos: -6.5,-24.5 - parent: 1 - type: Transform -- uid: 1438 - type: AsteroidRock - components: - - pos: -6.5,-25.5 - parent: 1 - type: Transform -- uid: 1439 - type: AsteroidRock - components: - - pos: -5.5,-25.5 - parent: 1 - type: Transform -- uid: 1440 - type: AsteroidRock - components: - - pos: -4.5,-25.5 - parent: 1 - type: Transform -- uid: 1441 - type: AsteroidRock - components: - - pos: -3.5,-25.5 - parent: 1 - type: Transform -- uid: 1442 - type: AsteroidRock - components: - - pos: -2.5,-25.5 - parent: 1 - type: Transform -- uid: 1443 - type: AsteroidRock - components: - - pos: -1.5,-25.5 - parent: 1 - type: Transform -- uid: 1444 - type: AsteroidRock - components: - - pos: -0.5,-25.5 - parent: 1 - type: Transform -- uid: 1445 - type: AsteroidRock - components: - - pos: 0.5,-25.5 - parent: 1 - type: Transform -- uid: 1446 - type: AsteroidRock - components: - - pos: 0.5,-26.5 - parent: 1 - type: Transform -- uid: 1447 - type: AsteroidRock - components: - - pos: 0.5,-27.5 - parent: 1 - type: Transform -- uid: 1448 - type: AsteroidRock - components: - - pos: -0.5,-26.5 - parent: 1 - type: Transform -- uid: 1449 - type: AsteroidRock - components: - - pos: -0.5,-27.5 - parent: 1 - type: Transform -- uid: 1450 - type: AsteroidRock - components: - - pos: -1.5,-26.5 - parent: 1 - type: Transform -- uid: 1451 - type: AsteroidRock - components: - - pos: -1.5,-27.5 - parent: 1 - type: Transform -- uid: 1452 - type: AsteroidRock - components: - - pos: -2.5,-26.5 - parent: 1 - type: Transform -- uid: 1453 - type: AsteroidRock - components: - - pos: -2.5,-27.5 - parent: 1 - type: Transform -- uid: 1454 - type: AtmosFixBlockerMarker - components: - - pos: 12.5,2.5 - parent: 1 - type: Transform -- uid: 1455 - type: AsteroidRock - components: - - pos: -3.5,-27.5 - parent: 1 - type: Transform -- uid: 1456 - type: AsteroidRock - components: - - pos: -4.5,-26.5 - parent: 1 - type: Transform -- uid: 1457 - type: AtmosFixBlockerMarker - components: - - pos: 12.5,1.5 - parent: 1 - type: Transform -- uid: 1458 - type: AsteroidRock - components: - - pos: 1.5,-28.5 - parent: 1 - type: Transform -- uid: 1459 - type: AsteroidRock - components: - - pos: 2.5,-28.5 - parent: 1 - type: Transform -- uid: 1460 - type: AsteroidRock - components: - - pos: 3.5,-28.5 - parent: 1 - type: Transform -- uid: 1461 - type: AtmosFixBlockerMarker - components: - - pos: 11.5,2.5 - parent: 1 - type: Transform -- uid: 1462 - type: AsteroidRock - components: - - pos: 5.5,-28.5 - parent: 1 - type: Transform -- uid: 1463 - type: AsteroidRock - components: - - pos: 6.5,-28.5 - parent: 1 - type: Transform -- uid: 1464 - type: AsteroidRock - components: - - pos: 7.5,-28.5 - parent: 1 - type: Transform -- uid: 1465 - type: AsteroidRock - components: - - pos: 8.5,-28.5 - parent: 1 - type: Transform -- uid: 1466 - type: AsteroidRock - components: - - pos: 9.5,-28.5 - parent: 1 - type: Transform -- uid: 1467 - type: AsteroidRock - components: - - pos: 10.5,-28.5 - parent: 1 - type: Transform -- uid: 1468 - type: AsteroidRock - components: - - pos: 17.5,-27.5 - parent: 1 - type: Transform -- uid: 1469 - type: AsteroidRock - components: - - pos: 17.5,-26.5 - parent: 1 - type: Transform -- uid: 1470 - type: AsteroidRock - components: - - pos: 17.5,-25.5 - parent: 1 - type: Transform -- uid: 1471 - type: AsteroidRock - components: - - pos: 9.5,-27.5 - parent: 1 - type: Transform -- uid: 1472 - type: AsteroidRock - components: - - pos: 9.5,-26.5 - parent: 1 - type: Transform -- uid: 1473 - type: AsteroidRock - components: - - pos: 9.5,-25.5 - parent: 1 - type: Transform -- uid: 1474 - type: AsteroidRock - components: - - pos: 10.5,-27.5 - parent: 1 - type: Transform -- uid: 1475 - type: AsteroidRock - components: - - pos: 10.5,-26.5 - parent: 1 - type: Transform -- uid: 1476 - type: AsteroidRock - components: - - pos: 10.5,-25.5 - parent: 1 - type: Transform -- uid: 1477 - type: AsteroidRock - components: - - pos: 11.5,-27.5 - parent: 1 - type: Transform -- uid: 1478 - type: AsteroidRock - components: - - pos: 11.5,-26.5 - parent: 1 - type: Transform -- uid: 1479 - type: AsteroidRock - components: - - pos: 11.5,-25.5 - parent: 1 - type: Transform -- uid: 1480 - type: AsteroidRock - components: - - pos: 12.5,-27.5 - parent: 1 - type: Transform -- uid: 1481 - type: AsteroidRock - components: - - pos: 12.5,-26.5 - parent: 1 - type: Transform -- uid: 1482 - type: AsteroidRock - components: - - pos: 12.5,-25.5 - parent: 1 - type: Transform -- uid: 1483 - type: AsteroidRock - components: - - pos: 13.5,-27.5 - parent: 1 - type: Transform -- uid: 1484 - type: AsteroidRock - components: - - pos: 13.5,-26.5 - parent: 1 - type: Transform -- uid: 1485 - type: AtmosFixBlockerMarker - components: - - pos: 11.5,1.5 - parent: 1 - type: Transform -- uid: 1486 - type: AsteroidRock - components: - - pos: 14.5,-27.5 - parent: 1 - type: Transform -- uid: 1487 - type: AtmosFixBlockerMarker - components: - - pos: 10.5,1.5 - parent: 1 - type: Transform -- uid: 1488 - type: AsteroidRock - components: - - pos: 14.5,-25.5 - parent: 1 - type: Transform -- uid: 1489 - type: AtmosFixBlockerMarker - components: - - pos: 16.5,-0.5 - parent: 1 - type: Transform -- uid: 1490 - type: AtmosFixBlockerMarker - components: - - pos: 10.5,2.5 - parent: 1 - type: Transform -- uid: 1491 - type: AsteroidRock - components: - - pos: 15.5,-25.5 - parent: 1 - type: Transform -- uid: 1492 - type: AsteroidRock - components: - - pos: 16.5,-27.5 - parent: 1 - type: Transform -- uid: 1493 - type: AsteroidRock - components: - - pos: 16.5,-26.5 - parent: 1 - type: Transform -- uid: 1494 - type: AsteroidRock - components: - - pos: 16.5,-25.5 - parent: 1 - type: Transform -- uid: 1495 - type: AsteroidRock - components: - - pos: 19.5,-25.5 - parent: 1 - type: Transform -- uid: 1496 - type: AsteroidRock - components: - - pos: 19.5,-24.5 - parent: 1 - type: Transform -- uid: 1497 - type: AsteroidRock - components: - - pos: 19.5,-23.5 - parent: 1 - type: Transform -- uid: 1498 - type: AsteroidRock - components: - - pos: 19.5,-22.5 - parent: 1 - type: Transform -- uid: 1499 - type: AsteroidRock - components: - - pos: 19.5,-21.5 - parent: 1 - type: Transform -- uid: 1500 - type: AsteroidRock - components: - - pos: 16.5,-20.5 - parent: 1 - type: Transform -- uid: 1501 - type: AsteroidRock - components: - - pos: 16.5,-22.5 - parent: 1 - type: Transform -- uid: 1502 - type: AsteroidRock - components: - - pos: 18.5,-21.5 - parent: 1 - type: Transform -- uid: 1503 - type: AsteroidRock - components: - - pos: 18.5,-25.5 - parent: 1 - type: Transform -- uid: 1504 - type: AsteroidRock - components: - - pos: 18.5,-24.5 - parent: 1 - type: Transform -- uid: 1505 - type: AsteroidRock - components: - - pos: 18.5,-23.5 - parent: 1 - type: Transform -- uid: 1506 - type: AsteroidRock - components: - - pos: 18.5,-22.5 - parent: 1 - type: Transform -- uid: 1507 - type: AsteroidRock - components: - - pos: 19.5,-20.5 - parent: 1 - type: Transform -- uid: 1508 - type: AsteroidRock - components: - - pos: 16.5,-21.5 - parent: 1 - type: Transform -- uid: 1509 - type: AsteroidRock - components: - - pos: 17.5,-22.5 - parent: 1 - type: Transform -- uid: 1510 - type: AsteroidRock - components: - - pos: 18.5,-18.5 - parent: 1 - type: Transform -- uid: 1511 - type: AsteroidRock - components: - - pos: 2.5,6.5 - parent: 1 - type: Transform -- uid: 1512 - type: AsteroidRock - components: - - pos: 2.5,5.5 - parent: 1 - type: Transform -- uid: 1513 - type: AsteroidRock - components: - - pos: 3.5,6.5 - parent: 1 - type: Transform -- uid: 1514 - type: AsteroidRock - components: - - pos: 3.5,5.5 - parent: 1 - type: Transform -- uid: 1515 - type: AtmosFixBlockerMarker - components: - - pos: -13.5,-4.5 - parent: 1 - type: Transform -- uid: 1516 - type: AtmosFixBlockerMarker - components: - - pos: -13.5,-5.5 - parent: 1 - type: Transform -- uid: 1517 - type: AtmosFixBlockerMarker - components: - - pos: -15.5,-4.5 - parent: 1 - type: Transform -- uid: 1518 - type: AsteroidRock - components: - - pos: 5.5,5.5 - parent: 1 - type: Transform -- uid: 1519 - type: AsteroidRock - components: - - pos: 6.5,5.5 - parent: 1 - type: Transform -- uid: 1520 - type: AtmosFixBlockerMarker - components: - - pos: -13.5,-6.5 - parent: 1 - type: Transform -- uid: 1521 - type: AtmosFixBlockerMarker - components: - - pos: -13.5,-7.5 - parent: 1 - type: Transform -- uid: 1522 - type: AtmosFixBlockerMarker - components: - - pos: -14.5,-9.5 - parent: 1 - type: Transform -- uid: 1523 - type: AtmosFixBlockerMarker - components: - - pos: -13.5,-8.5 - parent: 1 - type: Transform -- uid: 1524 - type: AsteroidRock - components: - - pos: 11.5,5.5 - parent: 1 - type: Transform -- uid: 1525 - type: AsteroidRock - components: - - pos: 12.5,5.5 - parent: 1 - type: Transform -- uid: 1526 - type: AsteroidRock - components: - - pos: 13.5,5.5 - parent: 1 - type: Transform -- uid: 1527 - type: AtmosFixBlockerMarker - components: - - pos: -14.5,-8.5 - parent: 1 - type: Transform -- uid: 1528 - type: AsteroidRock - components: - - pos: 11.5,6.5 - parent: 1 - type: Transform -- uid: 1529 - type: AsteroidRock - components: - - pos: 10.5,6.5 - parent: 1 - type: Transform -- uid: 1530 - type: AsteroidRock - components: - - pos: 9.5,6.5 - parent: 1 - type: Transform -- uid: 1531 - type: AsteroidRock - components: - - pos: 7.5,4.5 - parent: 1 - type: Transform -- uid: 1532 - type: AsteroidRock - components: - - pos: 7.5,3.5 - parent: 1 - type: Transform -- uid: 1533 - type: AsteroidRock - components: - - pos: 8.5,4.5 - parent: 1 - type: Transform -- uid: 1534 - type: AsteroidRock - components: - - pos: 8.5,3.5 - parent: 1 - type: Transform -- uid: 1535 - type: AsteroidRock - components: - - pos: 9.5,4.5 - parent: 1 - type: Transform -- uid: 1536 - type: AsteroidRock - components: - - pos: 9.5,3.5 - parent: 1 - type: Transform -- uid: 1537 - type: AsteroidRock - components: - - pos: 10.5,4.5 - parent: 1 - type: Transform -- uid: 1538 - type: AsteroidRock - components: - - pos: 10.5,3.5 - parent: 1 - type: Transform -- uid: 1539 - type: AsteroidRock - components: - - pos: 11.5,4.5 - parent: 1 - type: Transform -- uid: 1540 - type: AsteroidRock - components: - - pos: 11.5,3.5 - parent: 1 - type: Transform -- uid: 1541 - type: AsteroidRock - components: - - pos: 12.5,4.5 - parent: 1 - type: Transform -- uid: 1542 - type: AsteroidRock - components: - - pos: 12.5,3.5 - parent: 1 - type: Transform -- uid: 1543 - type: AsteroidRock - components: - - pos: 13.5,4.5 - parent: 1 - type: Transform -- uid: 1544 - type: AsteroidRock - components: - - pos: 13.5,3.5 - parent: 1 - type: Transform -- uid: 1545 - type: AsteroidRock - components: - - pos: 14.5,4.5 - parent: 1 - type: Transform -- uid: 1546 - type: AsteroidRock - components: - - pos: 14.5,3.5 - parent: 1 - type: Transform -- uid: 1547 - type: AsteroidRock - components: - - pos: 15.5,4.5 - parent: 1 - type: Transform -- uid: 1548 - type: AsteroidRock - components: - - pos: 15.5,3.5 - parent: 1 - type: Transform -- uid: 1549 - type: AsteroidRock - components: - - pos: 16.5,4.5 - parent: 1 - type: Transform -- uid: 1550 - type: AsteroidRock - components: - - pos: 16.5,3.5 - parent: 1 - type: Transform -- uid: 1551 - type: AsteroidRock - components: - - pos: 16.5,2.5 - parent: 1 - type: Transform -- uid: 1552 - type: AsteroidRock - components: - - pos: 16.5,1.5 - parent: 1 - type: Transform -- uid: 1553 - type: AsteroidRock - components: - - pos: 16.5,0.5 - parent: 1 - type: Transform -- uid: 1554 - type: AsteroidRock - components: - - pos: 17.5,2.5 - parent: 1 - type: Transform -- uid: 1555 - type: AsteroidRock - components: - - pos: 17.5,1.5 - parent: 1 - type: Transform -- uid: 1556 - type: AsteroidRock - components: - - pos: 17.5,0.5 - parent: 1 - type: Transform -- uid: 1557 - type: AsteroidRock - components: - - pos: 17.5,-0.5 - parent: 1 - type: Transform -- uid: 1558 - type: AsteroidRock - components: - - pos: 17.5,-1.5 - parent: 1 - type: Transform -- uid: 1559 - type: AsteroidRock - components: - - pos: 17.5,-2.5 - parent: 1 - type: Transform -- uid: 1560 - type: AsteroidRock - components: - - pos: 18.5,-1.5 - parent: 1 - type: Transform -- uid: 1561 - type: AsteroidRock - components: - - pos: 18.5,-2.5 - parent: 1 - type: Transform -- uid: 1562 - type: AsteroidRock - components: - - pos: 18.5,-3.5 - parent: 1 - type: Transform -- uid: 1563 - type: AsteroidRock - components: - - pos: 18.5,-4.5 - parent: 1 - type: Transform -- uid: 1564 - type: AsteroidRock - components: - - pos: 19.5,-4.5 - parent: 1 - type: Transform -- uid: 1565 - type: AsteroidRock - components: - - pos: 19.5,-5.5 - parent: 1 - type: Transform -- uid: 1566 - type: AsteroidRock - components: - - pos: 19.5,-6.5 - parent: 1 - type: Transform -- uid: 1567 - type: AsteroidRock - components: - - pos: 17.5,-4.5 - parent: 1 - type: Transform -- uid: 1568 - type: AsteroidRock - components: - - pos: 17.5,-5.5 - parent: 1 - type: Transform -- uid: 1569 - type: AsteroidRock - components: - - pos: 18.5,-5.5 - parent: 1 - type: Transform -- uid: 1570 - type: AsteroidRock - components: - - pos: 18.5,-6.5 - parent: 1 - type: Transform -- uid: 1571 - type: AsteroidRock - components: - - pos: 18.5,-7.5 - parent: 1 - type: Transform -- uid: 1572 - type: AsteroidRock - components: - - pos: 18.5,-8.5 - parent: 1 - type: Transform -- uid: 1573 - type: AsteroidRock - components: - - pos: 18.5,-9.5 - parent: 1 - type: Transform -- uid: 1574 - type: AsteroidRock - components: - - pos: 17.5,-6.5 - parent: 1 - type: Transform -- uid: 1575 - type: AsteroidRock - components: - - pos: 17.5,-8.5 - parent: 1 - type: Transform -- uid: 1576 - type: AsteroidRock - components: - - pos: 17.5,-9.5 - parent: 1 - type: Transform -- uid: 1577 - type: AsteroidRock - components: - - pos: 17.5,-10.5 - parent: 1 - type: Transform -- uid: 1578 - type: AsteroidRock - components: - - pos: 18.5,-10.5 - parent: 1 - type: Transform -- uid: 1579 - type: AsteroidRock - components: - - pos: 18.5,-11.5 - parent: 1 - type: Transform -- uid: 1580 - type: AsteroidRock - components: - - pos: 17.5,-7.5 - parent: 1 - type: Transform -- uid: 1581 - type: AsteroidRock - components: - - pos: 18.5,-12.5 - parent: 1 - type: Transform -- uid: 1582 - type: AsteroidRock - components: - - pos: 19.5,-11.5 - parent: 1 - type: Transform -- uid: 1583 - type: AsteroidRock - components: - - pos: 19.5,-12.5 - parent: 1 - type: Transform -- uid: 1584 - type: AsteroidRock - components: - - pos: 19.5,-13.5 - parent: 1 - type: Transform -- uid: 1585 - type: AsteroidRock - components: - - pos: 19.5,-14.5 - parent: 1 - type: Transform -- uid: 1586 - type: AsteroidRock - components: - - pos: 19.5,-15.5 - parent: 1 - type: Transform -- uid: 1587 - type: AsteroidRock - components: - - pos: 19.5,-16.5 - parent: 1 - type: Transform -- uid: 1588 - type: AsteroidRock - components: - - pos: 19.5,-17.5 - parent: 1 - type: Transform -- uid: 1589 - type: AsteroidRock - components: - - pos: 18.5,-17.5 - parent: 1 - type: Transform -- uid: 1590 - type: AsteroidRock - components: - - pos: 18.5,-16.5 - parent: 1 - type: Transform -- uid: 1591 - type: AsteroidRock - components: - - pos: 18.5,-15.5 - parent: 1 - type: Transform -- uid: 1592 - type: AsteroidRock - components: - - pos: 18.5,-14.5 - parent: 1 - type: Transform -- uid: 1593 - type: AsteroidRock - components: - - pos: 18.5,-13.5 - parent: 1 - type: Transform -- uid: 1594 - type: AsteroidRock - components: - - pos: 15.5,-19.5 - parent: 1 - type: Transform -- uid: 1595 - type: AsteroidRock - components: - - pos: 15.5,-18.5 - parent: 1 - type: Transform -- uid: 1596 - type: AsteroidRock - components: - - pos: 15.5,-20.5 - parent: 1 - type: Transform -- uid: 1597 - type: AsteroidRock - components: - - pos: 15.5,-21.5 - parent: 1 - type: Transform -- uid: 1598 - type: AsteroidRock - components: - - pos: 15.5,-22.5 - parent: 1 - type: Transform -- uid: 1599 - type: AsteroidRock - components: - - pos: 15.5,-23.5 - parent: 1 - type: Transform -- uid: 1600 - type: AsteroidRock - components: - - pos: 15.5,-24.5 - parent: 1 - type: Transform -- uid: 1601 - type: AsteroidRock - components: - - pos: 16.5,-23.5 - parent: 1 - type: Transform -- uid: 1602 - type: AsteroidRock - components: - - pos: 16.5,-24.5 - parent: 1 - type: Transform -- uid: 1603 - type: AsteroidRock - components: - - pos: 17.5,-23.5 - parent: 1 - type: Transform -- uid: 1604 - type: AsteroidRock - components: - - pos: 17.5,-24.5 - parent: 1 - type: Transform -- uid: 1605 - type: AtmosFixBlockerMarker - components: - - pos: 12.5,-1.5 - parent: 1 - type: Transform -- uid: 1606 - type: AtmosFixBlockerMarker - components: - - pos: 13.5,-1.5 - parent: 1 - type: Transform -- uid: 1607 - type: AtmosFixBlockerMarker - components: - - pos: 14.5,-1.5 - parent: 1 - type: Transform -- uid: 1608 - type: AtmosFixBlockerMarker - components: - - pos: 15.5,-1.5 - parent: 1 - type: Transform -- uid: 1609 - type: AtmosFixBlockerMarker - components: - - pos: 16.5,-1.5 - parent: 1 - type: Transform -- uid: 1610 - type: AtmosFixBlockerMarker - components: - - pos: 16.5,-4.5 - parent: 1 - type: Transform -- uid: 1611 - type: AtmosFixBlockerMarker - components: - - pos: 16.5,-5.5 - parent: 1 - type: Transform -- uid: 1612 - type: AtmosFixBlockerMarker - components: - - pos: 16.5,-6.5 - parent: 1 - type: Transform -- uid: 1613 - type: AtmosFixBlockerMarker - components: - - pos: 16.5,-7.5 - parent: 1 - type: Transform -- uid: 1614 - type: AtmosFixBlockerMarker - components: - - pos: 16.5,-8.5 - parent: 1 - type: Transform -- uid: 1615 - type: AtmosFixBlockerMarker - components: - - pos: 16.5,-9.5 - parent: 1 - type: Transform -- uid: 1616 - type: AtmosFixBlockerMarker - components: - - pos: 16.5,-10.5 - parent: 1 - type: Transform -- uid: 1617 - type: AtmosFixBlockerMarker - components: - - pos: 14.5,-2.5 - parent: 1 - type: Transform -- uid: 1618 - type: AtmosFixBlockerMarker - components: - - pos: 14.5,-3.5 - parent: 1 - type: Transform -- uid: 1619 - type: AtmosFixBlockerMarker - components: - - pos: 14.5,-4.5 - parent: 1 - type: Transform -- uid: 1620 - type: AtmosFixBlockerMarker - components: - - pos: 14.5,-5.5 - parent: 1 - type: Transform -- uid: 1621 - type: AtmosFixBlockerMarker - components: - - pos: 14.5,-6.5 - parent: 1 - type: Transform -- uid: 1622 - type: AtmosFixBlockerMarker - components: - - pos: 14.5,-7.5 - parent: 1 - type: Transform -- uid: 1623 - type: AtmosFixBlockerMarker - components: - - pos: 14.5,-8.5 - parent: 1 - type: Transform -- uid: 1624 - type: AtmosFixBlockerMarker - components: - - pos: 14.5,-9.5 - parent: 1 - type: Transform -- uid: 1625 - type: AtmosFixBlockerMarker - components: - - pos: 14.5,-10.5 - parent: 1 - type: Transform -- uid: 1626 - type: AtmosFixBlockerMarker - components: - - pos: 15.5,-2.5 - parent: 1 - type: Transform -- uid: 1627 - type: AtmosFixBlockerMarker - components: - - pos: 15.5,-3.5 - parent: 1 - type: Transform -- uid: 1628 - type: AtmosFixBlockerMarker - components: - - pos: 15.5,-4.5 - parent: 1 - type: Transform -- uid: 1629 - type: AtmosFixBlockerMarker - components: - - pos: 15.5,-5.5 - parent: 1 - type: Transform -- uid: 1630 - type: AtmosFixBlockerMarker - components: - - pos: 15.5,-6.5 - parent: 1 - type: Transform -- uid: 1631 - type: AtmosFixBlockerMarker - components: - - pos: 15.5,-7.5 - parent: 1 - type: Transform -- uid: 1632 - type: AtmosFixBlockerMarker - components: - - pos: 15.5,-8.5 - parent: 1 - type: Transform -- uid: 1633 - type: AtmosFixBlockerMarker - components: - - pos: 15.5,-9.5 - parent: 1 - type: Transform -- uid: 1634 - type: AtmosFixBlockerMarker - components: - - pos: 15.5,-10.5 - parent: 1 - type: Transform -- uid: 1635 - type: AtmosFixBlockerMarker - components: - - pos: 16.5,-2.5 - parent: 1 - type: Transform -- uid: 1636 - type: AtmosFixBlockerMarker - components: - - pos: 16.5,-3.5 - parent: 1 - type: Transform -- uid: 1637 - type: AtmosFixBlockerMarker - components: - - pos: 17.5,-3.5 - parent: 1 - type: Transform -- uid: 1638 - type: AtmosFixBlockerMarker - components: - - pos: 15.5,-12.5 - parent: 1 - type: Transform -- uid: 1639 - type: AtmosFixBlockerMarker - components: - - pos: 15.5,-13.5 - parent: 1 - type: Transform -- uid: 1640 - type: AtmosFixBlockerMarker - components: - - pos: 15.5,-14.5 - parent: 1 - type: Transform -- uid: 1641 - type: AtmosFixBlockerMarker - components: - - pos: 15.5,-15.5 - parent: 1 - type: Transform -- uid: 1642 - type: AtmosFixBlockerMarker - components: - - pos: 15.5,-16.5 - parent: 1 - type: Transform -- uid: 1643 - type: AtmosFixBlockerMarker - components: - - pos: 15.5,-17.5 - parent: 1 - type: Transform -- uid: 1644 - type: AtmosFixBlockerMarker - components: - - pos: 16.5,-12.5 - parent: 1 - type: Transform -- uid: 1645 - type: AtmosFixBlockerMarker - components: - - pos: 16.5,-13.5 - parent: 1 - type: Transform -- uid: 1646 - type: AtmosFixBlockerMarker - components: - - pos: 16.5,-14.5 - parent: 1 - type: Transform -- uid: 1647 - type: AtmosFixBlockerMarker - components: - - pos: 16.5,-15.5 - parent: 1 - type: Transform -- uid: 1648 - type: AtmosFixBlockerMarker - components: - - pos: 16.5,-16.5 - parent: 1 - type: Transform -- uid: 1649 - type: AtmosFixBlockerMarker - components: - - pos: 16.5,-17.5 - parent: 1 - type: Transform -- uid: 1650 - type: AtmosFixBlockerMarker - components: - - pos: 17.5,-12.5 - parent: 1 - type: Transform -- uid: 1651 - type: AtmosFixBlockerMarker - components: - - pos: 17.5,-13.5 - parent: 1 - type: Transform -- uid: 1652 - type: AtmosFixBlockerMarker - components: - - pos: 17.5,-14.5 - parent: 1 - type: Transform -- uid: 1653 - type: AtmosFixBlockerMarker - components: - - pos: 17.5,-15.5 - parent: 1 - type: Transform -- uid: 1654 - type: AtmosFixBlockerMarker - components: - - pos: 17.5,-16.5 - parent: 1 - type: Transform -- uid: 1655 - type: AtmosFixBlockerMarker - components: - - pos: 17.5,-17.5 - parent: 1 - type: Transform -- uid: 1656 - type: AtmosFixBlockerMarker - components: - - pos: 17.5,-11.5 - parent: 1 - type: Transform -- uid: 1657 - type: AtmosFixBlockerMarker - components: - - pos: 16.5,-11.5 - parent: 1 - type: Transform -- uid: 1658 - type: AtmosFixBlockerMarker - components: - - pos: 15.5,-11.5 - parent: 1 - type: Transform -- uid: 1659 - type: AtmosFixBlockerMarker - components: - - pos: 16.5,-18.5 - parent: 1 - type: Transform -- uid: 1660 - type: AtmosFixBlockerMarker - components: - - pos: 16.5,-19.5 - parent: 1 - type: Transform -- uid: 1661 - type: AtmosFixBlockerMarker - components: - - pos: 17.5,-18.5 - parent: 1 - type: Transform -- uid: 1662 - type: AtmosFixBlockerMarker - components: - - pos: 17.5,-19.5 - parent: 1 - type: Transform -- uid: 1663 - type: AtmosFixBlockerMarker - components: - - pos: 17.5,-21.5 - parent: 1 - type: Transform -- uid: 1664 - type: AtmosFixBlockerMarker - components: - - pos: 17.5,-20.5 - parent: 1 - type: Transform -- uid: 1665 - type: AtmosFixBlockerMarker - components: - - pos: 18.5,-20.5 - parent: 1 - type: Transform -- uid: 1666 - type: AtmosFixBlockerMarker - components: - - pos: 18.5,-19.5 - parent: 1 - type: Transform -- uid: 1667 - type: AtmosFixBlockerMarker - components: - - pos: 19.5,-19.5 - parent: 1 - type: Transform -- uid: 1668 - type: AtmosFixBlockerMarker - components: - - pos: 19.5,-18.5 - parent: 1 - type: Transform -- uid: 1669 - type: AtmosFixBlockerMarker - components: - - pos: 13.5,-25.5 - parent: 1 - type: Transform -- uid: 1670 - type: AtmosFixBlockerMarker - components: - - pos: 14.5,-26.5 - parent: 1 - type: Transform -- uid: 1671 - type: AtmosFixBlockerMarker - components: - - pos: 15.5,-26.5 - parent: 1 - type: Transform -- uid: 1672 - type: AtmosFixBlockerMarker - components: - - pos: 15.5,-27.5 - parent: 1 - type: Transform -- uid: 1673 - type: AtmosFixBlockerMarker - components: - - pos: 4.5,-28.5 - parent: 1 - type: Transform -- uid: 1674 - type: AtmosFixBlockerMarker - components: - - pos: -3.5,-26.5 - parent: 1 - type: Transform -- uid: 1675 - type: AtmosFixBlockerMarker - components: - - pos: -4.5,-27.5 - parent: 1 - type: Transform -- uid: 1676 - type: AtmosFixBlockerMarker - components: - - pos: -7.5,-24.5 - parent: 1 - type: Transform -- uid: 1677 - type: AtmosFixBlockerMarker - components: - - pos: -7.5,-23.5 - parent: 1 - type: Transform -- uid: 1678 - type: AtmosFixBlockerMarker - components: - - pos: -8.5,-23.5 - parent: 1 - type: Transform -- uid: 1679 - type: AtmosFixBlockerMarker - components: - - pos: -8.5,-22.5 - parent: 1 - type: Transform -- uid: 1680 - type: AtmosFixBlockerMarker - components: - - pos: -8.5,-21.5 - parent: 1 - type: Transform -- uid: 1681 - type: AtmosFixBlockerMarker - components: - - pos: -8.5,-20.5 - parent: 1 - type: Transform -- uid: 1682 - type: AtmosFixBlockerMarker - components: - - pos: -7.5,-21.5 - parent: 1 - type: Transform -- uid: 1683 - type: AtmosFixBlockerMarker - components: - - pos: -7.5,-22.5 - parent: 1 - type: Transform -- uid: 1684 - type: AtmosFixBlockerMarker - components: - - pos: -11.5,-19.5 - parent: 1 - type: Transform -- uid: 1685 - type: AtmosFixBlockerMarker - components: - - pos: -11.5,-18.5 - parent: 1 - type: Transform -- uid: 1686 - type: AtmosFixBlockerMarker - components: - - pos: -15.5,-17.5 - parent: 1 - type: Transform -- uid: 1687 - type: AtmosFixBlockerMarker - components: - - pos: -15.5,-16.5 - parent: 1 - type: Transform -- uid: 1688 - type: AtmosFixBlockerMarker - components: - - pos: -15.5,-15.5 - parent: 1 - type: Transform -- uid: 1689 - type: AtmosFixBlockerMarker - components: - - pos: -17.5,-12.5 - parent: 1 - type: Transform -- uid: 1690 - type: AtmosFixBlockerMarker - components: - - pos: -17.5,-11.5 - parent: 1 - type: Transform -- uid: 1691 - type: AtmosFixBlockerMarker - components: - - pos: -17.5,-4.5 - parent: 1 - type: Transform -- uid: 1692 - type: AtmosFixBlockerMarker - components: - - pos: -15.5,0.5 - parent: 1 - type: Transform -- uid: 1693 - type: AtmosFixBlockerMarker - components: - - pos: -15.5,1.5 - parent: 1 - type: Transform -- uid: 1694 - type: AtmosFixBlockerMarker - components: - - pos: -15.5,2.5 - parent: 1 - type: Transform -- uid: 1695 - type: AtmosFixBlockerMarker - components: - - pos: -14.5,2.5 - parent: 1 - type: Transform -- uid: 1696 - type: AtmosFixBlockerMarker - components: - - pos: -12.5,2.5 - parent: 1 - type: Transform -- uid: 1697 - type: AtmosFixBlockerMarker - components: - - pos: -11.5,2.5 - parent: 1 - type: Transform -- uid: 1698 - type: AtmosFixBlockerMarker - components: - - pos: -11.5,3.5 - parent: 1 - type: Transform -- uid: 1699 - type: AtmosFixBlockerMarker - components: - - pos: -11.5,4.5 - parent: 1 - type: Transform -- uid: 1700 - type: AtmosFixBlockerMarker - components: - - pos: -12.5,4.5 - parent: 1 - type: Transform -- uid: 1701 - type: AtmosFixBlockerMarker - components: - - pos: -7.5,6.5 - parent: 1 - type: Transform -- uid: 1702 - type: AtmosFixBlockerMarker - components: - - pos: -5.5,6.5 - parent: 1 - type: Transform -- uid: 1703 - type: AtmosFixBlockerMarker - components: - - pos: -4.5,6.5 - parent: 1 - type: Transform -- uid: 1704 - type: AtmosFixBlockerMarker - components: - - pos: 0.5,7.5 - parent: 1 - type: Transform -- uid: 1705 - type: AtmosFixBlockerMarker - components: - - pos: 1.5,7.5 - parent: 1 - type: Transform -- uid: 1706 - type: AtmosFixBlockerMarker - components: - - pos: 4.5,5.5 - parent: 1 - type: Transform -- uid: 1707 - type: AtmosFixBlockerMarker - components: - - pos: 4.5,6.5 - parent: 1 - type: Transform -- uid: 1708 - type: AtmosFixBlockerMarker - components: - - pos: 5.5,6.5 - parent: 1 - type: Transform -- uid: 1709 - type: AtmosFixBlockerMarker - components: - - pos: 7.5,5.5 - parent: 1 - type: Transform -- uid: 1710 - type: AtmosFixBlockerMarker - components: - - pos: 8.5,5.5 - parent: 1 - type: Transform -- uid: 1711 - type: AtmosFixBlockerMarker - components: - - pos: 9.5,5.5 - parent: 1 - type: Transform -- uid: 1712 - type: AtmosFixBlockerMarker - components: - - pos: 10.5,5.5 - parent: 1 - type: Transform -- uid: 1713 - type: AtmosFixBlockerMarker - components: - - pos: 14.5,5.5 - parent: 1 - type: Transform -- uid: 1714 - type: BagpipeInstrument - components: - - pos: 0.3140099,4.667583 - parent: 1 - type: Transform -- uid: 1715 - type: FoodEgg - components: - - pos: 0.7827599,4.3652897 - parent: 1 - type: Transform -- uid: 1716 - type: ClothingHeadHelmetSpaceNinja - components: - - pos: -6.707909,-13.321645 - parent: 1 - type: Transform -- uid: 1717 - type: PonderingOrb - components: - - pos: -10.45791,-14.437002 - parent: 1 - type: Transform -- uid: 1718 - type: ClothingShoesColorBrown - components: - - pos: -10.541243,-14.864383 - parent: 1 - type: Transform -- uid: 1719 - type: DrinkMelonLiquorBottleFull - components: - - pos: -10.093326,-14.530817 - parent: 1 - type: Transform -- uid: 1720 - type: ClothingHandsGlovesSpaceNinja - components: - - pos: -6.4162426,-13.717752 - parent: 1 - type: Transform -- uid: 1721 - type: ReinforcedWindow - components: - - pos: -12.5,-5.5 - parent: 1 - type: Transform -- uid: 1722 - type: ReinforcedWindow - components: - - pos: -12.5,-6.5 - parent: 1 - type: Transform -- uid: 1723 - type: ReinforcedWindow - components: - - pos: -12.5,-7.5 - parent: 1 - type: Transform -- uid: 1724 - type: Grille - components: - - pos: -12.5,-7.5 - parent: 1 - type: Transform -- uid: 1725 - type: Grille - components: - - pos: -12.5,-6.5 - parent: 1 - type: Transform -- uid: 1726 - type: Grille - components: - - pos: -12.5,-5.5 - parent: 1 - type: Transform -- uid: 1727 - type: PlushieNuke - components: - - pos: -14.433495,-4.3680067 - parent: 1 - type: Transform -- uid: 1728 - type: WeaponFlareGun - components: - - pos: -13.808495,-4.3680067 - parent: 1 - type: Transform -- uid: 1729 - type: FloraRockSolid03 - components: - - pos: -15.504423,-7.537211 - parent: 1 - type: Transform -- uid: 1730 - type: ToyNuke - components: - - pos: -15.183495,-4.7015715 - parent: 1 - type: Transform -- uid: 1731 - type: PlushieSpaceLizard - components: - - pos: -15.454328,-8.454178 - parent: 1 - type: Transform -- uid: 1732 - type: GunpetInstrument - components: - - pos: -14.829328,-8.412482 - parent: 1 - type: Transform -- uid: 1733 - type: FloraRockSolid01 - components: - - pos: -13.508418,-5.0465417 - parent: 1 - type: Transform -- uid: 1734 - type: FloraRockSolid02 - components: - - pos: -14.54658,-3.3604956 - parent: 1 - type: Transform -- uid: 1735 - type: SignCorrosives - components: - - pos: 16.5,-1.5 - parent: 1 - type: Transform -- uid: 1736 - type: SignBlankMed - components: - - pos: 14.5,-8.5 - parent: 1 - type: Transform -- uid: 1737 - type: SignSecureMedRed - components: - - pos: 8.5,1.5 - parent: 1 - type: Transform -- uid: 1738 - type: SignSecureMedRed - components: - - pos: 8.5,-1.5 - parent: 1 - type: Transform -- uid: 1739 - type: WetFloorSign - components: - - pos: 15.868495,-17.31335 - parent: 1 - type: Transform -- uid: 1740 - type: WetFloorSign - components: - - pos: 17.753912,-16.500286 - parent: 1 - type: Transform -- uid: 1741 - type: WallWood - components: - - pos: 14.5,-8.5 - parent: 1 - type: Transform -- uid: 1742 - type: WallWood - components: - - pos: 16.5,-1.5 - parent: 1 - type: Transform -- uid: 1743 - type: SignNosmoking - components: - - pos: -0.5,1.5 - parent: 1 - type: Transform -- uid: 1744 - type: CigaretteSpent - components: - - pos: 17.54294,-11.237852 - parent: 1 - type: Transform -- uid: 1745 - type: CigaretteSpent - components: - - rot: -1.5707963267948966 rad - pos: 14.28044,-10.699979 - parent: 1 - type: Transform -- uid: 1746 - type: CigaretteSpent - components: - - rot: -1.5707963267948966 rad - pos: 14.55544,-10.462314 - parent: 1 - type: Transform -- uid: 1747 - type: CigaretteSpent - components: - - rot: 3.141592653589793 rad - pos: 14.41794,-10.7875395 - parent: 1 - type: Transform -- uid: 1748 - type: CigaretteSpent - components: - - rot: 1.5707963267948966 rad - pos: 14.50544,-10.627408 - parent: 1 - type: Transform -- uid: 1749 - type: CigaretteSpent - components: - - pos: 14.58044,-10.389742 - parent: 1 - type: Transform -- uid: 1750 - type: CigaretteSpent - components: - - rot: -1.5707963267948966 rad - pos: 14.65544,-10.639916 - parent: 1 - type: Transform -- uid: 1751 - type: CigaretteSpent - components: - - rot: -1.5707963267948966 rad - pos: 14.61794,-10.364725 - parent: 1 - type: Transform -- uid: 1752 - type: CigaretteSpent - components: - - rot: 3.141592653589793 rad - pos: 14.60544,-10.589881 - parent: 1 - type: Transform -- uid: 1753 - type: CigaretteSpent - components: - - rot: 3.141592653589793 rad - pos: 14.30544,-10.614899 - parent: 1 - type: Transform -- uid: 1754 - type: CigaretteSpent - components: - - rot: 3.141592653589793 rad - pos: 14.66794,-11.002668 - parent: 1 - type: Transform -- uid: 1755 - type: CigaretteSpent - components: - - rot: 1.5707963267948966 rad - pos: 13.95544,-10.289673 - parent: 1 - type: Transform -- uid: 1756 - type: FoodFrozenPopsicleTrash - components: - - rot: 1.5707963267948966 rad - pos: 17.56794,-3.6881335 - parent: 1 - type: Transform -- uid: 1757 - type: FoodFrozenSnowconeTrash - components: - - rot: 1.5707963267948966 rad - pos: 14.30544,-9.904951 - parent: 1 - type: Transform -- uid: 1758 - type: FoodTinMRETrash - components: - - pos: 17.680439,-3.25033 - parent: 1 - type: Transform -- uid: 1759 - type: TrashBananaPeel - components: - - pos: 15.47217,2.5609837 - parent: 1 - type: Transform -- uid: 1760 - type: RandomSpawner - components: - - pos: 16.5,-0.5 - parent: 1 - type: Transform -- uid: 1761 - type: RandomSpawner - components: - - pos: 10.5,2.5 - parent: 1 - type: Transform -... diff --git a/Resources/Maps/SimpleStation14/wizard.yml b/Resources/Maps/SimpleStation14/wizard.yml deleted file mode 100644 index 661217a90c..0000000000 --- a/Resources/Maps/SimpleStation14/wizard.yml +++ /dev/null @@ -1,5733 +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: FloorBlue - 14: FloorBlueCircuit - 15: FloorBoxing - 16: FloorCarpetClown - 17: FloorCarpetOffice - 18: FloorCave - 19: FloorCaveDrought - 20: FloorClown - 21: FloorDark - 22: FloorDarkDiagonal - 23: FloorDarkDiagonalMini - 24: FloorDarkHerringbone - 25: FloorDarkMini - 26: FloorDarkMono - 27: FloorDarkOffset - 28: FloorDarkPavement - 29: FloorDarkPavementVertical - 30: FloorDarkPlastic - 31: FloorDirt - 32: FloorEighties - 33: FloorElevatorShaft - 34: FloorFreezer - 35: FloorGlass - 36: FloorGold - 37: FloorGrass - 38: FloorGrassDark - 39: FloorGrassJungle - 40: FloorGrassLight - 41: FloorGreenCircuit - 42: FloorGym - 43: FloorHydro - 44: FloorKitchen - 45: FloorLaundry - 46: FloorLino - 47: FloorMetalDiamond - 48: FloorMime - 49: FloorMono - 50: FloorPlastic - 51: FloorRGlass - 52: FloorReinforced - 53: FloorRockVault - 54: FloorShowroom - 55: FloorShuttleBlue - 56: FloorShuttleOrange - 57: FloorShuttlePurple - 58: FloorShuttleRed - 59: FloorShuttleWhite - 60: FloorSilver - 61: FloorSnow - 62: FloorSteel - 63: FloorSteelDiagonal - 64: FloorSteelDiagonalMini - 65: FloorSteelDirty - 66: FloorSteelHerringbone - 67: FloorSteelMini - 68: FloorSteelMono - 69: FloorSteelOffset - 70: FloorSteelPavement - 71: FloorSteelPavementVertical - 72: FloorTechMaint - 73: FloorTechMaint2 - 74: FloorTechMaint3 - 75: FloorWhite - 76: FloorWhiteDiagonal - 77: FloorWhiteDiagonalMini - 78: FloorWhiteHerringbone - 79: FloorWhiteMini - 80: FloorWhiteMono - 81: FloorWhiteOffset - 82: FloorWhitePavement - 83: FloorWhitePavementVertical - 84: FloorWhitePlastic - 85: FloorWood - 86: FloorWoodTile - 87: Lattice - 88: Plating -entities: -- uid: 0 - components: - - type: MetaData - - type: Transform - - index: 6 - type: Map - - type: PhysicsMap - - type: Broadphase - - type: OccluderTree -- uid: 1 - type: WallUranium - components: - - pos: 1.5,5.5 - parent: 8 - type: Transform -- uid: 2 - type: WallUranium - components: - - pos: -3.5,9.5 - parent: 8 - type: Transform -- uid: 3 - type: WallUranium - components: - - pos: -3.5,8.5 - parent: 8 - type: Transform -- uid: 4 - type: WallUranium - components: - - pos: -2.5,5.5 - parent: 8 - type: Transform -- uid: 5 - type: WallUranium - components: - - pos: -1.5,-1.5 - parent: 8 - type: Transform -- uid: 6 - type: WallUranium - components: - - pos: -3.5,13.5 - parent: 8 - type: Transform -- uid: 7 - type: WallUranium - components: - - pos: -2.5,-1.5 - parent: 8 - type: Transform -- uid: 8 - components: - - type: MetaData - - pos: 0.4558292,0.42837813 - parent: 0 - type: Transform - - chunks: - -1,-1: - ind: -1,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAABYAAAAWAAAAFgAAABYAAAAWAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAABYAAAAHQAAAB0AAAAdAAAAHQAAAB0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABYAAAAHQAAAB0AAAAjAAAAGgAAAB0AAAAdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWAAAAB0AAAAdAAAAHQAAAB0AAAAdAAAAIwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAA0AAAANAAAAFgAAABYAAAAGQAAAFgAAAAdAAAAHQAAAB0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAABYAAAAHAAAABwAAAAcAAAAHAAAABwAAABYAAAAHQAAACMAAAAaAAAAWAAAAFgAAABYAAAAWAAAAFgAAABYAAAAHAAAABwAAAAjAAAAGgAAACMAAAAcAAAAWAAAAB0AAAAdAAAAHQAAABgAAAAYAAAAGAAAABgAAABYAAAAHAAAABwAAAAcAAAAHAAAABwAAAAcAAAAHAAAAFgAAAAdAAAAHQAAACMAAAAYAAAAGAAAABgAAAAYAAAAWAAAABwAAAAjAAAAHAAAAFgAAAA0AAAANAAAADQAAABYAAAAWAAAAFgAAAAZAAAAGAAAABgAAAAYAAAAGAAAAFgAAAAcAAAAGgAAABwAAAA0AAAAAAAAAAAAAAAAAAAAAAAAADQAAAAdAAAAIwAAAA== - 0,-1: - ind: 0,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWAAAAFgAAABYAAAAWAAAAFgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB0AAAAdAAAAHQAAAB0AAABYAAAAWAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdAAAAGgAAACMAAAAdAAAAHQAAAFgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAB0AAAAdAAAAHQAAAB0AAABYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB0AAAAdAAAAWAAAABkAAABYAAAAWAAAADQAAAA0AAAAWAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAjAAAAHQAAAFgAAAAcAAAAHAAAABwAAAAcAAAAHAAAAFgAAABYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAB0AAABYAAAAHAAAACMAAAAaAAAAIwAAABwAAAAcAAAAWAAAAFgAAABYAAAANAAAADQAAABYAAAAWAAAAB0AAAAdAAAAWAAAABwAAAAcAAAAHAAAABwAAAAcAAAAHAAAABwAAABYAAAAGAAAABgAAAAYAAAAGAAAAFgAAABYAAAAWAAAAFgAAAA0AAAANAAAADQAAABYAAAAHAAAACMAAAAcAAAAWAAAABgAAAAYAAAAGAAAABgAAAA0AAAAHQAAADQAAAAAAAAAAAAAAAAAAAAAAAAANAAAABwAAAAaAAAAHAAAABkAAAAYAAAAIwAAABgAAAAYAAAANAAAAA== - -1,0: - ind: -1,0 - tiles: WAAAABkAAABYAAAAWAAAAFgAAAAcAAAAIwAAABwAAAA0AAAAAAAAAAAAAAAAAAAAAAAAADQAAAAdAAAAGgAAABgAAAAYAAAAGAAAABgAAAAZAAAAHAAAABwAAAAcAAAANAAAAAAAAAAAAAAAAAAAAAAAAAA0AAAAIwAAAFgAAAAYAAAAGAAAACMAAAAYAAAAWAAAABwAAAAcAAAAHAAAADQAAAAAAAAAAAAAAAAAAAAAAAAANAAAACMAAABYAAAAGAAAABgAAAAYAAAAGAAAADQAAAAcAAAAIwAAABwAAAA0AAAAAAAAAAAAAAAAAAAAAAAAADQAAAAdAAAAGgAAABgAAAAjAAAAGAAAABgAAAA0AAAAHAAAABoAAAAcAAAANAAAAAAAAAAAAAAAAAAAAAAAAAA0AAAAHQAAACMAAAAYAAAAGAAAACYAAAAmAAAAWAAAABwAAAAjAAAAHAAAAFgAAAA0AAAANAAAADQAAAA0AAAAWAAAAFgAAAAZAAAAWAAAADQAAAA0AAAAWAAAAFgAAAAcAAAAHAAAABwAAABYAAAAHAAAABwAAAAcAAAAHAAAACMAAAAcAAAAGgAAAAAAAAAAAAAAAAAAAAAAAABYAAAAWAAAABwAAAAcAAAAGQAAABwAAAAaAAAAIwAAABwAAAAaAAAAHAAAACMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAABYAAAAWAAAAFgAAAAcAAAAHAAAABwAAABYAAAAHAAAABwAAABYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABYAAAAWAAAACMAAAAaAAAAWAAAAFgAAABYAAAAWAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAcAAAAHAAAAFgAAAAaAAAAHQAAAB0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA0AAAAGgAAACMAAABYAAAAHQAAACMAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANAAAABwAAAAcAAAAWAAAABoAAAAdAAAAHQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAABYAAAAGQAAAFgAAABYAAAAHQAAACMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANAAAABoAAAAdAAAAWAAAABkAAABYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADQAAAAjAAAAHQAAABoAAAAdAAAAHQAAAA== - 0,0: - ind: 0,0 - tiles: HQAAADQAAAAAAAAAAAAAAAAAAAAAAAAANAAAABwAAAAjAAAAJQAAAFgAAAAYAAAAGAAAABgAAAAYAAAAWAAAACMAAAA0AAAAAAAAAAAAAAAAAAAAAAAAADQAAAAcAAAAHAAAACUAAABYAAAAGAAAABgAAABYAAAAWAAAAFgAAAAjAAAANAAAAAAAAAAAAAAAAAAAAAAAAAA0AAAAHAAAABwAAAAlAAAAWAAAABgAAAAYAAAAGAAAABgAAABYAAAAHQAAADQAAAAAAAAAAAAAAAAAAAAAAAAANAAAABwAAAAjAAAAJQAAAFgAAAAYAAAAGAAAABgAAAAYAAAANAAAAB0AAAA0AAAAAAAAAAAAAAAAAAAAAAAAADQAAAAcAAAAGgAAABwAAAAZAAAAGAAAACMAAAAYAAAAGAAAADQAAABYAAAAWAAAADQAAAA0AAAANAAAADQAAABYAAAAHAAAACMAAAAcAAAAWAAAABgAAAAYAAAAGAAAABgAAABYAAAAHAAAACMAAAAcAAAAHAAAABwAAAAcAAAAWAAAABwAAAAcAAAAHAAAAFgAAABYAAAANAAAADQAAABYAAAAWAAAABwAAAAaAAAAHAAAACMAAAAaAAAAHAAAABkAAAAcAAAAHAAAAFgAAABYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAHAAAAFgAAAAcAAAAHAAAABwAAABYAAAAWAAAAFgAAABYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWAAAAFgAAABYAAAAGgAAACMAAABYAAAAWAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB0AAAAaAAAAWAAAABwAAAAcAAAAWAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAjAAAAHQAAAFgAAAAjAAAAGgAAADQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAABoAAABYAAAAHAAAABwAAAA0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB0AAABYAAAAWAAAABkAAABYAAAAWAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAWAAAAB0AAAAaAAAANAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAABoAAAAdAAAAIwAAADQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - -2,-1: - ind: -2,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANAAAAA== - -2,0: - ind: -2,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - -1,1: - ind: -1,1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAaAAAAHQAAACMAAAAdAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABYAAAAWAAAAB0AAAAaAAAAHQAAACMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAABYAAAANAAAADQAAAA0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - 0,1: - ind: 0,1 - tiles: HQAAACMAAAAdAAAAGgAAAFgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB0AAAAaAAAAHQAAAFgAAABYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA0AAAANAAAAFgAAABYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - 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 - enabled: True - type: Gravity - - chunkCollection: - 0,0: - 2: - color: '#FFFFFFFF' - id: Flowerspv2 - coordinates: 9,0 - 3: - color: '#FFFFFFFF' - id: Flowersbr2 - coordinates: 9,1 - 4: - color: '#FFFFFFFF' - id: Flowersy1 - coordinates: 9,2 - 6: - color: '#FFFFFFFF' - id: Flowerspv3 - coordinates: 9,3 - 84: - color: '#57197CFF' - id: PavementOverlay - coordinates: 8,6 - 17: - color: '#57197CFF' - id: PavementVerticalOverlay - coordinates: 0,12 - 18: - color: '#57197CFF' - id: PavementVerticalOverlay - coordinates: 0,13 - 19: - color: '#57197CFF' - id: PavementVerticalOverlay - coordinates: 1,11 - 21: - color: '#57197CFF' - id: PavementVerticalOverlay - coordinates: 0,10 - 27: - color: '#57197CFF' - id: PavementVerticalOverlay - coordinates: 2,14 - 28: - color: '#57197CFF' - id: PavementVerticalOverlay - coordinates: 2,15 - 29: - color: '#57197CFF' - id: PavementVerticalOverlay - coordinates: 2,16 - 30: - color: '#57197CFF' - id: PavementVerticalOverlay - coordinates: 2,17 - 32: - color: '#57197CFF' - id: PavementVerticalOverlay - coordinates: 0,17 - 40: - color: '#57197CFF' - id: PavementVerticalOverlay - coordinates: 0,3 - 41: - color: '#57197CFF' - id: PavementVerticalOverlay - coordinates: 0,4 - 44: - color: '#57197CFF' - id: PavementVerticalOverlay - 80: - color: '#57197CFF' - id: PavementOverlay - coordinates: 7,7 - 81: - color: '#57197CFF' - id: PavementOverlay - coordinates: 8,7 - 83: - color: '#57197CFF' - id: PavementOverlay - coordinates: 9,6 - 85: - color: '#57197CFF' - id: PavementOverlay - coordinates: 7,6 - 86: - color: '#57197CFF' - id: PavementOverlay - coordinates: 7,3 - 87: - color: '#57197CFF' - id: PavementOverlay - coordinates: 7,2 - 88: - color: '#57197CFF' - id: PavementOverlay - coordinates: 8,2 - 89: - color: '#57197CFF' - id: PavementOverlay - coordinates: 8,1 - 90: - color: '#57197CFF' - id: PavementOverlay - coordinates: 7,1 - 91: - color: '#57197CFF' - id: PavementOverlay - coordinates: 7,0 - 107: - color: '#57197CFF' - id: PavementOverlay - coordinates: 2,6 - 108: - color: '#57197CFF' - id: PavementOverlay - coordinates: 2,7 - 109: - color: '#57197CFF' - id: PavementOverlay - coordinates: 3,6 - 110: - color: '#57197CFF' - id: PavementOverlay - coordinates: 4,6 - 111: - color: '#57197CFF' - id: PavementOverlay - coordinates: 5,6 - 112: - color: '#57197CFF' - id: PavementOverlay - coordinates: 5,7 - 113: - color: '#57197CFF' - id: PavementOverlay - coordinates: 5,8 - 114: - color: '#57197CFF' - id: PavementOverlay - coordinates: 3,12 - 115: - color: '#57197CFF' - id: PavementOverlay - coordinates: 1,8 - 116: - color: '#57197CFF' - id: PavementOverlay - coordinates: 0,8 - 117: - color: '#57197CFF' - id: PavementOverlay - coordinates: 0,7 - 118: - color: '#57197CFF' - id: PavementOverlay - coordinates: 0,6 - 198: - color: '#57197CFF' - id: HerringboneOverlay - coordinates: 14,0 - 199: - color: '#57197CFF' - id: HerringboneOverlay - coordinates: 13,0 - 205: - color: '#57197CFF' - id: HerringboneOverlay - coordinates: 11,0 - 206: - color: '#57197CFF' - id: HerringboneOverlay - coordinates: 12,0 - 207: - color: '#57197CFF' - id: HerringboneOverlay - coordinates: 12,1 - 208: - color: '#57197CFF' - id: HerringboneOverlay - coordinates: 12,2 - 209: - color: '#57197CFF' - id: HerringboneOverlay - coordinates: 12,3 - 210: - color: '#57197CFF' - id: HerringboneOverlay - coordinates: 11,3 - 211: - color: '#57197CFF' - id: HerringboneOverlay - coordinates: 11,4 - 212: - color: '#57197CFF' - id: HerringboneOverlay - coordinates: 13,3 - 213: - color: '#57197CFF' - id: HerringboneOverlay - coordinates: 13,2 - 214: - color: '#57197CFF' - id: HerringboneOverlay - coordinates: 14,2 - 215: - color: '#57197CFF' - id: HerringboneOverlay - coordinates: 14,3 - 216: - color: '#57197CFF' - id: HerringboneOverlay - coordinates: 14,4 - 217: - color: '#57197CFF' - id: HerringboneOverlay - coordinates: 13,4 - 218: - color: '#57197CFF' - id: HerringboneOverlay - coordinates: 13,5 - 219: - color: '#57197CFF' - id: HerringboneOverlay - coordinates: 14,5 - 220: - color: '#57197CFF' - id: HerringboneOverlay - coordinates: 12,5 - 247: - color: '#500647FF' - id: BrickTileSteelLineN - coordinates: 7,7 - 248: - color: '#500647FF' - id: BrickTileSteelCornerNe - coordinates: 8,7 - 249: - color: '#500647FF' - id: BrickTileSteelCornerNe - coordinates: 9,6 - 250: - color: '#500647FF' - id: BrickTileSteelInnerNe - coordinates: 8,6 - 253: - color: '#500647FF' - id: BrickTileSteelCornerNe - coordinates: 0,4 - 255: - color: '#500647FF' - id: BrickTileSteelLineE - 256: - color: '#500647FF' - id: BrickTileSteelLineE - coordinates: 0,3 - 275: - color: '#500647FF' - id: BrickTileSteelCornerNe - coordinates: 5,8 - 0,-1: - 92: - color: '#57197CFF' - id: PavementOverlay - coordinates: 7,-3 - 45: - color: '#57197CFF' - id: PavementVerticalOverlay - coordinates: 0,-1 - 46: - color: '#57197CFF' - id: PavementVerticalOverlay - coordinates: 0,-3 - 47: - color: '#57197CFF' - id: PavementVerticalOverlay - coordinates: 0,-4 - 53: - color: '#57197CFF' - id: PavementVerticalOverlay - coordinates: 1,-3 - 54: - color: '#57197CFF' - id: PavementVerticalOverlay - coordinates: 1,-4 - 55: - color: '#57197CFF' - id: PavementVerticalOverlay - coordinates: 1,-5 - 56: - color: '#57197CFF' - id: PavementVerticalOverlay - coordinates: 1,-6 - 57: - color: '#57197CFF' - id: PavementVerticalOverlay - coordinates: 1,-7 - 58: - color: '#57197CFF' - id: PavementVerticalOverlay - coordinates: 2,-7 - 59: - color: '#57197CFF' - id: PavementVerticalOverlay - coordinates: 3,-7 - 60: - color: '#57197CFF' - id: PavementVerticalOverlay - coordinates: 4,-7 - 61: - color: '#57197CFF' - id: PavementVerticalOverlay - coordinates: 4,-8 - 62: - color: '#57197CFF' - id: PavementVerticalOverlay - coordinates: 3,-8 - 63: - color: '#57197CFF' - id: PavementVerticalOverlay - coordinates: 3,-9 - 64: - color: '#57197CFF' - id: PavementVerticalOverlay - coordinates: 2,-9 - 65: - color: '#57197CFF' - id: PavementVerticalOverlay - coordinates: 1,-9 - 66: - color: '#57197CFF' - id: PavementVerticalOverlay - coordinates: 0,-9 - 93: - color: '#57197CFF' - id: PavementOverlay - coordinates: 6,-3 - 94: - color: '#57197CFF' - id: PavementOverlay - coordinates: 5,-3 - 95: - color: '#57197CFF' - id: PavementOverlay - coordinates: 4,-3 - 96: - color: '#57197CFF' - id: PavementOverlay - coordinates: 3,-3 - 97: - color: '#57197CFF' - id: PavementOverlay - coordinates: 3,-4 - 98: - color: '#57197CFF' - id: PavementOverlay - coordinates: 3,-5 - 99: - color: '#57197CFF' - id: PavementOverlay - coordinates: 4,-5 - 100: - color: '#57197CFF' - id: PavementOverlay - coordinates: 5,-5 - 101: - color: '#57197CFF' - id: PavementOverlay - coordinates: 6,-5 - 102: - color: '#57197CFF' - id: PavementOverlay - coordinates: 7,-5 - 103: - color: '#57197CFF' - id: PavementOverlay - coordinates: 7,-4 - 104: - color: '#57197CFF' - id: PavementOverlay - coordinates: 8,-4 - 105: - color: '#57197CFF' - id: PavementOverlay - coordinates: 8,-3 - 106: - color: '#57197CFF' - id: PavementOverlay - coordinates: 9,-3 - 191: - color: '#57197CFF' - id: HerringboneOverlay - coordinates: 11,-3 - 192: - color: '#57197CFF' - id: HerringboneOverlay - coordinates: 11,-2 - 193: - color: '#57197CFF' - id: HerringboneOverlay - coordinates: 12,-3 - 194: - color: '#57197CFF' - id: HerringboneOverlay - coordinates: 13,-3 - 195: - color: '#57197CFF' - id: HerringboneOverlay - coordinates: 14,-3 - 196: - color: '#57197CFF' - id: HerringboneOverlay - coordinates: 14,-2 - 197: - color: '#57197CFF' - id: HerringboneOverlay - coordinates: 14,-1 - 200: - color: '#57197CFF' - id: HerringboneOverlay - coordinates: 13,-1 - 201: - color: '#57197CFF' - id: HerringboneOverlay - coordinates: 13,-2 - 202: - color: '#57197CFF' - id: HerringboneOverlay - coordinates: 12,-2 - 203: - color: '#57197CFF' - id: HerringboneOverlay - coordinates: 11,-2 - 204: - color: '#57197CFF' - id: HerringboneOverlay - coordinates: 11,-1 - 224: - color: '#500647FF' - id: BrickTileSteelCornerSe - coordinates: 7,-5 - 225: - color: '#500647FF' - id: BrickTileSteelCornerSe - coordinates: 8,-4 - 226: - color: '#500647FF' - id: BrickTileSteelCornerSe - coordinates: 9,-3 - 227: - color: '#500647FF' - id: BrickTileSteelInnerSe - coordinates: 8,-3 - 228: - color: '#500647FF' - id: BrickTileSteelInnerSe - coordinates: 7,-4 - 234: - color: '#500647FF' - id: BrickTileSteelLineS - coordinates: 4,-5 - 235: - color: '#500647FF' - id: BrickTileSteelLineS - coordinates: 5,-5 - 236: - color: '#500647FF' - id: BrickTileSteelLineS - coordinates: 6,-5 - 251: - color: '#500647FF' - id: BrickTileSteelCornerSe - coordinates: 0,-1 - 262: - color: '#500647FF' - id: BrickTileSteelCornerSe - coordinates: 3,-9 - 263: - color: '#500647FF' - id: BrickTileSteelCornerSe - coordinates: 4,-8 - 264: - color: '#500647FF' - id: BrickTileSteelCornerNe - coordinates: 4,-7 - 265: - color: '#500647FF' - id: BrickTileSteelInnerSe - coordinates: 3,-8 - 271: - color: '#500647FF' - id: BrickTileSteelLineS - coordinates: 0,-9 - 272: - color: '#500647FF' - id: BrickTileSteelLineS - coordinates: 1,-9 - 273: - color: '#500647FF' - id: BrickTileSteelLineS - coordinates: 2,-9 - -1,-1: - 147: - color: '#57197CFF' - id: PavementOverlay - coordinates: -9,-3 - 43: - color: '#57197CFF' - id: PavementVerticalOverlay - coordinates: -2,-1 - 48: - color: '#57197CFF' - id: PavementVerticalOverlay - coordinates: -1,-4 - 49: - color: '#57197CFF' - id: PavementVerticalOverlay - coordinates: -2,-4 - 50: - color: '#57197CFF' - id: PavementVerticalOverlay - coordinates: -2,-3 - 51: - color: '#57197CFF' - id: PavementVerticalOverlay - coordinates: -3,-3 - 52: - color: '#57197CFF' - id: PavementVerticalOverlay - coordinates: -3,-4 - 67: - color: '#57197CFF' - id: PavementVerticalOverlay - coordinates: -1,-9 - 68: - color: '#57197CFF' - id: PavementVerticalOverlay - coordinates: -2,-9 - 69: - color: '#57197CFF' - id: PavementVerticalOverlay - coordinates: -3,-9 - 70: - color: '#57197CFF' - id: PavementVerticalOverlay - coordinates: -4,-9 - 71: - color: '#57197CFF' - id: PavementVerticalOverlay - coordinates: -5,-9 - 72: - color: '#57197CFF' - id: PavementVerticalOverlay - coordinates: -5,-8 - 73: - color: '#57197CFF' - id: PavementVerticalOverlay - coordinates: -6,-8 - 74: - color: '#57197CFF' - id: PavementVerticalOverlay - coordinates: -6,-7 - 75: - color: '#57197CFF' - id: PavementVerticalOverlay - coordinates: -5,-7 - 76: - color: '#57197CFF' - id: PavementVerticalOverlay - coordinates: -4,-7 - 77: - color: '#57197CFF' - id: PavementVerticalOverlay - coordinates: -3,-7 - 78: - color: '#57197CFF' - id: PavementVerticalOverlay - coordinates: -3,-6 - 79: - color: '#57197CFF' - id: PavementVerticalOverlay - coordinates: -3,-5 - 143: - color: '#57197CFF' - id: PavementOverlay - coordinates: -11,-1 - 144: - color: '#57197CFF' - id: PavementOverlay - coordinates: -11,-2 - 145: - color: '#57197CFF' - id: PavementOverlay - coordinates: -11,-3 - 146: - color: '#57197CFF' - id: PavementOverlay - coordinates: -10,-3 - 148: - color: '#57197CFF' - id: PavementOverlay - coordinates: -8,-3 - 149: - color: '#57197CFF' - id: PavementOverlay - coordinates: -9,-2 - 150: - color: '#57197CFF' - id: PavementOverlay - coordinates: -9,-1 - 152: - color: '#57197CFF' - id: PavementOverlay - coordinates: -10,-4 - 153: - color: '#57197CFF' - id: PavementOverlay - coordinates: -9,-4 - 154: - color: '#57197CFF' - id: PavementOverlay - coordinates: -9,-5 - 155: - color: '#57197CFF' - id: PavementOverlay - coordinates: -7,-5 - 156: - color: '#57197CFF' - id: PavementOverlay - coordinates: -8,-5 - 157: - color: '#57197CFF' - id: PavementOverlay - coordinates: -6,-5 - 158: - color: '#57197CFF' - id: PavementOverlay - coordinates: -5,-5 - 159: - color: '#57197CFF' - id: PavementOverlay - coordinates: -5,-4 - 160: - color: '#57197CFF' - id: PavementOverlay - coordinates: -5,-3 - 161: - color: '#57197CFF' - id: PavementOverlay - coordinates: -6,-3 - 162: - color: '#57197CFF' - id: PavementOverlay - coordinates: -7,-3 - 179: - color: '#57197CFF' - id: HerringboneOverlay - coordinates: -15,-1 - 180: - color: '#57197CFF' - id: HerringboneOverlay - coordinates: -16,-1 - 181: - color: '#57197CFF' - id: HerringboneOverlay - coordinates: -16,-2 - 182: - color: '#57197CFF' - id: HerringboneOverlay - coordinates: -16,-3 - 183: - color: '#57197CFF' - id: HerringboneOverlay - coordinates: -15,-3 - 184: - color: '#57197CFF' - id: HerringboneOverlay - coordinates: -15,-2 - 185: - color: '#57197CFF' - id: HerringboneOverlay - coordinates: -14,-3 - 186: - color: '#57197CFF' - id: HerringboneOverlay - coordinates: -14,-2 - 187: - color: '#57197CFF' - id: HerringboneOverlay - coordinates: -14,-1 - 188: - color: '#57197CFF' - id: HerringboneOverlay - coordinates: -13,-1 - 189: - color: '#57197CFF' - id: HerringboneOverlay - coordinates: -13,-2 - 190: - color: '#57197CFF' - id: HerringboneOverlay - coordinates: -13,-3 - 221: - color: '#500647FF' - id: BrickTileSteelCornerSw - coordinates: -9,-5 - 222: - color: '#500647FF' - id: BrickTileSteelCornerSw - coordinates: -10,-4 - 223: - color: '#500647FF' - id: BrickTileSteelCornerSw - coordinates: -11,-3 - 229: - color: '#500647FF' - id: BrickTileSteelInnerSw - coordinates: -9,-4 - 230: - color: '#500647FF' - id: BrickTileSteelInnerSw - coordinates: -10,-3 - 231: - color: '#500647FF' - id: BrickTileSteelLineS - coordinates: -8,-5 - 232: - color: '#500647FF' - id: BrickTileSteelLineS - coordinates: -7,-5 - 233: - color: '#500647FF' - id: BrickTileSteelLineS - coordinates: -6,-5 - 237: - color: '#500647FF' - id: BrickTileSteelLineW - coordinates: -11,-2 - 238: - color: '#500647FF' - id: BrickTileSteelLineW - coordinates: -11,-1 - 254: - color: '#500647FF' - id: BrickTileSteelCornerSw - coordinates: -2,-1 - 259: - color: '#500647FF' - id: BrickTileSteelCornerNw - coordinates: -6,-7 - 260: - color: '#500647FF' - id: BrickTileSteelCornerSw - coordinates: -6,-8 - 261: - color: '#500647FF' - id: BrickTileSteelCornerSw - coordinates: -5,-9 - 266: - color: '#500647FF' - id: BrickTileSteelInnerSw - coordinates: -5,-8 - 267: - color: '#500647FF' - id: BrickTileSteelLineS - coordinates: -4,-9 - 268: - color: '#500647FF' - id: BrickTileSteelLineS - coordinates: -3,-9 - 269: - color: '#500647FF' - id: BrickTileSteelLineS - coordinates: -2,-9 - 270: - color: '#500647FF' - id: BrickTileSteelLineS - coordinates: -1,-9 - -1,0: - 131: - color: '#57197CFF' - id: PavementOverlay - coordinates: -10,6 - 14: - color: '#57197CFF' - id: PavementVerticalOverlay - coordinates: -1,12 - 15: - color: '#57197CFF' - id: PavementVerticalOverlay - coordinates: -2,12 - 16: - color: '#57197CFF' - id: PavementVerticalOverlay - coordinates: -2,13 - 22: - color: '#57197CFF' - id: PavementVerticalOverlay - coordinates: -1,10 - 23: - color: '#57197CFF' - id: PavementVerticalOverlay - coordinates: -2,10 - 25: - color: '#57197CFF' - id: PavementVerticalOverlay - coordinates: -3,11 - 33: - color: '#57197CFF' - id: PavementVerticalOverlay - coordinates: -2,17 - 34: - color: '#57197CFF' - id: PavementVerticalOverlay - coordinates: -4,17 - 35: - color: '#57197CFF' - id: PavementVerticalOverlay - coordinates: -4,16 - 36: - color: '#57197CFF' - id: PavementVerticalOverlay - coordinates: -4,15 - 37: - color: '#57197CFF' - id: PavementVerticalOverlay - coordinates: -4,14 - 38: - color: '#57197CFF' - id: PavementVerticalOverlay - coordinates: -2,4 - 39: - color: '#57197CFF' - id: PavementVerticalOverlay - coordinates: -2,3 - 42: - color: '#57197CFF' - id: PavementVerticalOverlay - coordinates: -2,0 - 119: - color: '#57197CFF' - id: PavementOverlay - coordinates: -2,6 - 120: - color: '#57197CFF' - id: PavementOverlay - coordinates: -2,7 - 121: - color: '#57197CFF' - id: PavementOverlay - coordinates: -2,8 - 122: - color: '#57197CFF' - id: PavementOverlay - coordinates: -3,8 - 123: - color: '#57197CFF' - id: PavementOverlay - coordinates: -4,7 - 124: - color: '#57197CFF' - id: PavementOverlay - coordinates: -4,6 - 125: - color: '#57197CFF' - id: PavementOverlay - coordinates: -5,6 - 126: - color: '#57197CFF' - id: PavementOverlay - coordinates: -6,6 - 127: - color: '#57197CFF' - id: PavementOverlay - coordinates: -7,6 - 128: - color: '#57197CFF' - id: PavementOverlay - coordinates: -7,7 - 129: - color: '#57197CFF' - id: PavementOverlay - coordinates: -7,8 - 130: - color: '#57197CFF' - id: PavementOverlay - coordinates: -5,12 - 132: - color: '#57197CFF' - id: PavementOverlay - coordinates: -10,7 - 133: - color: '#57197CFF' - id: PavementOverlay - coordinates: -9,7 - 134: - color: '#57197CFF' - id: PavementOverlay - coordinates: -9,6 - 135: - color: '#57197CFF' - id: PavementOverlay - coordinates: -9,5 - 136: - color: '#57197CFF' - id: PavementOverlay - coordinates: -9,4 - 137: - color: '#57197CFF' - id: PavementOverlay - coordinates: -9,3 - 138: - color: '#57197CFF' - id: PavementOverlay - coordinates: -11,3 - 139: - color: '#57197CFF' - id: PavementOverlay - coordinates: -11,4 - 140: - color: '#57197CFF' - id: PavementOverlay - coordinates: -11,5 - 141: - color: '#57197CFF' - id: PavementOverlay - coordinates: -11,6 - 142: - color: '#57197CFF' - id: PavementOverlay - coordinates: -11,0 - 151: - color: '#57197CFF' - id: PavementOverlay - coordinates: -9,0 - 163: - color: '#57197CFF' - id: HerringboneOverlay - coordinates: -13,1 - 164: - color: '#57197CFF' - id: HerringboneOverlay - coordinates: -14,1 - 165: - color: '#57197CFF' - id: HerringboneOverlay - coordinates: -15,1 - 166: - color: '#57197CFF' - id: HerringboneOverlay - coordinates: -16,1 - 167: - color: '#57197CFF' - id: HerringboneOverlay - coordinates: -16,2 - 168: - color: '#57197CFF' - id: HerringboneOverlay - coordinates: -15,2 - 169: - color: '#57197CFF' - id: HerringboneOverlay - coordinates: -15,3 - 170: - color: '#57197CFF' - id: HerringboneOverlay - coordinates: -14,3 - 171: - color: '#57197CFF' - id: HerringboneOverlay - coordinates: -14,4 - 172: - color: '#57197CFF' - id: HerringboneOverlay - coordinates: -13,4 - 173: - color: '#57197CFF' - id: HerringboneOverlay - coordinates: -13,2 - 174: - color: '#57197CFF' - id: HerringboneOverlay - coordinates: -13,3 - 175: - color: '#57197CFF' - id: HerringboneOverlay - coordinates: -16,4 - 176: - color: '#57197CFF' - id: HerringboneOverlay - coordinates: -16,3 - 177: - color: '#57197CFF' - id: HerringboneOverlay - coordinates: -16,5 - 178: - color: '#57197CFF' - id: HerringboneOverlay - coordinates: -15,5 - 239: - color: '#500647FF' - id: BrickTileSteelLineW - coordinates: -11,0 - 240: - color: '#500647FF' - id: BrickTileSteelLineW - coordinates: -11,3 - 241: - color: '#500647FF' - id: BrickTileSteelLineW - coordinates: -11,4 - 242: - color: '#500647FF' - id: BrickTileSteelLineW - coordinates: -11,5 - 243: - color: '#500647FF' - id: BrickTileSteelCornerNw - coordinates: -11,6 - 244: - color: '#500647FF' - id: BrickTileSteelCornerNw - coordinates: -10,7 - 245: - color: '#500647FF' - id: BrickTileSteelLineN - coordinates: -9,7 - 246: - color: '#500647FF' - id: BrickTileSteelInnerNw - coordinates: -10,6 - 252: - color: '#500647FF' - id: BrickTileSteelCornerNw - coordinates: -2,4 - 257: - color: '#500647FF' - id: BrickTileSteelLineW - coordinates: -2,3 - 258: - color: '#500647FF' - id: BrickTileSteelLineW - coordinates: -2,0 - 274: - color: '#500647FF' - id: BrickTileSteelCornerNw - coordinates: -7,8 - type: DecalGrid - - tiles: - -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: 1 - -2,-1: 2 - -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: 3 - -1,-1: 4 - 0,-11: 5 - 0,-10: 6 - 0,-9: 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,-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,-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,-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,-11: 7 - 4,-10: 8 - 4,-9: 9 - 4,-8: 10 - 4,-7: 10 - 4,-6: 0 - 4,-5: 0 - 4,-4: 0 - 4,-3: 0 - 4,-2: 0 - 4,-1: 0 - 5,-11: 0 - 5,-10: 0 - 5,-9: 0 - 5,-8: 0 - 5,-7: 0 - 5,-6: 0 - 5,-5: 0 - 5,-4: 11 - 5,-3: 0 - 5,-2: 0 - 5,-1: 0 - 6,-10: 0 - 6,-9: 0 - 6,-8: 0 - 6,-7: 0 - 6,-6: 0 - 6,-5: 0 - 6,-4: 12 - 6,-3: 0 - 6,-2: 0 - 6,-1: 0 - -2,0: 13 - -2,1: 0 - -2,2: 14 - -2,3: 0 - -2,4: 0 - -1,0: 15 - -1,1: 16 - -1,2: 17 - -1,3: 18 - -1,4: 0 - -1,5: 0 - -1,6: 0 - -1,7: 0 - -1,8: 0 - 0,0: 0 - 0,1: 0 - 0,2: 19 - 0,3: 20 - 0,4: 21 - 0,5: 22 - 0,6: 23 - 0,7: 24 - 0,8: 0 - 1,0: 0 - 1,1: 0 - 1,2: 0 - 1,3: 25 - 1,4: 0 - 1,5: 0 - 1,6: 0 - 1,7: 26 - 1,8: 0 - 2,0: 0 - 2,1: 0 - 2,2: 0 - 2,3: 27 - 2,4: 0 - 2,5: 0 - 2,6: 0 - 2,7: 28 - 2,8: 0 - 3,0: 0 - 3,1: 0 - 3,2: 0 - 3,3: 29 - 3,4: 0 - 3,5: 0 - 3,6: 0 - 3,7: 30 - 3,8: 0 - 4,0: 0 - 4,1: 0 - 4,2: 0 - 4,3: 31 - 4,4: 32 - 4,5: 33 - 4,6: 0 - 4,7: 30 - 4,8: 0 - 5,0: 0 - 5,1: 0 - 5,2: 0 - 5,3: 26 - 5,4: 0 - 5,5: 0 - 5,6: 0 - 5,7: 0 - 5,8: 0 - 6,0: 7 - 6,1: 0 - 6,2: 0 - 6,3: 0 - 6,4: 0 - -3,-2: 34 - -3,-1: 35 - -3,0: 36 - -1,-15: 37 - -1,-14: 37 - -1,-13: 37 - -1,-12: 37 - 0,-15: 37 - 0,-14: 37 - 0,-13: 37 - 0,-12: 38 - 1,-15: 37 - 1,-14: 37 - 1,-13: 37 - 1,-12: 37 - 2,-15: 37 - 2,-14: 37 - 2,-13: 37 - 2,-12: 37 - 3,-15: 37 - 3,-14: 37 - 3,-13: 37 - 3,-12: 37 - 4,-15: 37 - 4,-14: 37 - 4,-13: 37 - 4,-12: 39 - 5,-15: 37 - 5,-14: 37 - 5,-13: 37 - 5,-12: 37 - 7,-4: 40 - 7,-3: 37 - 7,-2: 37 - 7,-1: 37 - 8,-4: 41 - 8,-3: 42 - 8,-2: 43 - 8,-1: 44 - 7,0: 45 - 8,0: 46 - -3,-6: 37 - -3,-5: 37 - -3,-4: 37 - -3,-3: 37 - -3,1: 37 - -3,2: 37 - -3,3: 37 - -3,4: 37 - -3,5: 37 - -2,5: 37 - -2,6: 37 - uniqueMixes: - - volume: 2500 - temperature: 293.15 - moles: - - 21.824879 - - 82.10312 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 256.84375 - moles: - - 17.732716 - - 66.708786 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 256.84375 - moles: - - 17.050686 - - 64.14306 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 284.07343 - moles: - - 20.801838 - - 78.25453 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 281.8043 - moles: - - 20.375572 - - 76.650955 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 293.15 - moles: - - 17.732714 - - 66.708786 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 293.15 - moles: - - 20.801838 - - 78.25453 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 293.15 - moles: - - 16.36866 - - 61.57734 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 293.15 - moles: - - 20.460823 - - 76.97167 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 293.15 - moles: - - 21.483864 - - 80.82026 - - 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: 288.61172 - moles: - - 20.801838 - - 78.25453 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 274.9969 - moles: - - 17.732714 - - 66.708786 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 240.95978 - moles: - - 16.965433 - - 63.82235 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 220.28932 - moles: - - 16.344015 - - 61.484634 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 277.266 - moles: - - 20.24769 - - 76.16988 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 289.17902 - moles: - - 21.430582 - - 80.61981 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 273.88004 - moles: - - 20.349928 - - 76.55449 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 292.90182 - moles: - - 21.800236 - - 82.010414 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 288.317 - moles: - - 21.454601 - - 80.71017 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 293.08795 - moles: - - 21.818718 - - 82.07994 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 293.1345 - moles: - - 21.823338 - - 82.09732 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 293.14612 - moles: - - 21.824493 - - 82.10167 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 293.14905 - moles: - - 21.824783 - - 82.10275 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 293.14978 - moles: - - 21.824856 - - 82.10303 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 293.13446 - moles: - - 21.82334 - - 82.09732 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 293.14993 - moles: - - 21.824875 - - 82.103096 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 293.14612 - moles: - - 21.824495 - - 82.10167 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 293.14996 - moles: - - 21.824879 - - 82.10311 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 293.14902 - moles: - - 21.824783 - - 82.10275 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 293.14996 - moles: - - 21.824879 - - 82.10312 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 293.14975 - moles: - - 21.824856 - - 82.10303 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 293.14993 - moles: - - 21.824871 - - 82.103096 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 293.15 - moles: - - 21.824875 - - 82.10311 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 147.925 - moles: - - 5.4562197 - - 20.52578 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 132.04102 - moles: - - 7.4170485 - - 27.902231 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 120.69531 - moles: - - 7.1612883 - - 26.940086 - - 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: - - 5.4562197 - - 20.52578 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 293.15 - moles: - - 4.092165 - - 15.394335 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 220.5375 - moles: - - 5.4562197 - - 20.52578 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 129.77188 - moles: - - 1.3640549 - - 5.131445 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 161.53986 - moles: - - 0.34101373 - - 1.2828612 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 220.5375 - moles: - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 202.38437 - moles: - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 220.5375 - moles: - - 4.092165 - - 15.394335 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 107.08047 - moles: - - 1.0230412 - - 3.8485837 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: GridAtmosphere - - type: OccluderTree - - type: Shuttle - - type: GridPathfinding - - type: RadiationGridResistance -- uid: 9 - type: WallUranium - components: - - pos: 5.5,-5.5 - parent: 8 - type: Transform -- uid: 10 - type: WallUranium - components: - - pos: 10.5,7.5 - parent: 8 - type: Transform -- uid: 11 - type: WallUranium - components: - - pos: -7.5,5.5 - parent: 8 - type: Transform -- uid: 12 - type: WallUranium - components: - - pos: 6.5,9.5 - parent: 8 - type: Transform -- uid: 13 - type: WallUranium - components: - - pos: 0.5,-1.5 - parent: 8 - type: Transform -- uid: 14 - type: WallUranium - components: - - pos: 6.5,-1.5 - parent: 8 - type: Transform -- uid: 15 - type: WallUranium - components: - - pos: 0.5,5.5 - parent: 8 - type: Transform -- uid: 16 - type: WallUranium - components: - - pos: -10.5,-3.5 - parent: 8 - type: Transform -- uid: 17 - type: WallUranium - components: - - pos: 9.5,8.5 - parent: 8 - type: Transform -- uid: 18 - type: WallUranium - components: - - pos: 10.5,1.5 - parent: 8 - type: Transform -- uid: 19 - type: WallUranium - components: - - pos: 4.5,16.5 - parent: 8 - type: Transform -- uid: 20 - type: WallUranium - components: - - pos: -7.5,8.5 - parent: 8 - type: Transform -- uid: 21 - type: WallUranium - components: - - pos: -5.5,17.5 - parent: 8 - type: Transform -- uid: 22 - type: WallUranium - components: - - pos: 10.5,0.5 - parent: 8 - type: Transform -- uid: 23 - type: WallUranium - components: - - pos: -3.5,10.5 - parent: 8 - type: Transform -- uid: 24 - type: WallUranium - components: - - pos: -6.5,-5.5 - parent: 8 - type: Transform -- uid: 25 - type: WallUranium - components: - - pos: -6.5,13.5 - parent: 8 - type: Transform -- uid: 26 - type: WallUranium - components: - - pos: 4.5,17.5 - parent: 8 - type: Transform -- uid: 27 - type: WallUranium - components: - - pos: 10.5,6.5 - parent: 8 - type: Transform -- uid: 28 - type: WallUranium - components: - - pos: -7.5,-1.5 - parent: 8 - type: Transform -- uid: 29 - type: WallUranium - components: - - pos: 2.5,9.5 - parent: 8 - type: Transform -- uid: 30 - type: ReinforcedPlasmaWindow - components: - - pos: 4.5,15.5 - parent: 8 - type: Transform -- uid: 31 - type: WallUranium - components: - - pos: 2.5,10.5 - parent: 8 - type: Transform -- uid: 32 - type: WallUranium - components: - - pos: -1.5,5.5 - parent: 8 - type: Transform -- uid: 33 - type: ReinforcedPlasmaWindow - components: - - pos: -1.5,18.5 - parent: 8 - type: Transform -- uid: 34 - type: WallUranium - components: - - pos: -11.5,7.5 - parent: 8 - type: Transform -- uid: 35 - type: WallUranium - components: - - pos: 2.5,11.5 - parent: 8 - type: Transform -- uid: 36 - type: WallUranium - components: - - pos: 1.5,-1.5 - parent: 8 - type: Transform -- uid: 37 - type: WallUranium - components: - - pos: 2.5,13.5 - parent: 8 - type: Transform -- uid: 38 - type: WallUranium - components: - - pos: -12.5,6.5 - parent: 8 - type: Transform -- uid: 39 - type: ReinforcedPlasmaWindow - components: - - pos: -0.5,18.5 - parent: 8 - type: Transform -- uid: 40 - type: WallUranium - components: - - pos: -3.5,11.5 - parent: 8 - type: Transform -- uid: 41 - type: WallUranium - components: - - pos: -6.5,-6.5 - parent: 8 - type: Transform -- uid: 42 - type: ReinforcedPlasmaWindow - components: - - pos: -5.5,15.5 - parent: 8 - type: Transform -- uid: 43 - type: WallUranium - components: - - pos: -4.5,18.5 - parent: 8 - type: Transform -- uid: 44 - type: WallUranium - components: - - pos: 7.5,8.5 - parent: 8 - type: Transform -- uid: 45 - type: WallUranium - components: - - pos: 3.5,17.5 - parent: 8 - type: Transform -- uid: 46 - type: WallUranium - components: - - pos: 9.5,-3.5 - parent: 8 - type: Transform -- uid: 47 - type: WallUranium - components: - - pos: 5.5,10.5 - parent: 8 - type: Transform -- uid: 48 - type: ReinforcedPlasmaWindow - components: - - pos: 0.5,18.5 - parent: 8 - type: Transform -- uid: 49 - type: PlasmaDoor - components: - - pos: -4.5,13.5 - parent: 8 - type: Transform -- uid: 50 - type: WallUranium - components: - - pos: 11.5,6.5 - parent: 8 - type: Transform -- uid: 51 - type: WallUranium - components: - - pos: -6.5,10.5 - parent: 8 - type: Transform -- uid: 52 - type: WallUranium - components: - - pos: -6.5,9.5 - parent: 8 - type: Transform -- uid: 53 - type: WallUranium - components: - - pos: -5.5,16.5 - parent: 8 - type: Transform -- uid: 54 - type: WallUranium - components: - - pos: 6.5,5.5 - parent: 8 - type: Transform -- uid: 55 - type: PlasmaDoor - components: - - pos: 3.5,13.5 - parent: 8 - type: Transform -- uid: 56 - type: WallUranium - components: - - pos: -3.5,12.5 - parent: 8 - type: Transform -- uid: 57 - type: WallUranium - components: - - pos: -10.5,-4.5 - parent: 8 - type: Transform -- uid: 58 - type: WallUranium - components: - - pos: -10.5,8.5 - parent: 8 - type: Transform -- uid: 59 - type: WallUranium - components: - - pos: -9.5,8.5 - parent: 8 - type: Transform -- uid: 60 - type: WallUranium - components: - - pos: -9.5,-5.5 - parent: 8 - type: Transform -- uid: 61 - type: WallUranium - components: - - pos: 5.5,9.5 - parent: 8 - type: Transform -- uid: 62 - type: WallUranium - components: - - pos: 10.5,-3.5 - parent: 8 - type: Transform -- uid: 63 - type: WallUranium - components: - - pos: 8.5,8.5 - parent: 8 - type: Transform -- uid: 64 - type: WallUranium - components: - - pos: 3.5,18.5 - parent: 8 - type: Transform -- uid: 65 - type: WallUranium - components: - - pos: 6.5,8.5 - parent: 8 - type: Transform -- uid: 66 - type: WallUranium - components: - - pos: -7.5,6.5 - parent: 8 - type: Transform -- uid: 67 - type: WallUranium - components: - - pos: 2.5,12.5 - parent: 8 - type: Transform -- uid: 68 - type: WallUranium - components: - - pos: 2.5,8.5 - parent: 8 - type: Transform -- uid: 69 - type: WallUranium - components: - - pos: 1.5,14.5 - parent: 8 - type: Transform -- uid: 70 - type: WallUranium - components: - - pos: 5.5,13.5 - parent: 8 - type: Transform -- uid: 71 - type: WallUranium - components: - - pos: -7.5,9.5 - parent: 8 - type: Transform -- uid: 72 - type: WallUranium - components: - - pos: -10.5,7.5 - parent: 8 - type: Transform -- uid: 73 - type: WallUranium - components: - - pos: -9.5,-4.5 - parent: 8 - type: Transform -- uid: 74 - type: WallUranium - components: - - pos: 1.5,13.5 - parent: 8 - type: Transform -- uid: 75 - type: WallUranium - components: - - pos: 11.5,-3.5 - parent: 8 - type: Transform -- uid: 76 - type: WallUranium - components: - - pos: 9.5,7.5 - parent: 8 - type: Transform -- uid: 77 - type: WallUranium - components: - - pos: -8.5,8.5 - parent: 8 - type: Transform -- uid: 78 - type: ReinforcedPlasmaWindow - components: - - pos: 4.5,14.5 - parent: 8 - type: Transform -- uid: 79 - type: WallUranium - components: - - pos: -4.5,17.5 - parent: 8 - type: Transform -- uid: 80 - type: WallUranium - components: - - pos: 15.5,6.5 - parent: 8 - type: Transform -- uid: 81 - type: WallUranium - components: - - pos: 8.5,-5.5 - parent: 8 - type: Transform -- uid: 82 - type: WallUranium - components: - - pos: -11.5,-3.5 - parent: 8 - type: Transform -- uid: 83 - type: ReinforcedPlasmaWindow - components: - - pos: -5.5,14.5 - parent: 8 - type: Transform -- uid: 84 - type: WallUranium - components: - - pos: 14.5,6.5 - parent: 8 - type: Transform -- uid: 85 - type: WallUranium - components: - - pos: 9.5,-4.5 - parent: 8 - type: Transform -- uid: 86 - type: CableApcExtension - components: - - pos: 11.5,-0.5 - parent: 8 - type: Transform -- uid: 87 - type: WallUranium - components: - - pos: -16.5,6.5 - parent: 8 - type: Transform -- uid: 88 - type: WallUranium - components: - - pos: 15.5,5.5 - parent: 8 - type: Transform -- uid: 89 - type: WallUranium - components: - - pos: 10.5,3.5 - parent: 8 - type: Transform -- uid: 90 - type: WallUranium - components: - - pos: -11.5,6.5 - parent: 8 - type: Transform -- uid: 91 - type: WallUranium - components: - - pos: -16.5,5.5 - parent: 8 - type: Transform -- uid: 92 - type: WallUranium - components: - - pos: -15.5,-3.5 - parent: 8 - type: Transform -- uid: 93 - type: WallUranium - components: - - pos: 8.5,-4.5 - parent: 8 - type: Transform -- uid: 94 - type: WallUranium - components: - - pos: 5.5,-6.5 - parent: 8 - type: Transform -- uid: 95 - type: WallUranium - components: - - pos: 14.5,-3.5 - parent: 8 - type: Transform -- uid: 96 - type: WallUranium - components: - - pos: 15.5,-3.5 - parent: 8 - type: Transform -- uid: 97 - type: WallUranium - components: - - pos: -12.5,-3.5 - parent: 8 - type: Transform -- uid: 98 - type: WallUranium - components: - - pos: -13.5,-3.5 - parent: 8 - type: Transform -- uid: 99 - type: WallUranium - components: - - pos: -16.5,-3.5 - parent: 8 - type: Transform -- uid: 100 - type: WallUranium - components: - - pos: -15.5,6.5 - parent: 8 - type: Transform -- uid: 101 - type: WallUranium - components: - - pos: 15.5,-2.5 - parent: 8 - type: Transform -- uid: 102 - type: PlasmaDoor - components: - - pos: -0.5,-1.5 - parent: 8 - type: Transform -- uid: 103 - type: PlasmaDoor - components: - - pos: -0.5,5.5 - parent: 8 - type: Transform -- uid: 104 - type: ReinforcedPlasmaWindow - components: - - pos: 5.5,12.5 - parent: 8 - type: Transform -- uid: 105 - type: ReinforcedPlasmaWindow - components: - - pos: 5.5,11.5 - parent: 8 - type: Transform -- uid: 106 - type: ReinforcedPlasmaWindow - components: - - pos: -6.5,12.5 - parent: 8 - type: Transform -- uid: 107 - type: ReinforcedPlasmaWindow - components: - - pos: -6.5,11.5 - parent: 8 - type: Transform -- uid: 108 - type: WallUranium - components: - - pos: -5.5,13.5 - parent: 8 - type: Transform -- uid: 109 - type: WallUranium - components: - - pos: 4.5,13.5 - parent: 8 - type: Transform -- uid: 110 - type: ReinforcedPlasmaWindow - components: - - pos: 1.5,18.5 - parent: 8 - type: Transform -- uid: 111 - type: ReinforcedPlasmaWindow - components: - - pos: -2.5,18.5 - parent: 8 - type: Transform -- uid: 112 - type: ReinforcedPlasmaWindow - components: - - pos: 1.5,-0.5 - parent: 8 - type: Transform -- uid: 113 - type: ReinforcedPlasmaWindow - components: - - pos: 1.5,0.5 - parent: 8 - type: Transform -- uid: 114 - type: ReinforcedPlasmaWindow - components: - - pos: 1.5,1.5 - parent: 8 - type: Transform -- uid: 115 - type: ReinforcedPlasmaWindow - components: - - pos: 1.5,2.5 - parent: 8 - type: Transform -- uid: 116 - type: ReinforcedPlasmaWindow - components: - - pos: 1.5,3.5 - parent: 8 - type: Transform -- uid: 117 - type: ReinforcedPlasmaWindow - components: - - pos: 1.5,4.5 - parent: 8 - type: Transform -- uid: 118 - type: ReinforcedPlasmaWindow - components: - - pos: 2.5,5.5 - parent: 8 - type: Transform -- uid: 119 - type: ReinforcedPlasmaWindow - components: - - pos: 3.5,5.5 - parent: 8 - type: Transform -- uid: 120 - type: ReinforcedPlasmaWindow - components: - - pos: 4.5,5.5 - parent: 8 - type: Transform -- uid: 121 - type: ReinforcedPlasmaWindow - components: - - pos: 5.5,5.5 - parent: 8 - type: Transform -- uid: 122 - type: ReinforcedPlasmaWindow - components: - - pos: 6.5,4.5 - parent: 8 - type: Transform -- uid: 123 - type: ReinforcedPlasmaWindow - components: - - pos: 6.5,3.5 - parent: 8 - type: Transform -- uid: 124 - type: ReinforcedPlasmaWindow - components: - - pos: 6.5,2.5 - parent: 8 - type: Transform -- uid: 125 - type: ReinforcedPlasmaWindow - components: - - pos: 6.5,-0.5 - parent: 8 - type: Transform -- uid: 126 - type: ReinforcedPlasmaWindow - components: - - pos: 6.5,0.5 - parent: 8 - type: Transform -- uid: 127 - type: ReinforcedPlasmaWindow - components: - - pos: 6.5,1.5 - parent: 8 - type: Transform -- uid: 128 - type: ReinforcedPlasmaWindow - components: - - pos: 5.5,-1.5 - parent: 8 - type: Transform -- uid: 129 - type: ReinforcedPlasmaWindow - components: - - pos: 4.5,-1.5 - parent: 8 - type: Transform -- uid: 130 - type: ReinforcedPlasmaWindow - components: - - pos: 3.5,-1.5 - parent: 8 - type: Transform -- uid: 131 - type: WallUranium - components: - - pos: 2.5,-1.5 - parent: 8 - type: Transform -- uid: 132 - type: ReinforcedPlasmaWindow - components: - - pos: -2.5,-0.5 - parent: 8 - type: Transform -- uid: 133 - type: ReinforcedPlasmaWindow - components: - - pos: -2.5,0.5 - parent: 8 - type: Transform -- uid: 134 - type: ReinforcedPlasmaWindow - components: - - pos: -2.5,1.5 - parent: 8 - type: Transform -- uid: 135 - type: ReinforcedPlasmaWindow - components: - - pos: -2.5,2.5 - parent: 8 - type: Transform -- uid: 136 - type: ReinforcedPlasmaWindow - components: - - pos: -2.5,3.5 - parent: 8 - type: Transform -- uid: 137 - type: ReinforcedPlasmaWindow - components: - - pos: -2.5,4.5 - parent: 8 - type: Transform -- uid: 138 - type: ReinforcedPlasmaWindow - components: - - pos: -3.5,5.5 - parent: 8 - type: Transform -- uid: 139 - type: ReinforcedPlasmaWindow - components: - - pos: -4.5,5.5 - parent: 8 - type: Transform -- uid: 140 - type: ReinforcedPlasmaWindow - components: - - pos: -5.5,5.5 - parent: 8 - type: Transform -- uid: 141 - type: ReinforcedPlasmaWindow - components: - - pos: -6.5,5.5 - parent: 8 - type: Transform -- uid: 142 - type: ReinforcedPlasmaWindow - components: - - pos: -7.5,4.5 - parent: 8 - type: Transform -- uid: 143 - type: ReinforcedPlasmaWindow - components: - - pos: -7.5,3.5 - parent: 8 - type: Transform -- uid: 144 - type: ReinforcedPlasmaWindow - components: - - pos: -7.5,2.5 - parent: 8 - type: Transform -- uid: 145 - type: ReinforcedPlasmaWindow - components: - - pos: -7.5,1.5 - parent: 8 - type: Transform -- uid: 146 - type: ReinforcedPlasmaWindow - components: - - pos: -7.5,0.5 - parent: 8 - type: Transform -- uid: 147 - type: ReinforcedPlasmaWindow - components: - - pos: -7.5,-0.5 - parent: 8 - type: Transform -- uid: 148 - type: ReinforcedPlasmaWindow - components: - - pos: -6.5,-1.5 - parent: 8 - type: Transform -- uid: 149 - type: ReinforcedPlasmaWindow - components: - - pos: -5.5,-1.5 - parent: 8 - type: Transform -- uid: 150 - type: ReinforcedPlasmaWindow - components: - - pos: -4.5,-1.5 - parent: 8 - type: Transform -- uid: 151 - type: WallUranium - components: - - pos: 2.5,-2.5 - parent: 8 - type: Transform -- uid: 152 - type: PlasmaDoor - components: - - pos: -7.5,7.5 - parent: 8 - type: Transform -- uid: 153 - type: PlasmaDoor - components: - - pos: 6.5,7.5 - parent: 8 - type: Transform -- uid: 154 - type: WallUranium - components: - - pos: 2.5,18.5 - parent: 8 - type: Transform -- uid: 155 - type: WallUranium - components: - - pos: -3.5,18.5 - parent: 8 - type: Transform -- uid: 156 - type: WallUranium - components: - - pos: -2.5,9.5 - parent: 8 - type: Transform -- uid: 157 - type: WallUranium - components: - - pos: -1.5,9.5 - parent: 8 - type: Transform -- uid: 158 - type: WallUranium - components: - - pos: -0.5,9.5 - parent: 8 - type: Transform -- uid: 159 - type: WallUranium - components: - - pos: 0.5,9.5 - parent: 8 - type: Transform -- uid: 160 - type: WallUranium - components: - - pos: 1.5,9.5 - parent: 8 - type: Transform -- uid: 161 - type: WallUranium - components: - - pos: 2.5,-3.5 - parent: 8 - type: Transform -- uid: 162 - type: WallUranium - components: - - pos: 2.5,-4.5 - parent: 8 - type: Transform -- uid: 163 - type: WallUranium - components: - - pos: 2.5,-5.5 - parent: 8 - type: Transform -- uid: 164 - type: WallUranium - components: - - pos: -1.5,-9.5 - parent: 8 - type: Transform -- uid: 165 - type: WallUranium - components: - - pos: -0.5,-9.5 - parent: 8 - type: Transform -- uid: 166 - type: WallUranium - components: - - pos: -6.5,-7.5 - parent: 8 - type: Transform -- uid: 167 - type: WallUranium - components: - - pos: -5.5,-8.5 - parent: 8 - type: Transform -- uid: 168 - type: WallUranium - components: - - pos: 4.5,-8.5 - parent: 8 - type: Transform -- uid: 169 - type: WallUranium - components: - - pos: 5.5,-7.5 - parent: 8 - type: Transform -- uid: 170 - type: WallUranium - components: - - pos: -5.5,-9.5 - parent: 8 - type: Transform -- uid: 171 - type: WallUranium - components: - - pos: 3.5,-9.5 - parent: 8 - type: Transform -- uid: 172 - type: WallUranium - components: - - pos: -4.5,-9.5 - parent: 8 - type: Transform -- uid: 173 - type: WallUranium - components: - - pos: 4.5,-9.5 - parent: 8 - type: Transform -- uid: 174 - type: WallUranium - components: - - pos: -3.5,-1.5 - parent: 8 - type: Transform -- uid: 175 - type: WallUranium - components: - - pos: -3.5,-2.5 - parent: 8 - type: Transform -- uid: 176 - type: WallUranium - components: - - pos: -3.5,-3.5 - parent: 8 - type: Transform -- uid: 177 - type: WallUranium - components: - - pos: -3.5,-4.5 - parent: 8 - type: Transform -- uid: 178 - type: WallUranium - components: - - pos: -3.5,-5.5 - parent: 8 - type: Transform -- uid: 179 - type: WallUranium - components: - - pos: 5.5,-8.5 - parent: 8 - type: Transform -- uid: 180 - type: WallUranium - components: - - pos: -6.5,-8.5 - parent: 8 - type: Transform -- uid: 181 - type: WallUranium - components: - - pos: 0.5,-9.5 - parent: 8 - type: Transform -- uid: 182 - type: WallUranium - components: - - pos: 4.5,-5.5 - parent: 8 - type: Transform -- uid: 183 - type: WallUranium - components: - - pos: -5.5,-5.5 - parent: 8 - type: Transform -- uid: 184 - type: ReinforcedPlasmaWindow - components: - - pos: 7.5,-5.5 - parent: 8 - type: Transform -- uid: 185 - type: ReinforcedPlasmaWindow - components: - - pos: 6.5,-5.5 - parent: 8 - type: Transform -- uid: 186 - type: ReinforcedPlasmaWindow - components: - - pos: -7.5,-5.5 - parent: 8 - type: Transform -- uid: 187 - type: ReinforcedPlasmaWindow - components: - - pos: -8.5,-5.5 - parent: 8 - type: Transform -- uid: 188 - type: PlasmaDoor - components: - - pos: -14.5,0.5 - parent: 8 - type: Transform -- uid: 189 - type: WallUranium - components: - - pos: -14.5,-3.5 - parent: 8 - type: Transform -- uid: 190 - type: PlasmaDoor - components: - - pos: 0.5,14.5 - parent: 8 - type: Transform -- uid: 191 - type: WallUranium - components: - - pos: -2.5,14.5 - parent: 8 - type: Transform -- uid: 192 - type: ReinforcedPlasmaWindow - components: - - pos: 12.5,-3.5 - parent: 8 - type: Transform -- uid: 193 - type: ReinforcedPlasmaWindow - components: - - pos: 13.5,-3.5 - parent: 8 - type: Transform -- uid: 194 - type: ReinforcedPlasmaWindow - components: - - pos: 13.5,6.5 - parent: 8 - type: Transform -- uid: 195 - type: ReinforcedPlasmaWindow - components: - - pos: 12.5,6.5 - parent: 8 - type: Transform -- uid: 196 - type: WallUranium - components: - - pos: 10.5,5.5 - parent: 8 - type: Transform -- uid: 197 - type: WallUranium - components: - - pos: 6.5,6.5 - parent: 8 - type: Transform -- uid: 198 - type: WallUranium - components: - - pos: -0.5,8.5 - parent: 8 - type: Transform -- uid: 199 - type: ReinforcedPlasmaWindow - components: - - pos: -11.5,4.5 - parent: 8 - type: Transform -- uid: 200 - type: ReinforcedPlasmaWindow - components: - - pos: -14.5,6.5 - parent: 8 - type: Transform -- uid: 201 - type: WallUranium - components: - - pos: -16.5,0.5 - parent: 8 - type: Transform -- uid: 202 - type: WallUranium - components: - - pos: -16.5,1.5 - parent: 8 - type: Transform -- uid: 203 - type: ReinforcedPlasmaWindow - components: - - pos: -16.5,3.5 - parent: 8 - type: Transform -- uid: 204 - type: ReinforcedPlasmaWindow - components: - - pos: -16.5,-0.5 - parent: 8 - type: Transform -- uid: 205 - type: ReinforcedPlasmaWindow - components: - - pos: 15.5,-1.5 - parent: 8 - type: Transform -- uid: 206 - type: ReinforcedPlasmaWindow - components: - - pos: 15.5,-0.5 - parent: 8 - type: Transform -- uid: 207 - type: ReinforcedPlasmaWindow - components: - - pos: 15.5,4.5 - parent: 8 - type: Transform -- uid: 208 - type: ReinforcedPlasmaWindow - components: - - pos: 15.5,3.5 - parent: 8 - type: Transform -- uid: 209 - type: WallUranium - components: - - pos: 15.5,2.5 - parent: 8 - type: Transform -- uid: 210 - type: WallUranium - components: - - pos: 15.5,1.5 - parent: 8 - type: Transform -- uid: 211 - type: WallUranium - components: - - pos: 15.5,0.5 - parent: 8 - type: Transform -- uid: 212 - type: ReinforcedPlasmaWindow - components: - - pos: -16.5,2.5 - parent: 8 - type: Transform -- uid: 213 - type: WallUranium - components: - - pos: -11.5,-0.5 - parent: 8 - type: Transform -- uid: 214 - type: WallUranium - components: - - pos: -11.5,0.5 - parent: 8 - type: Transform -- uid: 215 - type: ReinforcedPlasmaWindow - components: - - pos: 2.5,-9.5 - parent: 8 - type: Transform -- uid: 216 - type: ReinforcedPlasmaWindow - components: - - pos: -2.5,-9.5 - parent: 8 - type: Transform -- uid: 217 - type: WallUranium - components: - - pos: -11.5,5.5 - parent: 8 - type: Transform -- uid: 218 - type: WallUranium - components: - - pos: -15.5,0.5 - parent: 8 - type: Transform -- uid: 219 - type: WallUranium - components: - - pos: -13.5,0.5 - parent: 8 - type: Transform -- uid: 220 - type: WallUranium - components: - - pos: -12.5,0.5 - parent: 8 - type: Transform -- uid: 221 - type: WallUranium - components: - - pos: -11.5,-1.5 - parent: 8 - type: Transform -- uid: 222 - type: WallUranium - components: - - pos: -11.5,2.5 - parent: 8 - type: Transform -- uid: 223 - type: WallUranium - components: - - pos: -11.5,-2.5 - parent: 8 - type: Transform -- uid: 224 - type: PlasmaDoor - components: - - pos: -11.5,1.5 - parent: 8 - type: Transform -- uid: 225 - type: PlasmaDoor - components: - - pos: -4.5,-5.5 - parent: 8 - type: Transform -- uid: 226 - type: PlasmaDoor - components: - - pos: 3.5,-5.5 - parent: 8 - type: Transform -- uid: 227 - type: PlasmaDoor - components: - - pos: 10.5,-0.5 - parent: 8 - type: Transform -- uid: 228 - type: PlasmaDoor - components: - - pos: 10.5,4.5 - parent: 8 - type: Transform -- uid: 229 - type: WallUranium - components: - - pos: 10.5,-1.5 - parent: 8 - type: Transform -- uid: 230 - type: WallUranium - components: - - pos: 10.5,-2.5 - parent: 8 - type: Transform -- uid: 231 - type: CableApcExtension - components: - - pos: -8.5,-2.5 - parent: 8 - type: Transform -- uid: 232 - type: WallUranium - components: - - pos: -16.5,-2.5 - parent: 8 - type: Transform -- uid: 233 - type: ReinforcedPlasmaWindow - components: - - pos: -11.5,3.5 - parent: 8 - type: Transform -- uid: 234 - type: ReinforcedPlasmaWindow - components: - - pos: -13.5,6.5 - parent: 8 - type: Transform -- uid: 235 - type: ReinforcedPlasmaWindow - components: - - pos: -16.5,4.5 - parent: 8 - type: Transform -- uid: 236 - type: ReinforcedPlasmaWindow - components: - - pos: -16.5,-1.5 - parent: 8 - type: Transform -- uid: 237 - type: WallUranium - components: - - pos: -2.5,13.5 - parent: 8 - type: Transform -- uid: 238 - type: WallUranium - components: - - pos: -0.5,14.5 - parent: 8 - type: Transform -- uid: 239 - type: ReinforcedPlasmaWindow - components: - - pos: 1.5,-9.5 - parent: 8 - type: Transform -- uid: 240 - type: PlasmaDoor - components: - - pos: -1.5,14.5 - parent: 8 - type: Transform -- uid: 241 - type: ReinforcedPlasmaWindow - components: - - pos: -3.5,-9.5 - parent: 8 - type: Transform -- uid: 242 - type: WallUranium - components: - - pos: 14.5,1.5 - parent: 8 - type: Transform -- uid: 243 - type: WallUranium - components: - - pos: 13.5,1.5 - parent: 8 - type: Transform -- uid: 244 - type: TablePlasmaGlass - components: - - pos: 1.5,8.5 - parent: 8 - type: Transform -- uid: 245 - type: TablePlasmaGlass - components: - - pos: 0.5,8.5 - parent: 8 - type: Transform -- uid: 246 - type: TablePlasmaGlass - components: - - pos: -1.5,8.5 - parent: 8 - type: Transform -- uid: 247 - type: TablePlasmaGlass - components: - - pos: -2.5,8.5 - parent: 8 - type: Transform -- uid: 248 - type: WallUranium - components: - - pos: -0.5,1.5 - parent: 8 - type: Transform -- uid: 249 - type: WallUranium - components: - - pos: -0.5,2.5 - parent: 8 - type: Transform -- uid: 250 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 1.5,6.5 - parent: 8 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 251 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -2.5,6.5 - parent: 8 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 252 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -4.5,8.5 - parent: 8 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 253 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 3.5,8.5 - parent: 8 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 254 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 3.5,16.5 - parent: 8 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 255 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -4.5,16.5 - parent: 8 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 256 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -0.5,15.5 - parent: 8 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 257 - type: Poweredlight - components: - - pos: 0.5,4.5 - parent: 8 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 258 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -10.5,5.5 - parent: 8 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 259 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -1.5,-0.5 - parent: 8 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 260 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -10.5,-1.5 - parent: 8 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 261 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -14.5,-2.5 - parent: 8 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 262 - type: Poweredlight - components: - - pos: -15.5,5.5 - parent: 8 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 263 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -13.5,1.5 - parent: 8 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 264 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -4.5,-3.5 - parent: 8 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 265 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -2.5,-3.5 - parent: 8 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 266 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 1.5,-3.5 - parent: 8 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 267 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -0.5,-8.5 - parent: 8 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 268 - type: Poweredlight - components: - - pos: -5.5,-6.5 - parent: 8 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 269 - type: Poweredlight - components: - - pos: 4.5,-6.5 - parent: 8 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 270 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 3.5,-3.5 - parent: 8 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 271 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 9.5,-1.5 - parent: 8 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 272 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 9.5,5.5 - parent: 8 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 273 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 13.5,2.5 - parent: 8 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 274 - type: Poweredlight - components: - - pos: 13.5,0.5 - parent: 8 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 275 - type: GravityGeneratorMini - components: - - pos: -12.5,-2.5 - parent: 8 - type: Transform -- uid: 276 - type: DebugAPC - components: - - rot: 3.141592653589793 rad - pos: -13.5,-3.5 - parent: 8 - type: Transform -- uid: 277 - type: CableApcExtension - components: - - pos: -13.5,-3.5 - parent: 8 - type: Transform -- uid: 278 - type: CableApcExtension - components: - - pos: -13.5,-2.5 - parent: 8 - type: Transform -- uid: 279 - type: CableApcExtension - components: - - pos: -13.5,-1.5 - parent: 8 - type: Transform -- uid: 280 - type: CableApcExtension - components: - - pos: -13.5,-0.5 - parent: 8 - type: Transform -- uid: 281 - type: CableApcExtension - components: - - pos: -13.5,0.5 - parent: 8 - type: Transform -- uid: 282 - type: CableApcExtension - components: - - pos: -13.5,1.5 - parent: 8 - type: Transform -- uid: 283 - type: CableApcExtension - components: - - pos: -13.5,2.5 - parent: 8 - type: Transform -- uid: 284 - type: CableApcExtension - components: - - pos: -13.5,3.5 - parent: 8 - type: Transform -- uid: 285 - type: CableApcExtension - components: - - pos: -13.5,3.5 - parent: 8 - type: Transform -- uid: 286 - type: CableApcExtension - components: - - pos: -12.5,3.5 - parent: 8 - type: Transform -- uid: 287 - type: CableApcExtension - components: - - pos: -11.5,3.5 - parent: 8 - type: Transform -- uid: 288 - type: CableApcExtension - components: - - pos: -10.5,3.5 - parent: 8 - type: Transform -- uid: 289 - type: CableApcExtension - components: - - pos: -9.5,3.5 - parent: 8 - type: Transform -- uid: 290 - type: CableApcExtension - components: - - pos: -9.5,2.5 - parent: 8 - type: Transform -- uid: 291 - type: CableApcExtension - components: - - pos: -9.5,1.5 - parent: 8 - type: Transform -- uid: 292 - type: CableApcExtension - components: - - pos: -9.5,0.5 - parent: 8 - type: Transform -- uid: 293 - type: CableApcExtension - components: - - pos: -9.5,-0.5 - parent: 8 - type: Transform -- uid: 294 - type: CableApcExtension - components: - - pos: -9.5,-1.5 - parent: 8 - type: Transform -- uid: 295 - type: CableApcExtension - components: - - pos: -9.5,-2.5 - parent: 8 - type: Transform -- uid: 296 - type: CableApcExtension - components: - - pos: -7.5,-2.5 - parent: 8 - type: Transform -- uid: 297 - type: CableApcExtension - components: - - pos: -6.5,-2.5 - parent: 8 - type: Transform -- uid: 298 - type: CableApcExtension - components: - - pos: -5.5,-2.5 - parent: 8 - type: Transform -- uid: 299 - type: CableApcExtension - components: - - pos: -4.5,-2.5 - parent: 8 - type: Transform -- uid: 300 - type: CableApcExtension - components: - - pos: -3.5,-2.5 - parent: 8 - type: Transform -- uid: 301 - type: CableApcExtension - components: - - pos: -2.5,-2.5 - parent: 8 - type: Transform -- uid: 302 - type: CableApcExtension - components: - - pos: -1.5,-2.5 - parent: 8 - type: Transform -- uid: 303 - type: CableApcExtension - components: - - pos: -0.5,-2.5 - parent: 8 - type: Transform -- uid: 304 - type: CableApcExtension - components: - - pos: 0.5,-2.5 - parent: 8 - type: Transform -- uid: 305 - type: CableApcExtension - components: - - pos: 1.5,-2.5 - parent: 8 - type: Transform -- uid: 306 - type: CableApcExtension - components: - - pos: 2.5,-2.5 - parent: 8 - type: Transform -- uid: 307 - type: CableApcExtension - components: - - pos: 3.5,-2.5 - parent: 8 - type: Transform -- uid: 308 - type: CableApcExtension - components: - - pos: 4.5,-2.5 - parent: 8 - type: Transform -- uid: 309 - type: CableApcExtension - components: - - pos: 5.5,-2.5 - parent: 8 - type: Transform -- uid: 310 - type: CableApcExtension - components: - - pos: 6.5,-2.5 - parent: 8 - type: Transform -- uid: 311 - type: CableApcExtension - components: - - pos: 7.5,-2.5 - parent: 8 - type: Transform -- uid: 312 - type: CableApcExtension - components: - - pos: 8.5,-2.5 - parent: 8 - type: Transform -- uid: 313 - type: CableApcExtension - components: - - pos: 8.5,-1.5 - parent: 8 - type: Transform -- uid: 314 - type: CableApcExtension - components: - - pos: 8.5,-0.5 - parent: 8 - type: Transform -- uid: 315 - type: CableApcExtension - components: - - pos: 8.5,0.5 - parent: 8 - type: Transform -- uid: 316 - type: CableApcExtension - components: - - pos: 8.5,1.5 - parent: 8 - type: Transform -- uid: 317 - type: CableApcExtension - components: - - pos: 8.5,2.5 - parent: 8 - type: Transform -- uid: 318 - type: CableApcExtension - components: - - pos: 8.5,3.5 - parent: 8 - type: Transform -- uid: 319 - type: CableApcExtension - components: - - pos: 8.5,4.5 - parent: 8 - type: Transform -- uid: 320 - type: CableApcExtension - components: - - pos: 8.5,5.5 - parent: 8 - type: Transform -- uid: 321 - type: CableApcExtension - components: - - pos: 8.5,6.5 - parent: 8 - type: Transform -- uid: 322 - type: CableApcExtension - components: - - pos: 8.5,7.5 - parent: 8 - type: Transform -- uid: 323 - type: CableApcExtension - components: - - pos: -9.5,4.5 - parent: 8 - type: Transform -- uid: 324 - type: CableApcExtension - components: - - pos: -9.5,5.5 - parent: 8 - type: Transform -- uid: 325 - type: CableApcExtension - components: - - pos: -9.5,6.5 - parent: 8 - type: Transform -- uid: 326 - type: CableApcExtension - components: - - pos: -9.5,7.5 - parent: 8 - type: Transform -- uid: 327 - type: CableApcExtension - components: - - pos: -8.5,7.5 - parent: 8 - type: Transform -- uid: 328 - type: CableApcExtension - components: - - pos: -7.5,7.5 - parent: 8 - type: Transform -- uid: 329 - type: CableApcExtension - components: - - pos: -6.5,7.5 - parent: 8 - type: Transform -- uid: 330 - type: CableApcExtension - components: - - pos: -5.5,7.5 - parent: 8 - type: Transform -- uid: 331 - type: CableApcExtension - components: - - pos: -4.5,7.5 - parent: 8 - type: Transform -- uid: 332 - type: CableApcExtension - components: - - pos: -3.5,7.5 - parent: 8 - type: Transform -- uid: 333 - type: CableApcExtension - components: - - pos: -2.5,7.5 - parent: 8 - type: Transform -- uid: 334 - type: CableApcExtension - components: - - pos: -1.5,7.5 - parent: 8 - type: Transform -- uid: 335 - type: CableApcExtension - components: - - pos: -0.5,7.5 - parent: 8 - type: Transform -- uid: 336 - type: CableApcExtension - components: - - pos: 0.5,7.5 - parent: 8 - type: Transform -- uid: 337 - type: CableApcExtension - components: - - pos: 1.5,7.5 - parent: 8 - type: Transform -- uid: 338 - type: CableApcExtension - components: - - pos: 2.5,7.5 - parent: 8 - type: Transform -- uid: 339 - type: CableApcExtension - components: - - pos: 3.5,7.5 - parent: 8 - type: Transform -- uid: 340 - type: CableApcExtension - components: - - pos: 4.5,7.5 - parent: 8 - type: Transform -- uid: 341 - type: CableApcExtension - components: - - pos: 5.5,7.5 - parent: 8 - type: Transform -- uid: 342 - type: CableApcExtension - components: - - pos: 6.5,7.5 - parent: 8 - type: Transform -- uid: 343 - type: CableApcExtension - components: - - pos: 7.5,7.5 - parent: 8 - type: Transform -- uid: 344 - type: CableApcExtension - components: - - pos: -0.5,6.5 - parent: 8 - type: Transform -- uid: 345 - type: CableApcExtension - components: - - pos: -0.5,5.5 - parent: 8 - type: Transform -- uid: 346 - type: CableApcExtension - components: - - pos: -0.5,4.5 - parent: 8 - type: Transform -- uid: 347 - type: CableApcExtension - components: - - pos: -0.5,3.5 - parent: 8 - type: Transform -- uid: 348 - type: CableApcExtension - components: - - pos: -0.5,2.5 - parent: 8 - type: Transform -- uid: 349 - type: CableApcExtension - components: - - pos: -0.5,1.5 - parent: 8 - type: Transform -- uid: 350 - type: CableApcExtension - components: - - pos: -0.5,0.5 - parent: 8 - type: Transform -- uid: 351 - type: CableApcExtension - components: - - pos: -0.5,-0.5 - parent: 8 - type: Transform -- uid: 352 - type: CableApcExtension - components: - - pos: -0.5,-1.5 - parent: 8 - type: Transform -- uid: 353 - type: CableApcExtension - components: - - pos: -0.5,-3.5 - parent: 8 - type: Transform -- uid: 354 - type: CableApcExtension - components: - - pos: -0.5,-4.5 - parent: 8 - type: Transform -- uid: 355 - type: CableApcExtension - components: - - pos: -0.5,-5.5 - parent: 8 - type: Transform -- uid: 356 - type: CableApcExtension - components: - - pos: -0.5,-6.5 - parent: 8 - type: Transform -- uid: 357 - type: CableApcExtension - components: - - pos: -0.5,-7.5 - parent: 8 - type: Transform -- uid: 358 - type: CableApcExtension - components: - - pos: -0.5,-8.5 - parent: 8 - type: Transform -- uid: 359 - type: CableApcExtension - components: - - pos: -1.5,-6.5 - parent: 8 - type: Transform -- uid: 360 - type: CableApcExtension - components: - - pos: -2.5,-6.5 - parent: 8 - type: Transform -- uid: 361 - type: CableApcExtension - components: - - pos: -3.5,-6.5 - parent: 8 - type: Transform -- uid: 362 - type: CableApcExtension - components: - - pos: -4.5,-6.5 - parent: 8 - type: Transform -- uid: 363 - type: CableApcExtension - components: - - pos: 0.5,-6.5 - parent: 8 - type: Transform -- uid: 364 - type: CableApcExtension - components: - - pos: 1.5,-6.5 - parent: 8 - type: Transform -- uid: 365 - type: CableApcExtension - components: - - pos: 2.5,-6.5 - parent: 8 - type: Transform -- uid: 366 - type: CableApcExtension - components: - - pos: 3.5,-6.5 - parent: 8 - type: Transform -- uid: 367 - type: WallUranium - components: - - pos: 10.5,2.5 - parent: 8 - type: Transform -- uid: 368 - type: CableApcExtension - components: - - pos: 10.5,-0.5 - parent: 8 - type: Transform -- uid: 369 - type: CableApcExtension - components: - - pos: 9.5,-0.5 - parent: 8 - type: Transform -- uid: 370 - type: CableApcExtension - components: - - pos: 12.5,2.5 - parent: 8 - type: Transform -- uid: 371 - type: CableApcExtension - components: - - pos: 12.5,1.5 - parent: 8 - type: Transform -- uid: 372 - type: CableApcExtension - components: - - pos: 12.5,0.5 - parent: 8 - type: Transform -- uid: 373 - type: CableApcExtension - components: - - pos: 12.5,-0.5 - parent: 8 - type: Transform -- uid: 374 - type: CableApcExtension - components: - - pos: 12.5,-1.5 - parent: 8 - type: Transform -- uid: 375 - type: CableApcExtension - components: - - pos: 12.5,3.5 - parent: 8 - type: Transform -- uid: 376 - type: CableApcExtension - components: - - pos: 12.5,4.5 - parent: 8 - type: Transform -- uid: 377 - type: CableApcExtension - components: - - pos: 3.5,8.5 - parent: 8 - type: Transform -- uid: 378 - type: CableApcExtension - components: - - pos: 3.5,9.5 - parent: 8 - type: Transform -- uid: 379 - type: CableApcExtension - components: - - pos: 3.5,10.5 - parent: 8 - type: Transform -- uid: 380 - type: CableApcExtension - components: - - pos: 3.5,11.5 - parent: 8 - type: Transform -- uid: 381 - type: CableApcExtension - components: - - pos: 3.5,12.5 - parent: 8 - type: Transform -- uid: 382 - type: CableApcExtension - components: - - pos: 3.5,13.5 - parent: 8 - type: Transform -- uid: 383 - type: CableApcExtension - components: - - pos: 3.5,14.5 - parent: 8 - type: Transform -- uid: 384 - type: CableApcExtension - components: - - pos: 3.5,15.5 - parent: 8 - type: Transform -- uid: 385 - type: CableApcExtension - components: - - pos: 3.5,16.5 - parent: 8 - type: Transform -- uid: 386 - type: CableApcExtension - components: - - pos: 2.5,16.5 - parent: 8 - type: Transform -- uid: 387 - type: CableApcExtension - components: - - pos: 1.5,16.5 - parent: 8 - type: Transform -- uid: 388 - type: CableApcExtension - components: - - pos: 0.5,16.5 - parent: 8 - type: Transform -- uid: 389 - type: CableApcExtension - components: - - pos: -0.5,16.5 - parent: 8 - type: Transform -- uid: 390 - type: CableApcExtension - components: - - pos: -4.5,8.5 - parent: 8 - type: Transform -- uid: 391 - type: CableApcExtension - components: - - pos: -4.5,9.5 - parent: 8 - type: Transform -- uid: 392 - type: CableApcExtension - components: - - pos: -4.5,10.5 - parent: 8 - type: Transform -- uid: 393 - type: CableApcExtension - components: - - pos: -4.5,11.5 - parent: 8 - type: Transform -- uid: 394 - type: CableApcExtension - components: - - pos: -4.5,12.5 - parent: 8 - type: Transform -- uid: 395 - type: CableApcExtension - components: - - pos: -4.5,13.5 - parent: 8 - type: Transform -- uid: 396 - type: CableApcExtension - components: - - pos: -4.5,14.5 - parent: 8 - type: Transform -- uid: 397 - type: CableApcExtension - components: - - pos: -4.5,15.5 - parent: 8 - type: Transform -- uid: 398 - type: CableApcExtension - components: - - pos: -4.5,16.5 - parent: 8 - type: Transform -- uid: 399 - type: CableApcExtension - components: - - pos: -3.5,16.5 - parent: 8 - type: Transform -- uid: 400 - type: CableApcExtension - components: - - pos: -2.5,16.5 - parent: 8 - type: Transform -- uid: 401 - type: CableApcExtension - components: - - pos: -1.5,16.5 - parent: 8 - type: Transform -- uid: 402 - type: CableApcExtension - components: - - pos: -0.5,15.5 - parent: 8 - type: Transform -- uid: 403 - type: CableApcExtension - components: - - pos: -0.5,14.5 - parent: 8 - type: Transform -- uid: 404 - type: CableApcExtension - components: - - pos: -0.5,13.5 - parent: 8 - type: Transform -- uid: 405 - type: CableApcExtension - components: - - pos: -0.5,12.5 - parent: 8 - type: Transform -- uid: 406 - type: CableApcExtension - components: - - pos: -0.5,11.5 - parent: 8 - type: Transform -- uid: 407 - type: CrateFilledSpawner - components: - - pos: -15.5,-0.5 - parent: 8 - type: Transform -- uid: 408 - type: CrateFilledSpawner - components: - - pos: -13.5,-2.5 - parent: 8 - type: Transform -- uid: 409 - type: CrateFilledSpawner - components: - - pos: -12.5,-1.5 - parent: 8 - type: Transform -- uid: 410 - type: CrateFilledSpawner - components: - - pos: -12.5,-0.5 - parent: 8 - type: Transform -- uid: 411 - type: CrateNPCButterflies - components: - - pos: -15.5,-1.5 - parent: 8 - type: Transform -- uid: 412 - type: CrateNPCButterflies - components: - - pos: -15.5,-2.5 - parent: 8 - type: Transform -- uid: 413 - type: CrateNPCButterflies - components: - - pos: -14.5,-2.5 - parent: 8 - type: Transform -- uid: 414 - type: CrateNPCButterflies - components: - - pos: -14.5,-1.5 - parent: 8 - type: Transform -- uid: 415 - type: CrateNPCButterflies - components: - - pos: -13.5,-1.5 - parent: 8 - type: Transform -- uid: 416 - type: CrateNPCButterflies - components: - - pos: -13.5,-0.5 - parent: 8 - type: Transform -- uid: 417 - type: CrateNPCDuck - components: - - pos: -12.5,5.5 - parent: 8 - type: Transform -- uid: 418 - type: Railing - components: - - rot: 3.141592653589793 rad - pos: -12.5,4.5 - parent: 8 - type: Transform -- uid: 419 - type: Railing - components: - - rot: 3.141592653589793 rad - pos: -13.5,4.5 - parent: 8 - type: Transform -- uid: 420 - type: RailingCornerSmall - components: - - rot: -1.5707963267948966 rad - pos: -14.5,4.5 - parent: 8 - type: Transform -- uid: 421 - type: Railing - components: - - rot: 1.5707963267948966 rad - pos: -14.5,5.5 - parent: 8 - type: Transform -- uid: 422 - type: TablePlasmaGlass - components: - - pos: -15.5,3.5 - parent: 8 - type: Transform -- uid: 423 - type: Bed - components: - - pos: -0.5,11.5 - parent: 8 - type: Transform -- uid: 424 - type: TablePlasmaGlass - components: - - pos: -15.5,2.5 - parent: 8 - type: Transform -- uid: 425 - type: BedsheetWiz - components: - - pos: -0.5,11.5 - parent: 8 - type: Transform -- uid: 426 - type: Bookshelf - components: - - pos: 14.5,2.5 - parent: 8 - type: Transform -- uid: 427 - type: Bookshelf - components: - - pos: 13.5,2.5 - parent: 8 - type: Transform -- uid: 428 - type: Bookshelf - components: - - pos: 14.5,5.5 - parent: 8 - type: Transform -- uid: 429 - type: CounterWoodFrame - components: - - pos: 0.5,10.5 - parent: 8 - type: Transform -- uid: 430 - type: CounterWoodFrame - components: - - pos: -0.5,10.5 - parent: 8 - type: Transform -- uid: 431 - type: CounterWoodFrame - components: - - pos: -1.5,10.5 - parent: 8 - type: Transform -- uid: 432 - type: Bookshelf - components: - - pos: 13.5,5.5 - parent: 8 - type: Transform -- uid: 433 - type: FoodMushroom - components: - - pos: -15.352265,3.967207 - parent: 8 - type: Transform -- uid: 434 - type: FoodSoupMushroom - components: - - pos: -15.539765,3.482832 - parent: 8 - type: Transform -- uid: 435 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -0.5,10.5 - parent: 8 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 436 - type: FoodBurgerEmpowered - components: - - pos: -15.359405,2.4514632 - parent: 8 - type: Transform -- uid: 437 - type: ChemistryEmptyBottle04 - components: - - pos: -15.728878,2.8102624 - parent: 8 - type: Transform -- uid: 438 - type: ChemistryEmptyBottle04 - components: - - pos: -15.478878,3.0915124 - parent: 8 - type: Transform -- uid: 439 - type: Bookshelf - components: - - pos: 11.5,5.5 - parent: 8 - type: Transform -- uid: 440 - type: CableApcExtension - components: - - pos: 11.5,4.5 - parent: 8 - type: Transform -- uid: 441 - type: CableApcExtension - components: - - pos: 9.5,4.5 - parent: 8 - type: Transform -- uid: 442 - type: CableApcExtension - components: - - pos: 10.5,4.5 - parent: 8 - type: Transform -- uid: 443 - type: VendingMachineBooze - components: - - flags: SessionSpecific - type: MetaData - - pos: 1.5,-2.5 - parent: 8 - type: Transform -- uid: 444 - type: Bookshelf - components: - - pos: 11.5,2.5 - parent: 8 - type: Transform -- uid: 445 - type: Bookshelf - components: - - pos: 11.5,1.5 - parent: 8 - type: Transform -- uid: 446 - type: Rack - components: - - pos: 1.5,12.5 - parent: 8 - type: Transform -- uid: 447 - type: Bookshelf - components: - - pos: 11.5,-1.5 - parent: 8 - type: Transform -- uid: 448 - type: Bookshelf - components: - - pos: 11.5,-2.5 - parent: 8 - type: Transform -- uid: 449 - type: Bookshelf - components: - - pos: 14.5,-2.5 - parent: 8 - type: Transform -- uid: 450 - type: Bookshelf - components: - - pos: 14.5,0.5 - parent: 8 - type: Transform -- uid: 451 - type: Bookshelf - components: - - pos: 13.5,0.5 - parent: 8 - type: Transform -- uid: 452 - type: TableWood - components: - - pos: 14.5,-1.5 - parent: 8 - type: Transform -- uid: 453 - type: TableWood - components: - - pos: 14.5,-0.5 - parent: 8 - type: Transform -- uid: 454 - type: TableWood - components: - - pos: 14.5,3.5 - parent: 8 - type: Transform -- uid: 455 - type: TableWood - components: - - pos: 14.5,4.5 - parent: 8 - type: Transform -- uid: 456 - type: TableWood - components: - - pos: 13.5,-2.5 - parent: 8 - type: Transform -- uid: 457 - type: TableWood - components: - - pos: 12.5,-2.5 - parent: 8 - type: Transform -- uid: 458 - type: BookBase - components: - - pos: 14.473303,-0.59247 - parent: 8 - type: Transform -- uid: 459 - type: BookBase - components: - - pos: 12.520178,-2.3682408 - parent: 8 - type: Transform -- uid: 460 - type: Rack - components: - - pos: -2.5,12.5 - parent: 8 - type: Transform -- uid: 461 - type: Rack - components: - - pos: -2.5,10.5 - parent: 8 - type: Transform -- uid: 462 - type: Rack - components: - - pos: 1.5,10.5 - parent: 8 - type: Transform -- uid: 463 - type: ClothingShoesCult - components: - - pos: 1.6833026,12.397421 - parent: 8 - type: Transform -- uid: 464 - type: ClothingShoesJester - components: - - pos: 1.6989276,10.428671 - parent: 8 - type: Transform -- uid: 465 - type: ClothingShoesSlippers - components: - - pos: -2.2541976,10.381796 - parent: 8 - type: Transform -- uid: 466 - type: ClothingShoesBootsLaceup - components: - - pos: -2.3010726,12.319296 - parent: 8 - type: Transform -- uid: 467 - type: ClothingNeckCloakHerald - components: - - pos: 1.4896643,12.566754 - parent: 8 - type: Transform -- uid: 468 - type: ClothingHeadHatWizard - components: - - pos: -1.050724,10.559658 - parent: 8 - type: Transform -- uid: 469 - type: MagicDiceBag - components: - - pos: 0.55216426,10.564254 - parent: 8 - type: Transform -- uid: 470 - type: BookBase - components: - - pos: 0.012695551,10.572663 - parent: 8 - type: Transform -- uid: 471 - type: ClothingHeadHatXmasCrown - components: - - pos: 1.7783206,10.697663 - parent: 8 - type: Transform -- uid: 472 - type: Paper - components: - - pos: -0.58105445,10.463288 - parent: 8 - type: Transform -- uid: 473 - type: Paper - components: - - pos: -0.45605445,10.635163 - parent: 8 - type: Transform -- uid: 474 - type: ClothingHeadHatPaper - components: - - pos: -2.645649,10.67836 - parent: 8 - type: Transform -- uid: 475 - type: PackPaperRollingFilters - components: - - pos: -1.3113348,8.727632 - parent: 8 - type: Transform -- uid: 476 - type: PottedPlantBioluminscent - components: - - pos: -6.5,8.5 - parent: 8 - type: Transform -- uid: 477 - type: PottedPlantBioluminscent - components: - - pos: 5.5,8.5 - parent: 8 - type: Transform -- uid: 478 - type: TableStone - components: - - pos: 4.5,12.5 - parent: 8 - type: Transform -- uid: 479 - type: TableStone - components: - - pos: -5.5,12.5 - parent: 8 - type: Transform -- uid: 480 - type: TableStone - components: - - pos: 0.5,-5.5 - parent: 8 - type: Transform -- uid: 481 - type: TableStone - components: - - pos: -1.5,-5.5 - parent: 8 - type: Transform -- uid: 482 - type: TableStone - components: - - pos: -1.5,-4.5 - parent: 8 - type: Transform -- uid: 483 - type: TableStone - components: - - pos: -0.5,-4.5 - parent: 8 - type: Transform -- uid: 484 - type: TablePlasmaGlass - components: - - pos: -0.5,-6.5 - parent: 8 - type: Transform -- uid: 485 - type: TableStone - components: - - pos: 0.5,-4.5 - parent: 8 - type: Transform -- uid: 486 - type: TablePlasmaGlass - components: - - pos: -0.5,-5.5 - parent: 8 - type: Transform -- uid: 487 - type: TableStone - components: - - pos: -1.5,-7.5 - parent: 8 - type: Transform -- uid: 488 - type: TableStone - components: - - pos: -1.5,-6.5 - parent: 8 - type: Transform -- uid: 489 - type: TableStone - components: - - pos: 0.5,-6.5 - parent: 8 - type: Transform -- uid: 490 - type: TableStone - components: - - pos: 0.5,-7.5 - parent: 8 - type: Transform -- uid: 491 - type: TableStone - components: - - pos: -0.5,-7.5 - parent: 8 - type: Transform -- uid: 492 - type: ChairWood - components: - - pos: 1.5,-5.5 - parent: 8 - type: Transform -- uid: 493 - type: ChairWood - components: - - pos: -1.5,-3.5 - parent: 8 - type: Transform -- uid: 494 - type: ChairWood - components: - - pos: 0.5,-3.5 - parent: 8 - type: Transform -- uid: 495 - type: ChairWood - components: - - rot: 1.5707963267948966 rad - pos: -2.5,-5.5 - parent: 8 - type: Transform -- uid: 496 - type: ChairWood - components: - - rot: 1.5707963267948966 rad - pos: -2.5,-7.5 - parent: 8 - type: Transform -- uid: 497 - type: ChairWood - components: - - rot: 3.141592653589793 rad - pos: -0.5,-8.5 - parent: 8 - type: Transform -- uid: 498 - type: ChairWood - components: - - rot: -1.5707963267948966 rad - pos: 1.5,-7.5 - parent: 8 - type: Transform -- uid: 499 - type: FoodJellyAmanita - components: - - pos: -1.3440374,-4.8259554 - parent: 8 - type: Transform -- uid: 500 - type: FoodBakedMuffinBerry - components: - - pos: 0.020234525,-7.308288 - parent: 8 - type: Transform -- uid: 501 - type: FoodBakedMuffinBerry - components: - - pos: 0.17648453,-6.277038 - parent: 8 - type: Transform -- uid: 502 - type: FoodCakeBrain - components: - - pos: -1.3547654,-7.152038 - parent: 8 - type: Transform -- uid: 503 - type: FoodSoupEyeball - components: - - pos: 0.17986506,-4.264732 - parent: 8 - type: Transform -- uid: 504 - type: ClothingEyesGlasses - components: - - pos: -2.2717645,12.629792 - parent: 8 - type: Transform -- uid: 505 - type: ClothingUniformJumpsuitLawyerGood - components: - - pos: -2.731647,12.655276 - parent: 8 - type: Transform -- uid: 506 - type: ClothingUniformJumpsuitAncient - components: - - pos: -2.4793627,10.564559 - parent: 8 - type: Transform -- uid: 507 - type: StatueVenusBlue - components: - - pos: 3.5,-2.5 - parent: 8 - type: Transform -- uid: 508 - type: StatueVenusBlue - components: - - pos: -4.5,-2.5 - parent: 8 - type: Transform -- uid: 509 - type: TableStone - components: - - pos: 4.5,-2.5 - parent: 8 - type: Transform -- uid: 510 - type: TableStone - components: - - pos: 5.5,-2.5 - parent: 8 - type: Transform -- uid: 511 - type: TableStone - components: - - pos: -5.5,-2.5 - parent: 8 - type: Transform -- uid: 512 - type: TableStone - components: - - pos: -6.5,-2.5 - parent: 8 - type: Transform -- uid: 513 - type: PonderingOrb - components: - - pos: -0.4962968,17.605164 - parent: 8 - type: Transform -- uid: 514 - type: TablePlasmaGlass - components: - - pos: -0.5,17.5 - parent: 8 - type: Transform -- uid: 515 - type: TablePlasmaGlass - components: - - pos: -2.5,17.5 - parent: 8 - type: Transform -- uid: 516 - type: TablePlasmaGlass - components: - - pos: 1.5,17.5 - parent: 8 - type: Transform -- uid: 517 - type: LampBanana - components: - - rot: -1.5707963267948966 rad - pos: -1.4908361,11.149109 - parent: 8 - type: Transform -- uid: 518 - type: FoodPieBananaCream - components: - - pos: -2.5952342,8.796732 - parent: 8 - type: Transform -- uid: 519 - type: FoodPieBananaCream - components: - - pos: -2.5952342,8.609232 - parent: 8 - type: Transform -- uid: 520 - type: CartridgeRocket - components: - - pos: -1.8583066,8.38381 - parent: 8 - type: Transform -- uid: 521 - type: CartridgeRocket - components: - - pos: -1.8270566,8.60256 - parent: 8 - type: Transform -- uid: 522 - type: RockGuitarInstrument - components: - - pos: 0.68507594,8.521131 - parent: 8 - type: Transform -- uid: 523 - type: ClothingHandsGlovesFingerless - components: - - pos: 1.428292,8.538843 - parent: 8 - type: Transform -- uid: 524 - type: FoodBowlBig - components: - - pos: 4.5282702,-2.3372512 - parent: 8 - type: Transform -- uid: 525 - type: FoodBowlBig - components: - - pos: -5.4717298,-2.3841262 - parent: 8 - type: Transform -- uid: 526 - type: SmokingPipe - components: - - pos: -1.5894036,10.543817 - parent: 8 - type: Transform -- uid: 527 - type: CarpetBlack - components: - - pos: -1.5,16.5 - parent: 8 - type: Transform -- uid: 528 - type: CarpetBlack - components: - - pos: -1.5,15.5 - parent: 8 - type: Transform -- uid: 529 - type: CarpetBlack - components: - - pos: -0.5,15.5 - parent: 8 - type: Transform -- uid: 530 - type: CarpetBlack - components: - - pos: 0.5,15.5 - parent: 8 - type: Transform -- uid: 531 - type: CarpetBlack - components: - - pos: 0.5,16.5 - parent: 8 - type: Transform -- uid: 532 - type: CarpetBlack - components: - - pos: -0.5,16.5 - parent: 8 - type: Transform -- uid: 533 - type: CarpetBlack - components: - - pos: 1.5,15.5 - parent: 8 - type: Transform -- uid: 534 - type: CarpetBlack - components: - - pos: -2.5,15.5 - parent: 8 - type: Transform -- uid: 535 - type: CarpetBlack - components: - - pos: -4.5,10.5 - parent: 8 - type: Transform -- uid: 536 - type: CarpetBlack - components: - - pos: -4.5,9.5 - parent: 8 - type: Transform -- uid: 537 - type: CarpetBlack - components: - - pos: -4.5,8.5 - parent: 8 - type: Transform -- uid: 538 - type: CarpetBlack - components: - - pos: 3.5,10.5 - parent: 8 - type: Transform -- uid: 539 - type: CarpetBlack - components: - - pos: 3.5,9.5 - parent: 8 - type: Transform -- uid: 540 - type: CarpetBlack - components: - - pos: 3.5,8.5 - parent: 8 - type: Transform -- uid: 541 - type: CarpetBlack - components: - - pos: 4.5,10.5 - parent: 8 - type: Transform -- uid: 542 - type: CarpetBlack - components: - - pos: 4.5,9.5 - parent: 8 - type: Transform -- uid: 543 - type: CarpetBlack - components: - - pos: 4.5,8.5 - parent: 8 - type: Transform -- uid: 544 - type: CarpetBlack - components: - - pos: -5.5,10.5 - parent: 8 - type: Transform -- uid: 545 - type: CarpetBlack - components: - - pos: -5.5,9.5 - parent: 8 - type: Transform -- uid: 546 - type: CarpetBlack - components: - - pos: -5.5,8.5 - parent: 8 - type: Transform -- uid: 547 - type: CarpetBlack - components: - - pos: -10.5,2.5 - parent: 8 - type: Transform -- uid: 548 - type: CarpetBlack - components: - - pos: -10.5,1.5 - parent: 8 - type: Transform -- uid: 549 - type: CarpetBlack - components: - - pos: -9.5,2.5 - parent: 8 - type: Transform -- uid: 550 - type: CarpetBlack - components: - - pos: -9.5,1.5 - parent: 8 - type: Transform -- uid: 551 - type: CarpetBlack - components: - - pos: -8.5,2.5 - parent: 8 - type: Transform -- uid: 552 - type: CarpetBlack - components: - - pos: -8.5,1.5 - parent: 8 - type: Transform -- uid: 553 - type: CarpetBlack - components: - - pos: 7.5,-0.5 - parent: 8 - type: Transform -- uid: 554 - type: CarpetBlack - components: - - pos: 7.5,-1.5 - parent: 8 - type: Transform -- uid: 555 - type: CarpetBlack - components: - - pos: 8.5,-0.5 - parent: 8 - type: Transform -- uid: 556 - type: CarpetBlack - components: - - pos: 8.5,-1.5 - parent: 8 - type: Transform -- uid: 557 - type: CarpetBlack - components: - - pos: 9.5,-0.5 - parent: 8 - type: Transform -- uid: 558 - type: CarpetBlack - components: - - pos: 9.5,-1.5 - parent: 8 - type: Transform -- uid: 559 - type: CarpetBlack - components: - - pos: 7.5,5.5 - parent: 8 - type: Transform -- uid: 560 - type: CarpetBlack - components: - - pos: 7.5,4.5 - parent: 8 - type: Transform -- uid: 561 - type: CarpetBlack - components: - - pos: 8.5,5.5 - parent: 8 - type: Transform -- uid: 562 - type: CarpetBlack - components: - - pos: 8.5,4.5 - parent: 8 - type: Transform -- uid: 563 - type: CarpetBlack - components: - - pos: 9.5,5.5 - parent: 8 - type: Transform -- uid: 564 - type: CarpetBlack - components: - - pos: 9.5,4.5 - parent: 8 - type: Transform -- uid: 565 - type: PlushieCarp - components: - - pos: 1.4727893,-5.536046 - parent: 8 - type: Transform -- uid: 566 - type: FoodMealCubancarp - components: - - pos: 0.7309558,-4.9483347 - parent: 8 - type: Transform -- uid: 567 - type: ClothingUniformJumpsuitJester - components: - - pos: 1.3414769,10.439836 - parent: 8 - type: Transform -- uid: 568 - type: MonkeyCubeWrapped - components: - - pos: 1.2503326,17.794128 - parent: 8 - type: Transform -- uid: 569 - type: MonkeyCubeWrapped - components: - - pos: 1.2347076,17.481628 - parent: 8 - type: Transform -- uid: 570 - type: WaterCooler - components: - - pos: 2.5,17.5 - parent: 8 - type: Transform -- uid: 571 - type: DrinkWaterJug - components: - - pos: 3.2815828,16.981628 - parent: 8 - type: Transform -- uid: 572 - type: DrinkWaterJug - components: - - pos: 3.0940828,17.137878 - parent: 8 - type: Transform -- uid: 573 - type: ClothingHeadHatChef - components: - - pos: -1.5989187,-4.2456093 - parent: 8 - type: Transform -- uid: 574 - type: VendingMachineDinnerware - components: - - flags: SessionSpecific - type: MetaData - - pos: -2.5,-2.5 - parent: 8 - type: Transform -- uid: 575 - type: DrinkMugOne - components: - - pos: 1.7631655,17.518002 - parent: 8 - type: Transform -- uid: 576 - type: FoodTartCoco - components: - - pos: -2.507419,17.646713 - parent: 8 - type: Transform -- uid: 577 - type: FoodMealNachos - components: - - pos: -1.5629394,-6.0839267 - parent: 8 - type: Transform -- uid: 578 - type: FoodSnackChowMein - components: - - pos: 0.7567436,-6.6460304 - parent: 8 - type: Transform -- uid: 579 - type: TableCounterWood - components: - - pos: -5.5,-6.5 - parent: 8 - type: Transform -- uid: 580 - type: TableCounterWood - components: - - pos: -5.5,-7.5 - parent: 8 - type: Transform -- uid: 581 - type: TableCounterWood - components: - - pos: 4.5,-6.5 - parent: 8 - type: Transform -- uid: 582 - type: TableCounterWood - components: - - pos: 4.5,-7.5 - parent: 8 - type: Transform -- uid: 583 - type: BoozeDispenser - components: - - rot: -1.5707963267948966 rad - pos: 4.5,-7.5 - parent: 8 - type: Transform -- uid: 584 - type: BoozeDispenser - components: - - rot: 1.5707963267948966 rad - pos: -5.5,-6.5 - parent: 8 - type: Transform -- uid: 585 - type: soda_dispenser - components: - - rot: -1.5707963267948966 rad - pos: 4.5,-6.5 - parent: 8 - type: Transform -- uid: 586 - type: soda_dispenser - components: - - rot: 1.5707963267948966 rad - pos: -5.5,-7.5 - parent: 8 - type: Transform -... diff --git a/Resources/Maps/parkstation.yml b/Resources/Maps/parkstation.yml index e1a9b1c5aa..7543c8f761 100644 --- a/Resources/Maps/parkstation.yml +++ b/Resources/Maps/parkstation.yml @@ -254,7 +254,8 @@ entities: tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAABgAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAPAAAAGAAAAA8AAAAPAAAAGAAAAA8AAAAAAAAAAAAAAAAAAAAAAAAAGAAAABgAAAAAAAAAAAAAAAAAAAAAAAAADwAAABgAAAAPAAAADwAAABgAAAAPAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA8AAAAYAAAADwAAAA8AAAAYAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAPAAAAGAAAAA8AAAAPAAAAGAAAAA8AAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAADwAAABgAAAAPAAAADwAAABgAAAAPAAAAAAAAAAAAAAAAAAAAGAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAA8AAAAYAAAADwAAAA8AAAAYAAAADwAAAAAAAAAAAAAAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAPAAAAGAAAAA8AAAAPAAAAGAAAAA8AAAAAAAAAAAAAAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAADwAAABgAAAAPAAAADwAAABgAAAAPAAAAA== type: MapGrid - type: Broadphase - - angularDamping: 0.05 + - bodyStatus: InAir + angularDamping: 0.05 linearDamping: 0.05 fixedRotation: False bodyType: Dynamic @@ -10986,93 +10987,38 @@ entities: - pos: 29.5,-6.5 parent: 1 type: Transform - - inputs: - Open: - - port: On - uid: 4074 - Close: - - port: Off - uid: 4074 - Toggle: [] - type: SignalReceiver - uid: 2740 components: - rot: -1.5707963267948966 rad pos: -22.5,-50.5 parent: 1 type: Transform - - inputs: - Open: - - port: Right - uid: 14967 - Close: - - port: Middle - uid: 14967 - - port: Left - uid: 14967 - Toggle: [] - type: SignalReceiver - uid: 2752 components: - rot: -1.5707963267948966 rad pos: -20.5,-50.5 parent: 1 type: Transform - - inputs: - Open: - - port: Left - uid: 14967 - Close: - - port: Middle - uid: 14967 - - port: Right - uid: 14967 - Toggle: [] - type: SignalReceiver - uid: 4003 components: - pos: 29.5,-4.5 parent: 1 type: Transform - - inputs: - Open: - - port: On - uid: 4074 - Close: - - port: Off - uid: 4074 - Toggle: [] - type: SignalReceiver - uid: 8616 components: - pos: -32.5,33.5 parent: 1 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: [] - type: SignalReceiver - uid: 8617 components: - pos: -32.5,29.5 parent: 1 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: [] - type: SignalReceiver - uid: 8619 components: - pos: -29.5,33.5 parent: 1 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: [] - type: SignalReceiver - proto: BlastDoorOpen entities: - uid: 3271 @@ -11085,13 +11031,6 @@ entities: - pos: 42.5,-8.5 parent: 1 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 9409 - type: SignalReceiver - proto: BlockGameArcade entities: - uid: 398 @@ -39362,11 +39301,6 @@ entities: - pos: 1.5,-30.5 parent: 1 type: Transform - - inputs: - CloningPodReceiver: - - port: CloningPodSender - uid: 3790 - type: SignalReceiver - proto: ClosetBombFilled entities: - uid: 641 @@ -39869,18 +39803,18 @@ entities: - pos: -33.499557,-49.435776 parent: 1 type: Transform -- proto: ClothingEyesGlassesBeer +- proto: ClothingEyesGlassesMeson entities: - - uid: 9243 + - uid: 10320 components: - - pos: -25.3791,39.50405 + - pos: 40.38926,-46.504444 parent: 1 type: Transform -- proto: ClothingEyesGlassesMeson +- proto: ClothingEyesHudBeer entities: - - uid: 10320 + - uid: 9243 components: - - pos: 40.38926,-46.504444 + - pos: -25.3791,39.50405 parent: 1 type: Transform - proto: ClothingEyesHudDiagnostic @@ -41112,11 +41046,6 @@ entities: pos: 41.5,-36.5 parent: 1 type: Transform - - outputs: - ArtifactAnalyzerSender: - - port: ArtifactAnalyzerReceiver - uid: 5290 - type: SignalTransmitter - proto: ComputerBroken entities: - uid: 4518 @@ -41165,14 +41094,6 @@ entities: pos: 3.5,-29.5 parent: 1 type: Transform - - outputs: - MedicalScannerSender: - - port: MedicalScannerReceiver - uid: 3760 - CloningPodSender: - - port: CloningPodReceiver - uid: 15805 - type: SignalTransmitter - proto: ComputerComms entities: - uid: 1638 @@ -41384,122 +41305,60 @@ entities: pos: -32.5,33.5 parent: 1 type: Transform - - inputs: - Reverse: [] - Forward: [] - Off: [] - type: SignalReceiver - uid: 3303 components: - rot: 1.5707963267948966 rad pos: -31.5,29.5 parent: 1 type: Transform - - inputs: - Reverse: [] - Forward: [] - Off: [] - type: SignalReceiver - uid: 3305 components: - rot: 1.5707963267948966 rad pos: -29.5,29.5 parent: 1 type: Transform - - inputs: - Reverse: [] - Forward: [] - Off: [] - type: SignalReceiver - uid: 3306 components: - rot: 1.5707963267948966 rad pos: -28.5,29.5 parent: 1 type: Transform - - inputs: - Reverse: [] - Forward: [] - Off: [] - type: SignalReceiver - uid: 3307 components: - rot: 1.5707963267948966 rad pos: -31.5,33.5 parent: 1 type: Transform - - inputs: - Reverse: [] - Forward: [] - Off: [] - type: SignalReceiver - uid: 3308 components: - rot: 1.5707963267948966 rad pos: -30.5,33.5 parent: 1 type: Transform - - inputs: - Reverse: [] - Forward: [] - Off: [] - type: SignalReceiver - uid: 3309 components: - rot: 1.5707963267948966 rad pos: -29.5,33.5 parent: 1 type: Transform - - inputs: - Reverse: [] - Forward: [] - Off: [] - type: SignalReceiver - uid: 3329 components: - rot: 3.141592653589793 rad pos: -13.5,27.5 parent: 1 type: Transform - - inputs: - Reverse: - - port: Right - uid: 3332 - Forward: - - port: Left - uid: 3332 - Off: - - port: Middle - uid: 3332 - type: SignalReceiver - uid: 3344 components: - rot: 3.141592653589793 rad pos: -13.5,28.5 parent: 1 type: Transform - - inputs: - Reverse: - - port: Right - uid: 3332 - Forward: - - port: Left - uid: 3332 - Off: - - port: Middle - uid: 3332 - type: SignalReceiver - uid: 8608 components: - rot: 1.5707963267948966 rad pos: -32.5,29.5 parent: 1 type: Transform - - inputs: - Reverse: [] - Forward: [] - Off: [] - type: SignalReceiver - uid: 10772 components: - pos: -30.5,29.5 @@ -41511,119 +41370,42 @@ entities: pos: -20.5,-50.5 parent: 1 type: Transform - - inputs: - Reverse: - - port: Right - uid: 14759 - Forward: - - port: Left - uid: 14759 - Off: - - port: Middle - uid: 14759 - type: SignalReceiver - uid: 14765 components: - rot: -1.5707963267948966 rad pos: -19.5,-50.5 parent: 1 type: Transform - - inputs: - Reverse: - - port: Right - uid: 14759 - Forward: - - port: Left - uid: 14759 - Off: - - port: Middle - uid: 14759 - type: SignalReceiver - uid: 14987 components: - rot: -1.5707963267948966 rad pos: -18.5,-50.5 parent: 1 type: Transform - - inputs: - Reverse: - - port: Right - uid: 14759 - Forward: - - port: Left - uid: 14759 - Off: - - port: Middle - uid: 14759 - type: SignalReceiver - uid: 16080 components: - rot: -1.5707963267948966 rad pos: -17.5,-50.5 parent: 1 type: Transform - - inputs: - Reverse: - - port: Right - uid: 14759 - Forward: - - port: Left - uid: 14759 - Off: - - port: Middle - uid: 14759 - type: SignalReceiver - uid: 16781 components: - rot: -1.5707963267948966 rad pos: -21.5,-50.5 parent: 1 type: Transform - - inputs: - Reverse: - - port: Right - uid: 14759 - Forward: - - port: Left - uid: 14759 - Off: - - port: Middle - uid: 14759 - type: SignalReceiver - uid: 16782 components: - rot: -1.5707963267948966 rad pos: -22.5,-50.5 parent: 1 type: Transform - - inputs: - Reverse: - - port: Right - uid: 14759 - Forward: - - port: Left - uid: 14759 - Off: - - port: Middle - uid: 14759 - type: SignalReceiver - uid: 16783 components: - rot: -1.5707963267948966 rad pos: -23.5,-50.5 parent: 1 type: Transform - - inputs: - Reverse: - - port: Right - uid: 14759 - Forward: - - port: Left - uid: 14759 - Off: - - port: Middle - uid: 14759 - type: SignalReceiver - proto: CowToolboxFilled entities: - uid: 3384 @@ -82142,11 +81924,6 @@ entities: - pos: 41.5,-39.5 parent: 1 type: Transform - - inputs: - ArtifactAnalyzerReceiver: - - port: ArtifactAnalyzerSender - uid: 9980 - type: SignalReceiver - proto: MachineFrame entities: - uid: 10410 @@ -82463,11 +82240,6 @@ entities: - pos: 2.5,-27.5 parent: 1 type: Transform - - inputs: - MedicalScannerReceiver: - - port: MedicalScannerSender - uid: 3790 - type: SignalReceiver - proto: MedicalTechFab entities: - uid: 2991 @@ -89705,17 +89477,6 @@ entities: pos: -17.5,-50.5 parent: 1 type: Transform - - inputs: - Reverse: - - port: Left - uid: 14759 - Forward: - - port: Right - uid: 14759 - Off: - - port: Middle - uid: 14759 - type: SignalReceiver - proto: ReinforcedGirder entities: - uid: 2647 @@ -91303,116 +91064,44 @@ entities: - pos: 25.5,10.5 parent: 1 type: Transform - - inputs: - Open: - - port: On - uid: 889 - Close: - - port: Off - uid: 889 - Toggle: [] - type: SignalReceiver - uid: 1807 components: - pos: 24.5,10.5 parent: 1 type: Transform - - inputs: - Open: - - port: On - uid: 889 - Close: - - port: Off - uid: 889 - Toggle: [] - type: SignalReceiver - uid: 1925 components: - pos: 23.5,10.5 parent: 1 type: Transform - - inputs: - Open: - - port: On - uid: 889 - Close: - - port: Off - uid: 889 - Toggle: [] - type: SignalReceiver - uid: 2399 components: - rot: 1.5707963267948966 rad pos: 1.5,21.5 parent: 1 type: Transform - - inputs: - Open: - - port: On - uid: 3543 - Close: - - port: Off - uid: 3543 - Toggle: [] - type: SignalReceiver - uid: 2400 components: - rot: 1.5707963267948966 rad pos: 1.5,22.5 parent: 1 type: Transform - - inputs: - Open: - - port: On - uid: 3543 - Close: - - port: Off - uid: 3543 - Toggle: [] - type: SignalReceiver - uid: 3533 components: - rot: 1.5707963267948966 rad pos: 1.5,20.5 parent: 1 type: Transform - - inputs: - Open: - - port: On - uid: 3543 - Close: - - port: Off - uid: 3543 - Toggle: [] - type: SignalReceiver - uid: 5683 components: - pos: 35.5,15.5 parent: 1 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 1854 - - port: Pressed - uid: 4163 - type: SignalReceiver - uid: 5684 components: - pos: 34.5,15.5 parent: 1 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 1854 - - port: Pressed - uid: 4163 - type: SignalReceiver - proto: ShuttersNormalOpen entities: - uid: 578 @@ -91420,77 +91109,31 @@ entities: - pos: -6.5,27.5 parent: 1 type: Transform - - inputs: - Open: - - port: On - uid: 15792 - Close: - - port: Off - uid: 15792 - Toggle: [] - type: SignalReceiver - uid: 590 components: - pos: -3.5,27.5 parent: 1 type: Transform - - inputs: - Open: - - port: On - uid: 15792 - Close: - - port: Off - uid: 15792 - Toggle: [] - type: SignalReceiver - uid: 826 components: - pos: -8.5,12.5 parent: 1 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 757 - type: SignalReceiver - uid: 827 components: - pos: -10.5,12.5 parent: 1 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 757 - type: SignalReceiver - uid: 990 components: - pos: -16.5,32.5 parent: 1 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 4208 - type: SignalReceiver - uid: 1374 components: - pos: -13.5,-23.5 parent: 1 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 10 - type: SignalReceiver - uid: 1742 components: - rot: -1.5707963267948966 rad @@ -91585,93 +91228,38 @@ entities: - pos: -2.5,27.5 parent: 1 type: Transform - - inputs: - Open: - - port: On - uid: 15792 - Close: - - port: Off - uid: 15792 - Toggle: [] - type: SignalReceiver - uid: 1837 components: - pos: -5.5,27.5 parent: 1 type: Transform - - inputs: - Open: - - port: On - uid: 15792 - Close: - - port: Off - uid: 15792 - Toggle: [] - type: SignalReceiver - uid: 2078 components: - pos: 43.5,15.5 parent: 1 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 5788 - type: SignalReceiver - uid: 2079 components: - pos: 43.5,16.5 parent: 1 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 5788 - type: SignalReceiver - uid: 2080 components: - pos: 42.5,16.5 parent: 1 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 5788 - type: SignalReceiver - uid: 2081 components: - rot: -1.5707963267948966 rad pos: 42.5,19.5 parent: 1 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 5788 - type: SignalReceiver - uid: 2096 components: - rot: 1.5707963267948966 rad pos: 0.5,31.5 parent: 1 type: Transform - - inputs: - Open: - - port: On - uid: 15792 - Close: - - port: Off - uid: 15792 - Toggle: [] - type: SignalReceiver - uid: 2473 components: - rot: 3.141592653589793 rad @@ -91683,134 +91271,53 @@ entities: - pos: -4.5,27.5 parent: 1 type: Transform - - inputs: - Open: - - port: On - uid: 15792 - Close: - - port: Off - uid: 15792 - Toggle: [] - type: SignalReceiver - uid: 2843 components: - rot: 1.5707963267948966 rad pos: 0.5,33.5 parent: 1 type: Transform - - inputs: - Open: - - port: On - uid: 15792 - Close: - - port: Off - uid: 15792 - Toggle: [] - type: SignalReceiver - uid: 2845 components: - rot: 1.5707963267948966 rad pos: 0.5,35.5 parent: 1 type: Transform - - inputs: - Open: - - port: On - uid: 15792 - Close: - - port: Off - uid: 15792 - Toggle: [] - type: SignalReceiver - uid: 2846 components: - rot: 1.5707963267948966 rad pos: 0.5,34.5 parent: 1 type: Transform - - inputs: - Open: - - port: On - uid: 15792 - Close: - - port: Off - uid: 15792 - Toggle: [] - type: SignalReceiver - uid: 2847 components: - rot: 1.5707963267948966 rad pos: 0.5,36.5 parent: 1 type: Transform - - inputs: - Open: - - port: On - uid: 15792 - Close: - - port: Off - uid: 15792 - Toggle: [] - type: SignalReceiver - uid: 2848 components: - rot: 1.5707963267948966 rad pos: 0.5,32.5 parent: 1 type: Transform - - inputs: - Open: - - port: On - uid: 15792 - Close: - - port: Off - uid: 15792 - Toggle: [] - type: SignalReceiver - uid: 2852 components: - pos: -1.5,27.5 parent: 1 type: Transform - - inputs: - Open: - - port: On - uid: 15792 - Close: - - port: Off - uid: 15792 - Toggle: [] - type: SignalReceiver - uid: 2872 components: - rot: 1.5707963267948966 rad pos: 0.5,29.5 parent: 1 type: Transform - - inputs: - Open: - - port: On - uid: 15792 - Close: - - port: Off - uid: 15792 - Toggle: [] - type: SignalReceiver - uid: 2874 components: - rot: 1.5707963267948966 rad pos: 0.5,30.5 parent: 1 type: Transform - - inputs: - Open: - - port: On - uid: 15792 - Close: - - port: Off - uid: 15792 - Toggle: [] - type: SignalReceiver - uid: 3092 components: - rot: 3.141592653589793 rad @@ -91912,110 +91419,44 @@ entities: - pos: -14.5,32.5 parent: 1 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 4208 - type: SignalReceiver - uid: 4127 components: - pos: -13.5,27.5 parent: 1 type: Transform - - inputs: - Open: - - port: On - uid: 4175 - Close: - - port: Off - uid: 4175 - Toggle: [] - type: SignalReceiver - uid: 4210 components: - pos: -15.5,32.5 parent: 1 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 4208 - type: SignalReceiver - uid: 5651 components: - rot: -1.5707963267948966 rad pos: 42.5,18.5 parent: 1 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 5788 - type: SignalReceiver - uid: 7826 components: - pos: -21.5,23.5 parent: 1 type: Transform - - inputs: - Open: - - port: On - uid: 2551 - Close: - - port: Off - uid: 2551 - Toggle: [] - type: SignalReceiver - uid: 8615 components: - pos: -19.5,23.5 parent: 1 type: Transform - - inputs: - Open: - - port: On - uid: 2551 - Close: - - port: Off - uid: 2551 - Toggle: [] - type: SignalReceiver - uid: 9491 components: - rot: -1.5707963267948966 rad pos: 44.5,48.5 parent: 1 type: Transform - - inputs: - Open: - - port: On - uid: 14734 - Close: - - port: Off - uid: 14734 - Toggle: [] - type: SignalReceiver - uid: 9492 components: - rot: -1.5707963267948966 rad pos: 44.5,49.5 parent: 1 type: Transform - - inputs: - Open: - - port: On - uid: 14734 - Close: - - port: Off - uid: 14734 - Toggle: [] - type: SignalReceiver - proto: ShuttersRadiationOpen entities: - uid: 10283 @@ -92023,73 +91464,31 @@ entities: - pos: 42.5,-41.5 parent: 1 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 10613 - type: SignalReceiver - uid: 10605 components: - pos: 42.5,-37.5 parent: 1 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 10613 - type: SignalReceiver - uid: 10606 components: - pos: 41.5,-41.5 parent: 1 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 10613 - type: SignalReceiver - uid: 10607 components: - pos: 40.5,-41.5 parent: 1 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 10613 - type: SignalReceiver - uid: 10611 components: - pos: 41.5,-37.5 parent: 1 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 10613 - type: SignalReceiver - uid: 10612 components: - pos: 40.5,-37.5 parent: 1 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 10613 - type: SignalReceiver - proto: SignAi entities: - uid: 2678 @@ -92105,105 +91504,42 @@ entities: pos: -15.5,-18.5 parent: 1 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 1374 - type: SignalTransmitter - uid: 757 components: - rot: 3.141592653589793 rad pos: -11.5,12.5 parent: 1 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 827 - - port: Toggle - uid: 826 - type: SignalTransmitter - type: ItemCooldown - uid: 1854 components: - pos: 36.5,15.5 parent: 1 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 5683 - - port: Toggle - uid: 5684 - type: SignalTransmitter - uid: 4163 components: - rot: 1.5707963267948966 rad pos: 33.5,18.5 parent: 1 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 5683 - - port: Toggle - uid: 5684 - type: SignalTransmitter - uid: 4208 components: - rot: 3.141592653589793 rad pos: -13.5,32.5 parent: 1 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 4116 - - port: Toggle - uid: 4210 - - port: Toggle - uid: 990 - type: SignalTransmitter - uid: 5788 components: - rot: 3.141592653589793 rad pos: 44.5,15.5 parent: 1 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 2078 - - port: Toggle - uid: 2079 - - port: Toggle - uid: 2080 - - port: Toggle - uid: 5651 - - port: Toggle - uid: 2081 - type: SignalTransmitter - uid: 10613 components: - rot: 3.141592653589793 rad pos: 39.85038,-37.417164 parent: 1 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 10612 - - port: Toggle - uid: 10611 - - port: Toggle - uid: 10605 - - port: Toggle - uid: 10283 - - port: Toggle - uid: 10606 - - port: Toggle - uid: 10607 - type: SignalTransmitter - proto: SignalButtonBridge entities: - uid: 2003 @@ -92220,11 +91556,6 @@ entities: pos: 43.5,-8.5 parent: 1 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 4525 - type: SignalTransmitter - proto: SignalSwitch entities: - uid: 889 @@ -92232,40 +91563,12 @@ entities: - pos: 26.5,10.5 parent: 1 type: Transform - - outputs: - On: - - port: Open - uid: 1805 - - port: Open - uid: 1807 - - port: Open - uid: 1925 - Off: - - port: Close - uid: 1805 - - port: Close - uid: 1807 - - port: Close - uid: 1925 - type: SignalTransmitter - uid: 2551 components: - rot: -1.5707963267948966 rad pos: -18.5,21.5 parent: 1 type: Transform - - outputs: - On: - - port: Open - uid: 8615 - - port: Open - uid: 7826 - Off: - - port: Close - uid: 8615 - - port: Close - uid: 7826 - type: SignalTransmitter - type: ItemCooldown - uid: 4175 components: @@ -92273,80 +91576,12 @@ entities: pos: -16.31723,27.657547 parent: 1 type: Transform - - outputs: - On: - - port: Open - uid: 4127 - Off: - - port: Close - uid: 4127 - type: SignalTransmitter - uid: 15792 components: - rot: -1.5707963267948966 rad pos: -0.5,28.5 parent: 1 type: Transform - - outputs: - On: - - port: Open - uid: 578 - - port: Open - uid: 1837 - - port: Open - uid: 2524 - - port: Open - uid: 590 - - port: Open - uid: 1832 - - port: Open - uid: 2852 - - port: Open - uid: 2872 - - port: Open - uid: 2874 - - port: Open - uid: 2096 - - port: Open - uid: 2848 - - port: Open - uid: 2843 - - port: Open - uid: 2846 - - port: Open - uid: 2845 - - port: Open - uid: 2847 - Off: - - port: Close - uid: 578 - - port: Close - uid: 1837 - - port: Close - uid: 2524 - - port: Close - uid: 590 - - port: Close - uid: 1832 - - port: Close - uid: 2852 - - port: Close - uid: 2872 - - port: Close - uid: 2874 - - port: Close - uid: 2096 - - port: Close - uid: 2848 - - port: Close - uid: 2843 - - port: Close - uid: 2846 - - port: Close - uid: 2845 - - port: Close - uid: 2847 - type: SignalTransmitter - proto: SignalSwitchDirectional entities: - uid: 3543 @@ -92355,58 +91590,18 @@ entities: pos: 1.5,19.5 parent: 1 type: Transform - - outputs: - On: - - port: Open - uid: 3533 - - port: Open - uid: 2399 - - port: Open - uid: 2400 - Off: - - port: Close - uid: 3533 - - port: Close - uid: 2399 - - port: Close - uid: 2400 - type: SignalTransmitter - uid: 4074 components: - rot: -1.5707963267948966 rad pos: 38.5,-5.5 parent: 1 type: Transform - - outputs: - On: - - port: Open - uid: 1586 - - port: Open - uid: 4003 - Off: - - port: Close - uid: 1586 - - port: Close - uid: 4003 - type: SignalTransmitter - uid: 14734 components: - rot: -1.5707963267948966 rad pos: 44.5,50.5 parent: 1 type: Transform - - outputs: - On: - - port: Open - uid: 9491 - - port: Open - uid: 9492 - Off: - - port: Close - uid: 9491 - - port: Close - uid: 9492 - type: SignalTransmitter - proto: SignAnomaly entities: - uid: 16350 @@ -94093,18 +93288,18 @@ entities: - pos: -24.5,4.5 parent: 1 type: Transform -- proto: SpawnMobPossumMorty +- proto: SpawnMobMonkeyPunpun entities: - - uid: 1224 + - uid: 2401 components: - - pos: -9.5,-45.5 + - pos: 14.5,12.5 parent: 1 type: Transform -- proto: SpawnMobMonkeyPunpun +- proto: SpawnMobPossumMorty entities: - - uid: 2401 + - uid: 1224 components: - - pos: 14.5,12.5 + - pos: -9.5,-45.5 parent: 1 type: Transform - proto: SpawnMobSlothPaperwork @@ -100222,103 +99417,16 @@ entities: - pos: -14.174376,28.385574 parent: 1 type: Transform - - outputs: - Left: - - port: Forward - uid: 3344 - - port: Forward - uid: 3329 - Right: - - port: Reverse - uid: 3344 - - port: Reverse - uid: 3329 - Middle: - - port: Off - uid: 3344 - - port: Off - uid: 3329 - type: SignalTransmitter - uid: 14759 components: - pos: -19.416471,-47.211945 parent: 1 type: Transform - - outputs: - Left: - - port: Forward - uid: 14987 - - port: Forward - uid: 16080 - - port: Forward - uid: 14765 - - port: Forward - uid: 14758 - - port: Forward - uid: 16781 - - port: Forward - uid: 16782 - - port: Forward - uid: 16783 - - port: Reverse - uid: 9474 - Right: - - port: Reverse - uid: 14987 - - port: Reverse - uid: 16080 - - port: Reverse - uid: 14765 - - port: Reverse - uid: 14758 - - port: Reverse - uid: 16781 - - port: Reverse - uid: 16782 - - port: Reverse - uid: 16783 - - port: Forward - uid: 9474 - Middle: - - port: Off - uid: 14987 - - port: Off - uid: 16080 - - port: Off - uid: 14765 - - port: Off - uid: 14758 - - port: Off - uid: 16781 - - port: Off - uid: 16782 - - port: Off - uid: 16783 - - port: Off - uid: 9474 - type: SignalTransmitter - uid: 14967 components: - pos: -19.122366,-47.152176 parent: 1 type: Transform - - outputs: - Left: - - port: Open - uid: 2752 - - port: Close - uid: 2740 - Right: - - port: Close - uid: 2752 - - port: Open - uid: 2740 - Middle: - - port: Close - uid: 2752 - - port: Close - uid: 2740 - type: SignalTransmitter - proto: UniformJabroni entities: - uid: 14520 @@ -113577,101 +112685,115 @@ entities: pos: 29.5,-16.5 parent: 1 type: Transform -- proto: WindoorArmoryLocked +- proto: WindoorBarKitchenLocked entities: - - uid: 728 + - uid: 4642 components: - - pos: -22.5,9.5 + - rot: -1.5707963267948966 rad + pos: 7.5,17.5 parent: 1 type: Transform - - uid: 729 + - uid: 14670 components: - - pos: -20.5,9.5 + - rot: -1.5707963267948966 rad + pos: 12.5,37.5 parent: 1 type: Transform - - uid: 731 +- proto: WindoorChapelLocked + entities: + - uid: 5466 components: - - pos: -21.5,9.5 + - rot: 3.141592653589793 rad + pos: 33.5,-35.5 parent: 1 type: Transform -- proto: WindoorBarKitchenLocked +- proto: WindoorHydroponicsLocked entities: - - uid: 4642 + - uid: 2908 components: - - rot: -1.5707963267948966 rad - pos: 7.5,17.5 + - rot: 3.141592653589793 rad + pos: -4.5,30.5 parent: 1 type: Transform - - uid: 14670 + - uid: 2923 components: - - rot: -1.5707963267948966 rad - pos: 12.5,37.5 + - rot: 1.5707963267948966 rad + pos: -8.5,31.5 parent: 1 type: Transform -- proto: WindoorBrigLocked - entities: - - uid: 73 + - uid: 2924 components: - - rot: -1.5707963267948966 rad - pos: -1.5,5.5 + - rot: 1.5707963267948966 rad + pos: -8.5,32.5 parent: 1 type: Transform - - uid: 380 +- proto: WindoorJanitorLocked + entities: + - uid: 14760 components: - - rot: 1.5707963267948966 rad - pos: -1.5,5.5 + - pos: -18.5,-47.5 parent: 1 type: Transform -- proto: WindoorChapelLocked +- proto: WindoorSecureArmoryLocked entities: - - uid: 5466 + - uid: 728 components: - - rot: 3.141592653589793 rad - pos: 33.5,-35.5 + - pos: -22.5,9.5 parent: 1 type: Transform -- proto: WindoorCommandLocked + - uid: 729 + components: + - pos: -20.5,9.5 + parent: 1 + type: Transform + - uid: 731 + components: + - pos: -21.5,9.5 + parent: 1 + type: Transform +- proto: WindoorSecureBrigLocked entities: - - uid: 1643 + - uid: 73 components: - - rot: 1.5707963267948966 rad - pos: 29.5,-15.5 + - rot: -1.5707963267948966 rad + pos: -1.5,5.5 parent: 1 type: Transform - - uid: 4599 + - uid: 380 components: - rot: 1.5707963267948966 rad - pos: 29.5,-16.5 + pos: -1.5,5.5 parent: 1 type: Transform -- proto: WindoorHydroponicsLocked +- proto: WindoorSecureCargoLocked entities: - - uid: 2908 + - uid: 3208 components: - rot: 3.141592653589793 rad - pos: -4.5,30.5 + pos: -14.5,27.5 parent: 1 type: Transform - - uid: 2923 + - uid: 3234 components: - - rot: 1.5707963267948966 rad - pos: -8.5,31.5 + - rot: 3.141592653589793 rad + pos: -15.5,27.5 parent: 1 type: Transform - - uid: 2924 +- proto: WindoorSecureCommandLocked + entities: + - uid: 1643 components: - rot: 1.5707963267948966 rad - pos: -8.5,32.5 + pos: 29.5,-15.5 parent: 1 type: Transform -- proto: WindoorJanitorLocked - entities: - - uid: 14760 + - uid: 4599 components: - - pos: -18.5,-47.5 + - rot: 1.5707963267948966 rad + pos: 29.5,-16.5 parent: 1 type: Transform -- proto: WindoorMedicalLocked +- proto: WindoorSecureMedicalLocked entities: - uid: 1160 components: @@ -113703,7 +112825,7 @@ entities: pos: 4.5,-44.5 parent: 1 type: Transform -- proto: WindoorScienceLocked +- proto: WindoorSecureScienceLocked entities: - uid: 10449 components: @@ -113711,21 +112833,7 @@ entities: pos: 37.5,-28.5 parent: 1 type: Transform -- proto: WindoorSecureCargoLocked - entities: - - uid: 3208 - components: - - rot: 3.141592653589793 rad - pos: -14.5,27.5 - parent: 1 - type: Transform - - uid: 3234 - components: - - rot: 3.141592653589793 rad - pos: -15.5,27.5 - parent: 1 - type: Transform -- proto: WindoorSecurityLocked +- proto: WindoorSecureSecurityLocked entities: - uid: 4133 components: diff --git a/Resources/Prototypes/Entities/Clothing/Eyes/glasses.yml b/Resources/Prototypes/Entities/Clothing/Eyes/glasses.yml index ec8076b920..a0488ac8b6 100644 --- a/Resources/Prototypes/Entities/Clothing/Eyes/glasses.yml +++ b/Resources/Prototypes/Entities/Clothing/Eyes/glasses.yml @@ -66,7 +66,6 @@ shape: !type:PhysShapeAabb bounds: "-0.2,-0.2,0.2,0.2" - id: "slips" hard: false layer: - LowImpassable diff --git a/Resources/Prototypes/Entities/Mobs/Corpses/corpses.yml b/Resources/Prototypes/Entities/Mobs/Corpses/corpses.yml index 198885774a..d99d59fcfc 100644 --- a/Resources/Prototypes/Entities/Mobs/Corpses/corpses.yml +++ b/Resources/Prototypes/Entities/Mobs/Corpses/corpses.yml @@ -8,7 +8,7 @@ - ClownGear - MimeGear - JanitorGear - - ValetGear + - ServiceWorkerGear - MusicianGear - BotanistGear - ChefGear diff --git a/Resources/Prototypes/Entities/Mobs/Species/slime.yml b/Resources/Prototypes/Entities/Mobs/Species/slime.yml index 87d9498629..829ba7f008 100644 --- a/Resources/Prototypes/Entities/Mobs/Species/slime.yml +++ b/Resources/Prototypes/Entities/Mobs/Species/slime.yml @@ -23,7 +23,7 @@ sounds: Male: MaleSlime Female: FemaleSlime - Unsexed: UnisexSlime + Unsexed: MaleSlime - type: Damageable damageContainer: Biological damageModifierSet: Slime diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Food/Containers/box.yml b/Resources/Prototypes/Entities/Objects/Consumable/Food/Containers/box.yml index b0280f4bca..81d528c138 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Food/Containers/box.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Food/Containers/box.yml @@ -466,8 +466,9 @@ - type: Item sprite: Objects/Storage/happyhonk/clown.rsi heldPrefix: box + size: 40 - type: Storage - capacity: 30 + capacity: 40 - type: Tag tags: - Trash @@ -675,4 +676,4 @@ orGroup: GiftPool - id: GoldenBikeHorn prob: 0.1 - orGroup: GiftPool \ No newline at end of file + orGroup: GiftPool diff --git a/Resources/Prototypes/Magic/teleport_spells.yml b/Resources/Prototypes/Magic/teleport_spells.yml index 37644585c8..d07d78e104 100644 --- a/Resources/Prototypes/Magic/teleport_spells.yml +++ b/Resources/Prototypes/Magic/teleport_spells.yml @@ -5,7 +5,6 @@ useDelay: 25 range: 16 # default examine-range. # ^ should probably add better validation that the clicked location is on the users screen somewhere, - speech: action-speech-spell-blink itemIconStyle: BigAction checkCanAccess: false repeat: true @@ -13,3 +12,4 @@ sprite: Objects/Magic/magicactions.rsi state: blink serverEvent: !type:TeleportSpellEvent + speech: action-speech-spell-blink diff --git a/Resources/Prototypes/Nyanotrasen/Entities/Objects/Books/hyperlinks.yml b/Resources/Prototypes/Nyanotrasen/Entities/Objects/Books/hyperlinks.yml index f1565ba5f8..2f471f5990 100644 --- a/Resources/Prototypes/Nyanotrasen/Entities/Objects/Books/hyperlinks.yml +++ b/Resources/Prototypes/Nyanotrasen/Entities/Objects/Books/hyperlinks.yml @@ -78,7 +78,7 @@ - type: GuideHelp openOnActivation: true guides: - - Chemistry + - Chemist - type: entity parent: BaseHyperlinkBook diff --git a/Resources/Prototypes/Roles/Jobs/Security/security_officer.yml b/Resources/Prototypes/Roles/Jobs/Security/security_officer.yml index 2ab4ddaf89..57efcc7231 100644 --- a/Resources/Prototypes/Roles/Jobs/Security/security_officer.yml +++ b/Resources/Prototypes/Roles/Jobs/Security/security_officer.yml @@ -27,7 +27,7 @@ back: ClothingBackpackSecurityFilled shoes: ClothingShoesBootsCombatFilled eyes: ClothingEyesGlassesSecurity - head: ClothingHeadHelmetHelmetBasic + head: ClothingHeadHelmetBasic # outerClothing: ClothingOuterArmorBasic id: SecurityPDA ears: ClothingHeadsetSecurity diff --git a/Resources/Prototypes/Roles/Jobs/Wildcards/boxer.yml b/Resources/Prototypes/Roles/Jobs/Wildcards/boxer.yml index 0b4effaaeb..010272e03d 100644 --- a/Resources/Prototypes/Roles/Jobs/Wildcards/boxer.yml +++ b/Resources/Prototypes/Roles/Jobs/Wildcards/boxer.yml @@ -34,6 +34,6 @@ duffelbag: ClothingBackpackDuffelFilled underpants: ClothingUnderboxers_assblastusa underpantsskirt: ClothingUnderboxers_assblastusa - undershirt: empty + undershirt: Nothing undershirtskirt: ClothingUnderbra_binder - undersocks: empty + undersocks: Nothing diff --git a/Resources/Prototypes/SimpleStation14/Catalog/Cargo/cargo_food.yml b/Resources/Prototypes/SimpleStation14/Catalog/Cargo/cargo_food.yml index 84caa87d63..5db4a48a49 100644 --- a/Resources/Prototypes/SimpleStation14/Catalog/Cargo/cargo_food.yml +++ b/Resources/Prototypes/SimpleStation14/Catalog/Cargo/cargo_food.yml @@ -18,6 +18,6 @@ sprite: Objects/Specific/Hydroponics/cabbage.rsi state: produce product: CrateFoodCabbages - cost: 425 + cost: 480 category: Food group: market diff --git a/Resources/Prototypes/SimpleStation14/Catalog/Cargo/cargo_science.yml b/Resources/Prototypes/SimpleStation14/Catalog/Cargo/cargo_science.yml index e1c07063f1..4d8bd7ab84 100644 --- a/Resources/Prototypes/SimpleStation14/Catalog/Cargo/cargo_science.yml +++ b/Resources/Prototypes/SimpleStation14/Catalog/Cargo/cargo_science.yml @@ -6,7 +6,7 @@ sprite: Nyanotrasen/Structures/Machines/glimmer_machines.rsi state: base product: CrateScienceMaterials - cost: 5000 + cost: 9500 category: Science group: market diff --git a/Resources/Prototypes/SimpleStation14/Entities/Mobs/Player/shadowkin.yml b/Resources/Prototypes/SimpleStation14/Entities/Mobs/Player/shadowkin.yml index 2d4bcd39d8..e560d9eed8 100644 --- a/Resources/Prototypes/SimpleStation14/Entities/Mobs/Player/shadowkin.yml +++ b/Resources/Prototypes/SimpleStation14/Entities/Mobs/Player/shadowkin.yml @@ -96,7 +96,7 @@ sounds: Male: MaleSlime Female: FemaleSlime - Unsexed: UnisexSlime + Unsexed: MaleSlime - type: CombatMode canDisarm: true - type: MindContainer diff --git a/Resources/Prototypes/SimpleStation14/Entities/Mobs/Player/silicon_base.yml b/Resources/Prototypes/SimpleStation14/Entities/Mobs/Player/silicon_base.yml index e5850a630f..7103dc5bf0 100644 --- a/Resources/Prototypes/SimpleStation14/Entities/Mobs/Player/silicon_base.yml +++ b/Resources/Prototypes/SimpleStation14/Entities/Mobs/Player/silicon_base.yml @@ -267,7 +267,6 @@ canDisarm: true - type: Climbing - type: Cuffable - state: icon - type: AnimationPlayer - type: Buckle - type: CreamPied @@ -341,8 +340,8 @@ Brute: sprite: Mobs/Effects/brute_damage.rsi color: "#DD8822" - Burn: - sprite: Mobs/Effects/burn_damage.rsi + # Burn: + # sprite: Mobs/Effects/burn_damage.rsi # Organs - type: IdExaminable - type: HealthExaminable diff --git a/Resources/Prototypes/SimpleStation14/Entities/Objects/Devices/Circuitboards/siliconchargers.yml b/Resources/Prototypes/SimpleStation14/Entities/Objects/Devices/Circuitboards/siliconchargers.yml index 9acf92dcec..5ee5c06cae 100644 --- a/Resources/Prototypes/SimpleStation14/Entities/Objects/Devices/Circuitboards/siliconchargers.yml +++ b/Resources/Prototypes/SimpleStation14/Entities/Objects/Devices/Circuitboards/siliconchargers.yml @@ -28,7 +28,7 @@ prototype: SiliconChargerChargePad requirements: Capacitor: 3 - Laser: 5 + Manipulator: 5 materialRequirements: CableHV: 2 CableMV: 2 diff --git a/Resources/Prototypes/SimpleStation14/Entities/Objects/Fun/nothing.yml b/Resources/Prototypes/SimpleStation14/Entities/Objects/Fun/nothing.yml new file mode 100644 index 0000000000..f23a35f8e1 --- /dev/null +++ b/Resources/Prototypes/SimpleStation14/Entities/Objects/Fun/nothing.yml @@ -0,0 +1,4 @@ +- type: entity + parent: Error + id: Nothing + name: nothing diff --git a/Resources/Prototypes/SimpleStation14/Entities/Objects/Fun/toys.yml b/Resources/Prototypes/SimpleStation14/Entities/Objects/Fun/toys.yml index 2a673a91e3..adcb9e7c0f 100644 --- a/Resources/Prototypes/SimpleStation14/Entities/Objects/Fun/toys.yml +++ b/Resources/Prototypes/SimpleStation14/Entities/Objects/Fun/toys.yml @@ -37,6 +37,7 @@ components: - type: ShadowkinDarkSwapped invisible: false + pacify: false darken: true range: 4 - type: Sprite diff --git a/Resources/Prototypes/SimpleStation14/Entities/Objects/Specific/antagonist.yml b/Resources/Prototypes/SimpleStation14/Entities/Objects/Specific/antagonist.yml index db7532d8f0..e3cf639279 100644 --- a/Resources/Prototypes/SimpleStation14/Entities/Objects/Specific/antagonist.yml +++ b/Resources/Prototypes/SimpleStation14/Entities/Objects/Specific/antagonist.yml @@ -6,6 +6,8 @@ components: - type: Stack count: 1 + - type: Item + size: 1 - type: entity parent: MaterialBluespace @@ -22,6 +24,8 @@ components: - type: Stack count: 10 + - type: Item + size: 10 - type: entity parent: MaterialBluespace @@ -30,6 +34,8 @@ components: - type: Stack count: 25 + - type: Item + size: 25 - type: entity parent: MaterialBluespace @@ -38,6 +44,8 @@ components: - type: Stack count: 50 + - type: Item + size: 50 # Uplinks - type: entity diff --git a/Resources/Prototypes/SimpleStation14/Entities/Structures/Machines/silicon_chargers.yml b/Resources/Prototypes/SimpleStation14/Entities/Structures/Machines/silicon_chargers.yml index 09ba684655..ad9fba72b8 100644 --- a/Resources/Prototypes/SimpleStation14/Entities/Structures/Machines/silicon_chargers.yml +++ b/Resources/Prototypes/SimpleStation14/Entities/Structures/Machines/silicon_chargers.yml @@ -33,10 +33,11 @@ state: icon - type: Physics bodyType: Static + - type: Fixtures fixtures: - - shape: - - !type:PhysShapeAabb - bounds: "-0.45,-0.5,0.45,0.5" + fix1: + shape: !type:PhysShapeAabb + bounds: "-0.45,-0.5,0.45,0.5" density: 190 mask: - MachineMask @@ -54,10 +55,6 @@ openSound: /Audio/Effects/gen_hit.ogg closeSound: /Audio/Effects/gen_hit.ogg - type: Appearance - visuals: - - type: StorageVisualizer - state_open: open - state_closed: closed - type: ContainerContainer containers: machine_board: !type:Container @@ -119,22 +116,21 @@ - type: Appearance - type: Fixtures fixtures: - fix1: - shape: !type:PhysShapeAabb - bounds: "-0.35,-0.35,0.35,0.35" - id: "slips" - hard: false - layer: - - SlipLayer - fix2: - shape: !type:PhysShapeAabb - bounds: "-0.35,-0.35,0.35,0.35" - density: 10 - mask: - - MachineMask + fix1: + shape: !type:PhysShapeAabb + bounds: "-0.35,-0.35,0.35,0.35" + hard: false + layer: + - SlipLayer + fix2: + shape: !type:PhysShapeAabb + bounds: "-0.35,-0.35,0.35,0.35" + density: 10 + mask: + - MachineMask - type: StepTrigger - type: SiliconCharger - chargeMylti: 150 + chargeMulti: 150 - type: ContainerContainer containers: machine_board: !type:Container @@ -146,7 +142,7 @@ - machine_board - machine_parts - type: Machine - board: IndustrialChargerCircuitboard + board: ChargingPadCircuitboard - type: Destructible thresholds: - trigger: diff --git a/Resources/Prototypes/SimpleStation14/Entities/Structures/Medical/sleepers.yml b/Resources/Prototypes/SimpleStation14/Entities/Structures/Medical/sleepers.yml index c0599e5fa7..beaef4d99c 100644 --- a/Resources/Prototypes/SimpleStation14/Entities/Structures/Medical/sleepers.yml +++ b/Resources/Prototypes/SimpleStation14/Entities/Structures/Medical/sleepers.yml @@ -23,20 +23,16 @@ - type: EntityStorage capacity: 1 isCollidableWhenOpen: false - # closeSound: - # path: - # openSound: - # path: - type: Appearance - visuals: - - type: StorageVisualizer - state: base - state_open: open - state_closed: door + - type: EntityStorageVisuals + stateBaseClosed: base + stateDoorOpen: open + stateDoorClosed: door - type: Sprite sprite: SimpleStation14/Structures/Medical/sleepers/standardpod.rsi layers: - state: base + map: ["enum.StorageVisualLayers.Base"] - state: open map: ["enum.StorageVisualLayers.Door"] - type: Damageable @@ -65,20 +61,8 @@ name: Sleeper Pod description: An old design of sleeper pod, probably not the safest to use. components: - - type: Clickable - - type: InteractionOutline - - type: Appearance - visuals: - - type: StorageVisualizer - state: base - state_open: open - state_closed: door - type: Sprite sprite: SimpleStation14/Structures/Medical/sleepers/oldpod.rsi - layers: - - state: base - - state: open - map: ["enum.StorageVisualLayers.Door"] - type: entity id: SleeperParty @@ -86,20 +70,8 @@ name: Party Sleeper description: A party sleeper! Seems pretty fun. components: - - type: Clickable - - type: InteractionOutline - - type: Appearance - visuals: - - type: StorageVisualizer - state: base - state_open: open - state_closed: door - type: Sprite sprite: SimpleStation14/Structures/Medical/sleepers/partypod.rsi - layers: - - state: base - - state: open - map: ["enum.StorageVisualLayers.Door"] - type: entity id: Sleeper @@ -107,20 +79,8 @@ name: Sleeper description: A basic model of medical sleeper, used to inject chemicals safely and quickly into a person without the need of hyposprays. components: - - type: Clickable - - type: InteractionOutline - - type: Appearance - visuals: - - type: StorageVisualizer - state: base - state_open: open - state_closed: door - type: Sprite sprite: SimpleStation14/Structures/Medical/sleepers/standardpod.rsi - layers: - - state: base - - state: open - map: ["enum.StorageVisualLayers.Door"] - type: entity id: SleeperClockwork @@ -128,20 +88,8 @@ name: Clockwork Sleeper description: A sleeper, seemingly made out of.. gears? How does this work even? components: - - type: Clickable - - type: InteractionOutline - - type: Appearance - visuals: - - type: StorageVisualizer - state: base - state_open: open - state_closed: door - type: Sprite sprite: SimpleStation14/Structures/Medical/sleepers/clockworkpod.rsi - layers: - - state: base - - state: open - map: ["enum.StorageVisualLayers.Door"] - type: entity id: SleeperSyndicate @@ -149,17 +97,5 @@ name: Syndicate Sleeper description: A sleeper made for the Syndicate, seems to be just as functional as the medical one. components: - - type: Clickable - - type: InteractionOutline - - type: Appearance - visuals: - - type: StorageVisualizer - state: base - state_open: open - state_closed: door - type: Sprite sprite: SimpleStation14/Structures/Medical/sleepers/syndiepod.rsi - layers: - - state: base - - state: open - map: ["enum.StorageVisualLayers.Door"] diff --git a/Resources/Prototypes/SimpleStation14/Loadouts/traits.yml b/Resources/Prototypes/SimpleStation14/Loadouts/traits.yml index b648714f24..8086371933 100644 --- a/Resources/Prototypes/SimpleStation14/Loadouts/traits.yml +++ b/Resources/Prototypes/SimpleStation14/Loadouts/traits.yml @@ -6,7 +6,7 @@ description: "For 'yer peepers" category: Traits cost: 0 - whitelist: + entityWhitelist: components: - Nearsighted item: ClothingEyesGlasses @@ -20,7 +20,7 @@ jobWhitelist: - MedicalDoctor - ChiefMedicalOfficer - whitelist: + entityWhitelist: components: - Nearsighted item: ClothingEyesHudMedicalPrescription @@ -36,7 +36,7 @@ - SecurityCadet - SecurityOfficer - Warden - whitelist: + entityWhitelist: components: - Nearsighted item: ClothingEyesGlassesSecurityPrescription diff --git a/Resources/Prototypes/SimpleStation14/Magic/magic_spells.yml b/Resources/Prototypes/SimpleStation14/Magic/magic_spells.yml index e62bc7452c..a663807ab0 100644 --- a/Resources/Prototypes/SimpleStation14/Magic/magic_spells.yml +++ b/Resources/Prototypes/SimpleStation14/Magic/magic_spells.yml @@ -4,7 +4,6 @@ description: action-description-spell-healing useDelay: 30 range: 64 - speech: action-speech-spell-healing itemIconStyle: BigAction whitelist: components: @@ -23,3 +22,4 @@ Burn: -999 Airloss: -999 Toxin: -999 + speech: action-speech-spell-healing diff --git a/Resources/Prototypes/SimpleStation14/Magic/magic_spells_funny.yml b/Resources/Prototypes/SimpleStation14/Magic/magic_spells_funny.yml index 6534f02f8d..9995835936 100644 --- a/Resources/Prototypes/SimpleStation14/Magic/magic_spells_funny.yml +++ b/Resources/Prototypes/SimpleStation14/Magic/magic_spells_funny.yml @@ -3,7 +3,6 @@ name: action-name-spell-forcewall description: action-description-spell-forcewall useDelay: 0 - speech: action-speech-spell-funny-forcewall itemIconStyle: BigAction sound: !type:SoundPathSpecifier path: /Audio/Magic/forcewall.ogg @@ -13,18 +12,19 @@ serverEvent: !type:InstantSpawnSpellEvent prototype: WallForce posData: !type:TargetInFront + speech: action-speech-spell-funny-forcewall - type: instantAction id: FunnyKnock name: action-name-spell-knock description: action-description-spell-knock useDelay: 0 - speech: action-speech-spell-funny-knock itemIconStyle: BigAction icon: sprite: Objects/Magic/magicactions.rsi state: knock serverEvent: !type:KnockSpellEvent + speech: action-speech-spell-funny-knock - type: worldTargetAction id: FunnyFireball @@ -32,7 +32,6 @@ description: action-description-spell-fireball useDelay: 0 range: 64 - speech: action-speech-spell-funny-fireball itemIconStyle: BigAction checkCanAccess: false sound: !type:SoundPathSpecifier @@ -43,6 +42,7 @@ serverEvent: !type:ProjectileSpellEvent prototype: ProjectileFireball posData: !type:TargetCasterPos + speech: action-speech-spell-funny-fireball - type: instantAction id: FunnyFlashRune @@ -62,7 +62,6 @@ description: action-description-spell-smite useDelay: 0 range: 64 - speech: action-speech-spell-funny-smite itemIconStyle: BigAction whitelist: components: @@ -75,6 +74,7 @@ sprite: Objects/Magic/magicactions.rsi state: gib serverEvent: !type:SmiteSpellEvent + speech: action-speech-spell-funny-smite - type: worldTargetAction id: FunnySpawnMagicarpSpell @@ -82,7 +82,6 @@ description: action-description-spell-summon-magicarp useDelay: 0 range: 64 - speech: action-speech-spell-funny-summon-magicarp itemIconStyle: BigAction icon: sprite: Objects/Magic/magicactions.rsi @@ -92,6 +91,7 @@ - id: MobCarpMagic amount: 3 offsetVector2: 0, 1 + speech: action-speech-spell-funny-summon-magicarp - type: worldTargetAction id: FunnyBlink @@ -99,7 +99,6 @@ description: action-description-spell-blink useDelay: 0 range: 64 - speech: action-speech-spell-blink itemIconStyle: BigAction checkCanAccess: false repeat: true @@ -107,6 +106,7 @@ sprite: Objects/Magic/magicactions.rsi state: blink serverEvent: !type:TeleportSpellEvent + speech: action-speech-spell-blink - type: entityTargetAction id: FunnyHealingSpell @@ -114,7 +114,6 @@ description: action-description-spell-healing useDelay: 0 range: 64 - speech: action-speech-spell-funny-healing itemIconStyle: BigAction whitelist: components: @@ -133,6 +132,7 @@ Burn: -999 Airloss: -999 Toxin: -999 + speech: action-speech-spell-funny-healing # Super funny @@ -141,7 +141,6 @@ name: action-name-spell-knock description: action-description-spell-knock useDelay: 0 - speech: action-speech-spell-super-funny-knock itemIconStyle: BigAction sound: !type:SoundPathSpecifier path: /Audio/Magic/staff_chaos.ogg @@ -150,3 +149,4 @@ state: knock serverEvent: !type:KnockSpellEvent range: 128 + speech: action-speech-spell-super-funny-knock diff --git a/Resources/Prototypes/SimpleStation14/Roles/Jobs/Fun/changeling_startinggear.yml b/Resources/Prototypes/SimpleStation14/Roles/Jobs/Fun/changeling_startinggear.yml index bfda73d77e..486c480baf 100644 --- a/Resources/Prototypes/SimpleStation14/Roles/Jobs/Fun/changeling_startinggear.yml +++ b/Resources/Prototypes/SimpleStation14/Roles/Jobs/Fun/changeling_startinggear.yml @@ -7,4 +7,4 @@ outerClothing: ClothingOuterArmorChangeling shoes: ClothingShoesChameleonNoSlips head: ClothingHeadHelmetLing - mask: ClothingMaskGasVoiceMasker + mask: ClothingMaskGasChameleon diff --git a/Resources/Prototypes/SimpleStation14/Roles/Jobs/Fun/oldstation_startinggear.yml b/Resources/Prototypes/SimpleStation14/Roles/Jobs/Fun/oldstation_startinggear.yml index 1bba43cc20..720d36a6af 100644 --- a/Resources/Prototypes/SimpleStation14/Roles/Jobs/Fun/oldstation_startinggear.yml +++ b/Resources/Prototypes/SimpleStation14/Roles/Jobs/Fun/oldstation_startinggear.yml @@ -32,8 +32,8 @@ back: ClothingBackpackSecurityFilled shoes: ClothingShoesBootsJack eyes: ClothingEyesGlassesSecurity - head: ClothingHeadHelmetHelmetOld - outerClothing: ClothingOuterVestKevlar + head: ClothingHeadHelmetBasic + outerClothing: ClothingOuterArmorBasic id: SecurityPDA belt: ClothingBeltSecurityFilled innerclothingskirt: ClothingUniformJumpskirtSec diff --git a/Resources/Prototypes/SoundCollections/announcements.yml b/Resources/Prototypes/SoundCollections/announcements.yml index 2072eff96d..3ec72c1d88 100644 --- a/Resources/Prototypes/SoundCollections/announcements.yml +++ b/Resources/Prototypes/SoundCollections/announcements.yml @@ -3,9 +3,8 @@ files: - /Audio/Announcements/RoundEnd/apc_destroyed.ogg - /Audio/Announcements/RoundEnd/bangin_donk.ogg -# - /Audio/Announcements/RoundEnd/withoutfurtherinterruption.ogg -# - /Audio/Announcements/RoundEnd/dotsy.ogg + - /Audio/Announcements/RoundEnd/easy_route.ogg + - /Audio/Announcements/RoundEnd/good_business.ogg + - /Audio/Announcements/RoundEnd/skelton.ogg - /Audio/Announcements/RoundEnd/wasthisstorybasedno.ogg - /Audio/Announcements/RoundEnd/wasthisstorybasedyes.ogg -# - /Audio/Announcements/RoundEnd/onlineplay.ogg -# - /Audio/Announcements/RoundEnd/worCant.ogg diff --git a/Resources/ServerInfo/SimpleStation14/Guidebook/AlertProcedure/AlertProcedure.xml b/Resources/ServerInfo/SimpleStation14/Guidebook/AlertProcedure/AlertProcedure.xml index 8def25d88b..8c12f2bb11 100644 --- a/Resources/ServerInfo/SimpleStation14/Guidebook/AlertProcedure/AlertProcedure.xml +++ b/Resources/ServerInfo/SimpleStation14/Guidebook/AlertProcedure/AlertProcedure.xml @@ -4,12 +4,4 @@ During your time on the station, you will definitely encounter an "Alert Level" being changed. There are various possible alert levels, including some only activated by Central Command. Each alert level has different "Operating Procedures" that you must follow, shown in detail in the subcategories of this page. - - -Alert levels are set either via a communications console, or the AI internal computer. - - - - - diff --git a/Resources/Textures/Clothing/Head/Hats/captain.rsi/meta.json b/Resources/Textures/Clothing/Head/Hats/captain.rsi/meta.json index a8eb4e7a9c..200fb64161 100644 --- a/Resources/Textures/Clothing/Head/Hats/captain.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Hats/captain.rsi/meta.json @@ -7,6 +7,10 @@ "y": 32 }, "states": [ + { + "name": "equipped-HELMET-hamster", + "directions": 4 + }, { "name": "equipped-HELMET", "directions": 4 diff --git a/Resources/Textures/Clothing/Head/Helmets/syndicate.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/Helmets/syndicate.rsi/equipped-HELMET.png deleted file mode 100644 index bdd08ea7bd..0000000000 Binary files a/Resources/Textures/Clothing/Head/Helmets/syndicate.rsi/equipped-HELMET.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Head/Helmets/syndicate.rsi/headlight-equipped-HELMET.png b/Resources/Textures/Clothing/Head/Helmets/syndicate.rsi/headlight-equipped-HELMET.png deleted file mode 100644 index fdf482a462..0000000000 Binary files a/Resources/Textures/Clothing/Head/Helmets/syndicate.rsi/headlight-equipped-HELMET.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Head/Helmets/syndicate.rsi/headlight-inhand-left.png b/Resources/Textures/Clothing/Head/Helmets/syndicate.rsi/headlight-inhand-left.png deleted file mode 100644 index 2ece0501f5..0000000000 Binary files a/Resources/Textures/Clothing/Head/Helmets/syndicate.rsi/headlight-inhand-left.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Head/Helmets/syndicate.rsi/headlight-inhand-right.png b/Resources/Textures/Clothing/Head/Helmets/syndicate.rsi/headlight-inhand-right.png deleted file mode 100644 index 9d6b725509..0000000000 Binary files a/Resources/Textures/Clothing/Head/Helmets/syndicate.rsi/headlight-inhand-right.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Head/Helmets/syndicate.rsi/headlight.png b/Resources/Textures/Clothing/Head/Helmets/syndicate.rsi/headlight.png deleted file mode 100644 index 1885c7ba5e..0000000000 Binary files a/Resources/Textures/Clothing/Head/Helmets/syndicate.rsi/headlight.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Head/Helmets/syndicate.rsi/icon.png b/Resources/Textures/Clothing/Head/Helmets/syndicate.rsi/icon.png deleted file mode 100644 index a5db30743c..0000000000 Binary files a/Resources/Textures/Clothing/Head/Helmets/syndicate.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Head/Helmets/syndicate.rsi/inhand-left.png b/Resources/Textures/Clothing/Head/Helmets/syndicate.rsi/inhand-left.png deleted file mode 100644 index adc9d53c22..0000000000 Binary files a/Resources/Textures/Clothing/Head/Helmets/syndicate.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Head/Helmets/syndicate.rsi/inhand-right.png b/Resources/Textures/Clothing/Head/Helmets/syndicate.rsi/inhand-right.png deleted file mode 100644 index 48eca11677..0000000000 Binary files a/Resources/Textures/Clothing/Head/Helmets/syndicate.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Head/Helmets/syndicate.rsi/visorlit-equipped-HELMET.png b/Resources/Textures/Clothing/Head/Helmets/syndicate.rsi/visorlit-equipped-HELMET.png deleted file mode 100644 index bdd08ea7bd..0000000000 Binary files a/Resources/Textures/Clothing/Head/Helmets/syndicate.rsi/visorlit-equipped-HELMET.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Head/Helmets/syndicate.rsi/visorlit-inhand-left.png b/Resources/Textures/Clothing/Head/Helmets/syndicate.rsi/visorlit-inhand-left.png deleted file mode 100644 index adc9d53c22..0000000000 Binary files a/Resources/Textures/Clothing/Head/Helmets/syndicate.rsi/visorlit-inhand-left.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Head/Helmets/syndicate.rsi/visorlit-inhand-right.png b/Resources/Textures/Clothing/Head/Helmets/syndicate.rsi/visorlit-inhand-right.png deleted file mode 100644 index 48eca11677..0000000000 Binary files a/Resources/Textures/Clothing/Head/Helmets/syndicate.rsi/visorlit-inhand-right.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Head/Helmets/syndicate.rsi/visorlit.png b/Resources/Textures/Clothing/Head/Helmets/syndicate.rsi/visorlit.png deleted file mode 100644 index a5db30743c..0000000000 Binary files a/Resources/Textures/Clothing/Head/Helmets/syndicate.rsi/visorlit.png and /dev/null differ diff --git a/Resources/Textures/Clothing/OuterClothing/Suits/syndicate.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/Clothing/OuterClothing/Suits/syndicate.rsi/equipped-OUTERCLOTHING.png deleted file mode 100644 index 47c35d443e..0000000000 Binary files a/Resources/Textures/Clothing/OuterClothing/Suits/syndicate.rsi/equipped-OUTERCLOTHING.png and /dev/null differ diff --git a/Resources/Textures/Clothing/OuterClothing/Suits/syndicate.rsi/icon.png b/Resources/Textures/Clothing/OuterClothing/Suits/syndicate.rsi/icon.png deleted file mode 100644 index fca3fc8f25..0000000000 Binary files a/Resources/Textures/Clothing/OuterClothing/Suits/syndicate.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/Clothing/OuterClothing/Suits/syndicate.rsi/inhand-left.png b/Resources/Textures/Clothing/OuterClothing/Suits/syndicate.rsi/inhand-left.png deleted file mode 100644 index 54e010a192..0000000000 Binary files a/Resources/Textures/Clothing/OuterClothing/Suits/syndicate.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/Clothing/OuterClothing/Suits/syndicate.rsi/inhand-right.png b/Resources/Textures/Clothing/OuterClothing/Suits/syndicate.rsi/inhand-right.png deleted file mode 100644 index 9edc835ce3..0000000000 Binary files a/Resources/Textures/Clothing/OuterClothing/Suits/syndicate.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/Clothing/OuterClothing/Vests/kevlar.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/Clothing/OuterClothing/Vests/kevlar.rsi/equipped-OUTERCLOTHING.png deleted file mode 100644 index b0f4f04f69..0000000000 Binary files a/Resources/Textures/Clothing/OuterClothing/Vests/kevlar.rsi/equipped-OUTERCLOTHING.png and /dev/null differ diff --git a/Resources/Textures/Clothing/OuterClothing/Vests/kevlar.rsi/icon.png b/Resources/Textures/Clothing/OuterClothing/Vests/kevlar.rsi/icon.png deleted file mode 100644 index 7e29b8a8f9..0000000000 Binary files a/Resources/Textures/Clothing/OuterClothing/Vests/kevlar.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/Clothing/OuterClothing/Vests/kevlar.rsi/inhand-left.png b/Resources/Textures/Clothing/OuterClothing/Vests/kevlar.rsi/inhand-left.png deleted file mode 100644 index 1a8ee934b8..0000000000 Binary files a/Resources/Textures/Clothing/OuterClothing/Vests/kevlar.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/Clothing/OuterClothing/Vests/kevlar.rsi/inhand-right.png b/Resources/Textures/Clothing/OuterClothing/Vests/kevlar.rsi/inhand-right.png deleted file mode 100644 index a99ec13a5e..0000000000 Binary files a/Resources/Textures/Clothing/OuterClothing/Vests/kevlar.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/captain.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/captain.rsi/meta.json index 2714fafccb..8a520c40a5 100644 --- a/Resources/Textures/Clothing/Uniforms/Jumpsuit/captain.rsi/meta.json +++ b/Resources/Textures/Clothing/Uniforms/Jumpsuit/captain.rsi/meta.json @@ -10,6 +10,10 @@ { "name": "icon" }, + { + "name": "equipped-INNERCLOTHING-monkey", + "directions": 4 + }, { "name": "equipped-INNERCLOTHING", "directions": 4 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/cluwne.rsi/inhand-left.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/cluwne.rsi/inhand-left.png deleted file mode 100644 index 120eada100..0000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/cluwne.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/cluwne.rsi/inhand-right.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/cluwne.rsi/inhand-right.png deleted file mode 100644 index c1c3fa151b..0000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/cluwne.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/Corvax/Structures/Machines/VendingMachines/Ammo.rsi/meta.json b/Resources/Textures/Corvax/Structures/Machines/VendingMachines/Ammo.rsi/meta.json deleted file mode 100644 index e57da23b16..0000000000 --- a/Resources/Textures/Corvax/Structures/Machines/VendingMachines/Ammo.rsi/meta.json +++ /dev/null @@ -1,39 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at https://github.com/tgstation/tgstation/commit/21d5a65346cfdaa61e86410cf9323e4e03a362d9 and resprited by SonicDC", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "broken" - }, - { - "name": "normal-unshaded", - "delays": [ - [ - 0.5, - 0.2, - 0.1, - 0.2, - 0.5, - 0.2, - 0.1, - 0.2, - 0.5, - 0.2, - 0.1, - 0.2 - ] - ] - }, - { - "name": "off" - }, - { - "name": "panel" - } - ] -} diff --git a/Resources/Textures/Corvax/Structures/Machines/VendingMachines/Ammo.rsi/broken.png b/Resources/Textures/Corvax/Structures/Machines/VendingMachines/ammo.rsi/broken.png similarity index 100% rename from Resources/Textures/Corvax/Structures/Machines/VendingMachines/Ammo.rsi/broken.png rename to Resources/Textures/Corvax/Structures/Machines/VendingMachines/ammo.rsi/broken.png diff --git a/Resources/Textures/Corvax/Structures/Machines/VendingMachines/ammo.rsi/meta.json b/Resources/Textures/Corvax/Structures/Machines/VendingMachines/ammo.rsi/meta.json new file mode 100644 index 0000000000..6143af8c1e --- /dev/null +++ b/Resources/Textures/Corvax/Structures/Machines/VendingMachines/ammo.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at https://github.com/tgstation/tgstation/commit/21d5a65346cfdaa61e86410cf9323e4e03a362d9 and resprited by SonicDC", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "broken" + }, + { + "name": "normal-unshaded", + "delays": [ + [0.5, 0.2, 0.1, 0.2, 0.5, 0.2, 0.1, 0.2, 0.5, 0.2, 0.1, 0.2] + ] + }, + { + "name": "off" + }, + { + "name": "panel" + } + ] +} diff --git a/Resources/Textures/Corvax/Structures/Machines/VendingMachines/Ammo.rsi/normal-unshaded.png b/Resources/Textures/Corvax/Structures/Machines/VendingMachines/ammo.rsi/normal-unshaded.png similarity index 100% rename from Resources/Textures/Corvax/Structures/Machines/VendingMachines/Ammo.rsi/normal-unshaded.png rename to Resources/Textures/Corvax/Structures/Machines/VendingMachines/ammo.rsi/normal-unshaded.png diff --git a/Resources/Textures/Corvax/Structures/Machines/VendingMachines/Ammo.rsi/off.png b/Resources/Textures/Corvax/Structures/Machines/VendingMachines/ammo.rsi/off.png similarity index 100% rename from Resources/Textures/Corvax/Structures/Machines/VendingMachines/Ammo.rsi/off.png rename to Resources/Textures/Corvax/Structures/Machines/VendingMachines/ammo.rsi/off.png diff --git a/Resources/Textures/Corvax/Structures/Machines/VendingMachines/Ammo.rsi/panel.png b/Resources/Textures/Corvax/Structures/Machines/VendingMachines/ammo.rsi/panel.png similarity index 100% rename from Resources/Textures/Corvax/Structures/Machines/VendingMachines/Ammo.rsi/panel.png rename to Resources/Textures/Corvax/Structures/Machines/VendingMachines/ammo.rsi/panel.png diff --git a/Resources/Textures/Objects/Tools/jaws_of_life.rsi/meta.json b/Resources/Textures/Objects/Tools/jaws_of_life.rsi/meta.json index 56acaa528a..1122126cac 100644 --- a/Resources/Textures/Objects/Tools/jaws_of_life.rsi/meta.json +++ b/Resources/Textures/Objects/Tools/jaws_of_life.rsi/meta.json @@ -30,6 +30,14 @@ { "name": "equipped-BELT", "directions": 4 + }, + { + "name": "syn_inhand-left", + "directions": 4 + }, + { + "name": "syn_inhand-right", + "directions": 4 } ] } diff --git a/Scripts/bat/runTestsIntegration.bat b/Scripts/bat/runTestsIntegration.bat new file mode 100644 index 0000000000..c771b862ec --- /dev/null +++ b/Scripts/bat/runTestsIntegration.bat @@ -0,0 +1,9 @@ +cd ..\..\ +dotnet restore +dotnet build --configuration DebugOpt --no-restore /p:WarningsAsErrors=nullable /m +mkdir Scripts\logs +del Scripts\logs\Content.Tests.log +dotnet test --no-build --configuration DebugOpt Content.Tests/Content.Tests.csproj -- NUnit.ConsoleOut=0 > Scripts\logs\Content.Tests.log +del Scripts\logs\Content.IntegrationTests.log +dotnet test --no-build --configuration DebugOpt Content.IntegrationTests/Content.IntegrationTests.csproj -- NUnit.ConsoleOut=0 NUnit.MapWarningTo=Failed > Scripts\logs\Content.IntegrationTests.log +pause diff --git a/Scripts/bat/runTestsYAML.bat b/Scripts/bat/runTestsYAML.bat new file mode 100644 index 0000000000..ff89ca4ab5 --- /dev/null +++ b/Scripts/bat/runTestsYAML.bat @@ -0,0 +1,7 @@ +cd ..\..\ +dotnet restore +dotnet build --configuration DebugOpt --no-restore /p:WarningsAsErrors=nullable /m +mkdir Scripts\logs +del Scripts\logs\Content.YAMLLinter.log +dotnet run --project Content.YAMLLinter/Content.YAMLLinter.csproj --no-build -- NUnit.ConsoleOut=0 > Scripts\logs\Content.YAMLLinter.log +pause