From 39a7f0cda8736e0a1ea813c6c19d997c9b483fb2 Mon Sep 17 00:00:00 2001 From: Debug <49997488+DebugOk@users.noreply.github.com> Date: Sun, 31 Dec 2023 17:07:11 +0100 Subject: [PATCH 1/8] Remove cargo gambling (#623) Remove fun Signed-off-by: Debug <49997488+DebugOk@users.noreply.github.com> --- .../Prototypes/Catalog/Cargo/cargo_fun.yml | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/Resources/Prototypes/Catalog/Cargo/cargo_fun.yml b/Resources/Prototypes/Catalog/Cargo/cargo_fun.yml index 2d09a2ccb74..44741a47e04 100644 --- a/Resources/Prototypes/Catalog/Cargo/cargo_fun.yml +++ b/Resources/Prototypes/Catalog/Cargo/cargo_fun.yml @@ -198,12 +198,12 @@ category: Fun group: market -- type: cargoProduct - id: FunCrateGambling - icon: - sprite: Objects/Economy/cash.rsi - state: cash_1000000 - product: CrateCargoGambling - cost: 10000 - category: Fun - group: market +#- type: cargoProduct +# id: FunCrateGambling +# icon: +# sprite: Objects/Economy/cash.rsi +# state: cash_1000000 +# product: CrateCargoGambling +# cost: 10000 +# category: Fun +# group: market From e09112b35c8aa6fcad9beef4e20ea311424b3037 Mon Sep 17 00:00:00 2001 From: Debug <49997488+DebugOk@users.noreply.github.com> Date: Sun, 31 Dec 2023 17:22:56 +0100 Subject: [PATCH 2/8] Fix Crime Assist incorrect entires and add a test (#624) * Create CrimeassistTest.cs * Fix invalid crimeasssist entries * Clean up test code --- .../Tests/DeltaV/CrimeassistTest.cs | 79 +++++++++++++++++++ .../DeltaV/cartridges/crimeassistflow.yml | 23 ++++-- 2 files changed, 94 insertions(+), 8 deletions(-) create mode 100644 Content.IntegrationTests/Tests/DeltaV/CrimeassistTest.cs diff --git a/Content.IntegrationTests/Tests/DeltaV/CrimeassistTest.cs b/Content.IntegrationTests/Tests/DeltaV/CrimeassistTest.cs new file mode 100644 index 00000000000..2e5c7605fa8 --- /dev/null +++ b/Content.IntegrationTests/Tests/DeltaV/CrimeassistTest.cs @@ -0,0 +1,79 @@ +using System.Linq; +using Content.Shared.DeltaV.CartridgeLoader.Cartridges; +using Robust.Shared.GameObjects; +using Robust.Shared.Localization; +using Robust.Shared.Map; +using Robust.Shared.Prototypes; + +namespace Content.IntegrationTests.Tests.DeltaV; + +[TestFixture] +public sealed class CrimeAssistTest +{ + [Test] + public async Task CrimeAssistValid() + { + await using var pair = await PoolManager.GetServerClient(); + var server = pair.Server; + await server.WaitIdleAsync(); + + var prototypeManager = server.ResolveDependency(); + var allProtos = prototypeManager.EnumeratePrototypes().ToArray(); + + await server.WaitAssertion(() => + { + foreach (var proto in allProtos) + { + if (proto.LocKey != null) + { + Assert.That(Loc.TryGetString(proto.LocKey, out var _), + $"CrimeAssistPage {proto.ID} has invalid LocKey {proto.LocKey}!"); + } + + if (proto.LocKeyTitle != null) + { + Assert.That(Loc.TryGetString(proto.LocKeyTitle, out var _), + $"CrimeAssistPage {proto.ID} has invalid LocKeyTitle {proto.LocKeyTitle}!"); + } + + if (proto.LocKeyDescription != null) + { + Assert.That(Loc.TryGetString(proto.LocKeyDescription, out var _), + $"CrimeAssistPage {proto.ID} has invalid LocKeyDescription {proto.LocKeyDescription}!"); + } + + if (proto.LocKeySeverity != null) + { + Assert.That(Loc.TryGetString(proto.LocKeySeverity, out var _), + $"CrimeAssistPage {proto.ID} has invalid LocKeySeverity {proto.LocKeySeverity}!"); + } + + if (proto.LocKeyPunishment != null) + { + Assert.That(Loc.TryGetString(proto.LocKeyPunishment, out var _), + $"CrimeAssistPage {proto.ID} has invalid LocKeyPunishment {proto.LocKeyPunishment}!"); + } + + if (proto.OnStart != null) + { + Assert.That(allProtos.Any(p => p.ID == proto.OnStart), + $"CrimeAssistPage {proto.ID} has invalid OnStart {proto.OnStart}!"); + } + + if (proto.OnYes != null) + { + Assert.That(allProtos.Any(p => p.ID == proto.OnYes), + $"CrimeAssistPage {proto.ID} has invalid OnYes {proto.OnYes}!"); + } + + if (proto.OnNo != null) + { + Assert.That(allProtos.Any(p => p.ID == proto.OnNo), + $"CrimeAssistPage {proto.ID} has invalid OnNo {proto.OnNo}!"); + } + } + }); + + await pair.CleanReturnAsync(); + } +} diff --git a/Resources/Prototypes/DeltaV/cartridges/crimeassistflow.yml b/Resources/Prototypes/DeltaV/cartridges/crimeassistflow.yml index 3bd530988ab..2d746efbe1b 100644 --- a/Resources/Prototypes/DeltaV/cartridges/crimeassistflow.yml +++ b/Resources/Prototypes/DeltaV/cartridges/crimeassistflow.yml @@ -120,7 +120,7 @@ - type: crimeAssistPage id: "questionWasCrimeSexualInNature" locKey: "crime-assist-question-wascrimesexualinnature" - onYes: "resultSexualHarrassment" + onYes: "resultSexualHarassment" onNo: "questionWasSuspectANuisance" - type: crimeAssistPage @@ -278,12 +278,19 @@ locKeySeverity: "crime-assist-crimetype-felony" locKeyPunishment: "crime-assist-crimepunishment-contemptofcourt" +- type: crimeAssistPage + id: "resultBlackMarketeering" + locKeyTitle: "crime-assist-crime-blackmarketeering" + locKeyDescription: "crime-assist-crimedetail-blackmarketeering" + locKeySeverity: "crime-assist-crimetype-felony" + locKeyPunishment: "crime-assist-crimepunishment-blackmarketeering" + - type: crimeAssistPage id: "resultPerjuryOrFalseReport" - locKeyTitle: "crime-assist-crime-perjuryorfalsereport" - locKeyDescription: "crime-assist-crimedetail-perjuryorfalsereport" + locKeyTitle: "crime-assist-crime-perjuryfalsereport" + locKeyDescription: "crime-assist-crimedetail-perjuryfalsereport" locKeySeverity: "crime-assist-crimetype-felony" - locKeyPunishment: "crime-assist-crimepunishment-perjuryorfalsereport" + locKeyPunishment: "crime-assist-crimepunishment-perjuryfalsereport" - type: crimeAssistPage id: "resultObstructionOfJustice" @@ -335,8 +342,8 @@ locKeyPunishment: "crime-assist-crimepunishment-sedition" - type: crimeAssistPage - id: "resultSexualHarrassment" - locKeyTitle: "crime-assist-crime-sexualharrassment" - locKeyDescription: "crime-assist-crimedetail-sexualharrassment" + id: "resultSexualHarassment" + locKeyTitle: "crime-assist-crime-sexualharassment" + locKeyDescription: "crime-assist-crimedetail-sexualharassment" locKeySeverity: "crime-assist-crimetype-capital" - locKeyPunishment: "crime-assist-crimepunishment-sexualharrassment" + locKeyPunishment: "crime-assist-crimepunishment-sexualharassment" From a5d5f4c1e93084a6abaa53369c693e6bb5fb7e42 Mon Sep 17 00:00:00 2001 From: DarkenedSynergy <70016079+DarkenedSynergy@users.noreply.github.com> Date: Sun, 31 Dec 2023 17:23:10 +0100 Subject: [PATCH 3/8] Logistics airlocks sprite fixes (#618) Logistics airlocks --- .../Doors/Airlocks/Glass/cargo.rsi/open.png | Bin 320 -> 247 bytes .../Doors/Airlocks/Standard/cargo.rsi/open.png | Bin 320 -> 247 bytes 2 files changed, 0 insertions(+), 0 deletions(-) diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/cargo.rsi/open.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/cargo.rsi/open.png index 5dff6a5e50b726095a1576dbb3b46d5d2b7c37ed..3fa424bafa2d642aa26ab07b0a210d40f50c5267 100644 GIT binary patch delta 230 zcmX@W^qp~nWIZzj1B1(wu46!ou{g-xiDBJ2nU_EgOS+@4BLl<6e(pbstU$g*fKQ04 ztgLK%s_wJ`qs?tLE9xxbO}Pslc!82vp03{kq&P}~{DS{O0K>iJy^%mM&H|6fVg?4j zLmO46 T;rq1!XaR$#tDnm{r-UW|Npn%K delta 304 zcmV-00nh&T0l)%~8Gi-<0047(dh`GQ0S8G$K~#90?Uyl2!$25@pPW}EkVJ_fbT}OH zgIo+! z5mB^R(Jv8zG3ICcqq@5~>N)3s>MEwLV$w84Wf#ZJ1uXa1-+%00yK}-3*j($Mjp-%xNO7a=X+aVlH^R1+-VzH32o0000iJy^%mM&H|6fVg?4j zLmO46 T;rq1!XaR$#tDnm{r-UW|Npn%K delta 304 zcmV-00nh&T0l)%~8Gi-<0047(dh`GQ0S8G$K~#90?Uyl2!$25@pPW}EkVJ_fbT}OH zgIo+! z5mB^R(Jv8zG3ICcqq@5~>N)3s>MEwLV$w84Wf#ZJ1uXa1-+%00yK}-3*j($Mjp-%xNO7a=X+aVlH^R1+-VzH32o0000 Date: Sun, 31 Dec 2023 16:23:24 +0000 Subject: [PATCH 4/8] Automatic Changelog Update (#618) --- Resources/Changelog/DeltaVChangelog.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Resources/Changelog/DeltaVChangelog.yml b/Resources/Changelog/DeltaVChangelog.yml index ed7dda03c2b..4b1807dcd5e 100644 --- a/Resources/Changelog/DeltaVChangelog.yml +++ b/Resources/Changelog/DeltaVChangelog.yml @@ -1278,3 +1278,9 @@ Entries: message: Added a fluffy tail for the felinids. id: 191 time: '2023-12-30T22:05:52.0000000+00:00' +- author: DarkenedSynergy + changes: + - type: Fix + message: Fixed logistics airlocks looking like engineering airlocks when opened. + id: 192 + time: '2023-12-31T16:23:10.0000000+00:00' From 7b0761401348de5b4f07ba5eed1820dad2b15d07 Mon Sep 17 00:00:00 2001 From: VMSolidus Date: Sun, 31 Dec 2023 11:48:26 -0500 Subject: [PATCH 5/8] Listening outpost (#578) * added listening post * adds code for radio station to spawn mid-round * updated events.yml * tweaked pirate radiostation * Added Syndicate Listener I can't get it to spawn when I "request" it via ghost role, nor the entity spawner but it's a start... * Finished Listener Ghost Role and Radio * Changes Listening Agent's Items * misc gear fixes + shuttle fixes * fixed mistake in nukie starting gear * Allows RadioOp to recieve codewords but not objectives (Thanks to @Ps3Moira) * Localised ListeningOp ghost role * I LOST THE MAP CHANGES AAAAAAAAAAAAAAAA * Alright I found it and remade it * I may have ended up finishing it anyway * Nerfing their fire rate down to something actually reasonable * Removed outdated code comments. Fixed localisation. Transferred things to be marked as Delta or in the Delta folder. * Localised Localisation * Create syndicate_monitor_server.yml * changes standard shuttle to be loaded to Solidus' version * Got the Syndie Names to Work!! * updated localisation * The map is now finished! * Delete pirateradio.yml * Updated the Radio Operator .yml * updated the listening post! * Fixing those errors * Update headsets.yml * Fixing errors. * Localised PirateSpawnRules * Delta-ised human.yml Syndicate Listener * Delta-ised humanoid.yml * Delta-ised events.yml * Fixed a weird space. * Fixed spelling mistake >:( * Fixed an error. * Update humanoid.yml * Another error!! * Update human.yml * Update pirateradio.yml * final fixes on pirateradio.yml * keep guards from picking up guns * Fixed crash to desktop upon shooting * Apparently I cant do that * fixed bathroom light * Fixed stray space. * Update ghost-role-component.ftl * Update pirateradio.yml * finishing touches * final changes + playtime setting for final review! * fix spelling error * Update Resources/Locale/en-US/deltav/ghost/roles/ghost-role-component.ftl Co-authored-by: Colin-Tel <113523727+Colin-Tel@users.noreply.github.com> Signed-off-by: VMSolidus * Update events.yml Signed-off-by: VMSolidus * adds whitelist requirement Co-authored-by: Debug <49997488+DebugOk@users.noreply.github.com> Signed-off-by: Danger Revolution! <142105406+DangerRevolution@users.noreply.github.com> * adds implant, removes commented code * removes more commented code --------- Signed-off-by: VMSolidus Signed-off-by: Danger Revolution! <142105406+DangerRevolution@users.noreply.github.com> Co-authored-by: DangerRevoltion <142105406+DangerRevoltion@users.noreply.github.com> Co-authored-by: Danger Revolution! <142105406+DangerRevolution@users.noreply.github.com> Co-authored-by: Colin-Tel <113523727+Colin-Tel@users.noreply.github.com> Co-authored-by: Debug <49997488+DebugOk@users.noreply.github.com> --- .../PirateRadioSpawnRuleComponent.cs | 15 + .../Events/PirateRadioSpawnRule.cs | 39 + .../ghost/roles/ghost-role-component.ftl | 7 +- Resources/Maps/Shuttles/pirateradio.yml | 6486 +++++++++++++++++ .../Entities/Clothing/Ears/headset_alt.yml | 15 - .../Entities/Clothing/Ears/headsets.yml | 29 + .../Entities/Markers/Spawners/ghost_roles.yml | 30 + .../DeltaV/Entities/Markers/Spawners/mobs.yml | 13 + .../DeltaV/Entities/Mobs/NPCs/salvage.yml | 39 + .../DeltaV/Entities/Mobs/Player/human.yml | 17 + .../DeltaV/Entities/Mobs/Player/humanoid.yml | 15 + .../Machines/syndicate_monitor_server.yml | 63 + .../Prototypes/DeltaV/GameRules/events.yml | 13 + .../Roles/Jobs/Fun/misc_startinggear.yml | 12 + .../DeltaV/Roles/Jobs/NPC/syndicateNPCs.yml | 12 + 15 files changed, 6788 insertions(+), 17 deletions(-) create mode 100644 Content.Server/DeltaV/StationEvents/Components/PirateRadioSpawnRuleComponent.cs create mode 100644 Content.Server/DeltaV/StationEvents/Events/PirateRadioSpawnRule.cs create mode 100644 Resources/Maps/Shuttles/pirateradio.yml delete mode 100644 Resources/Prototypes/DeltaV/Entities/Clothing/Ears/headset_alt.yml create mode 100644 Resources/Prototypes/DeltaV/Entities/Mobs/NPCs/salvage.yml create mode 100644 Resources/Prototypes/DeltaV/Entities/Mobs/Player/human.yml create mode 100644 Resources/Prototypes/DeltaV/Entities/Mobs/Player/humanoid.yml create mode 100644 Resources/Prototypes/DeltaV/Entities/Structures/Machines/syndicate_monitor_server.yml create mode 100644 Resources/Prototypes/DeltaV/Roles/Jobs/NPC/syndicateNPCs.yml diff --git a/Content.Server/DeltaV/StationEvents/Components/PirateRadioSpawnRuleComponent.cs b/Content.Server/DeltaV/StationEvents/Components/PirateRadioSpawnRuleComponent.cs new file mode 100644 index 00000000000..6a5337178c9 --- /dev/null +++ b/Content.Server/DeltaV/StationEvents/Components/PirateRadioSpawnRuleComponent.cs @@ -0,0 +1,15 @@ +using Content.Server.StationEvents.Events; +using Robust.Shared.Prototypes; +using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype; + +namespace Content.Server.StationEvents.Components; + +[RegisterComponent, Access(typeof(PirateRadioSpawnRule))] +public sealed partial class PirateRadioSpawnRuleComponent : Component +{ + [DataField("PirateRadioShuttlePath")] + public string PirateRadioShuttlePath = "Maps/Shuttles/pirateradio.yml"; + + [DataField("additionalRule")] + public EntityUid? AdditionalRule; +} diff --git a/Content.Server/DeltaV/StationEvents/Events/PirateRadioSpawnRule.cs b/Content.Server/DeltaV/StationEvents/Events/PirateRadioSpawnRule.cs new file mode 100644 index 00000000000..499300dfe33 --- /dev/null +++ b/Content.Server/DeltaV/StationEvents/Events/PirateRadioSpawnRule.cs @@ -0,0 +1,39 @@ +using Robust.Server.GameObjects; +using Robust.Server.Maps; +using Robust.Shared.Map; +using Content.Server.GameTicking; +using Content.Server.GameTicking.Rules; +using Content.Server.GameTicking.Rules.Components; +using Content.Server.StationEvents.Components; +using Content.Server.RoundEnd; + +namespace Content.Server.StationEvents.Events; + +public sealed class PirateRadioSpawnRule : StationEventSystem +{ + [Dependency] private readonly IMapManager _mapManager = default!; + [Dependency] private readonly MapLoaderSystem _map = default!; + [Dependency] private readonly GameTicker _gameTicker = default!; + [Dependency] private readonly TraitorRuleSystem _TraitorRuleSystem = default!; + + protected override void Started(EntityUid uid, PirateRadioSpawnRuleComponent component, GameRuleComponent gameRule, GameRuleStartedEvent args) + { + base.Started(uid, component, gameRule, args); + + var shuttleMap = _mapManager.CreateMap(); + var options = new MapLoadOptions + { + LoadMap = true, + }; + + _map.TryLoad(shuttleMap, component.PirateRadioShuttlePath, out _, options); + } + + protected override void Ended(EntityUid uid, PirateRadioSpawnRuleComponent component, GameRuleComponent gameRule, GameRuleEndedEvent args) + { + base.Ended(uid, component, gameRule, args); + + if (component.AdditionalRule != null) + GameTicker.EndGameRule(component.AdditionalRule.Value); + } +} \ No newline at end of file diff --git a/Resources/Locale/en-US/deltav/ghost/roles/ghost-role-component.ftl b/Resources/Locale/en-US/deltav/ghost/roles/ghost-role-component.ftl index ca3ef4fb77d..f2e9238dfbf 100644 --- a/Resources/Locale/en-US/deltav/ghost/roles/ghost-role-component.ftl +++ b/Resources/Locale/en-US/deltav/ghost/roles/ghost-role-component.ftl @@ -1,5 +1,8 @@ ghost-role-information-nukie-mouse-name = Nuclear Operative Mouse ghost-role-information-nukie-mouse-description = A Nuclear Operative reinforcement for the Syndicate. ghost-role-information-nukie-mouse-rules = Normal syndicate antagonist rules apply. Work with whoever called you in, and don't harm them. - The crew is allowed to kill you without warning. - You are allowed to attack the crew and destroy the station without provocation. \ No newline at end of file + The crew is allowed to kill you without warning. + You are allowed to attack the crew and destroy the station without provocation. +ghost-role-information-listeningop-name = Listening Post Operative +ghost-role-information-listeningop-description = You are a Listening Post operative. Get into range, observe the station, intercept communications and assist any operatives in the area! +ghost-role-information-listeningop-rules = You are a Syndicate Operative tasked with the continuous reporting and monitoring of the station and its activities, as well as assisting any fellow operatives who may be aboard the station. As an antagonist, do whatever is required for you to complete this task. Make sure your station doesn't fall into enemy hands and DO NOT abandon your station! Hide your existence at any cost! diff --git a/Resources/Maps/Shuttles/pirateradio.yml b/Resources/Maps/Shuttles/pirateradio.yml new file mode 100644 index 00000000000..e547cccddb3 --- /dev/null +++ b/Resources/Maps/Shuttles/pirateradio.yml @@ -0,0 +1,6486 @@ +meta: + format: 6 + postmapinit: false +tilemap: + 0: Space + 7: FloorAsteroidSand + 9: FloorAsteroidSandRed + 10: FloorAsteroidSandUnvariantized + 63: FloorMetalDiamond + 75: FloorRGlass + 83: FloorShuttleRed + 84: FloorShuttleWhite + 90: FloorSteelCheckerDark + 116: FloorWood + 118: Lattice +entities: +- proto: "" + entities: + - uid: 1 + components: + - name: Syndicate Listening Post + type: MetaData + - rot: -1.0337585079667582 rad + pos: -0.5440744,-0.033024088 + parent: invalid + type: Transform + - chunks: + 0,0: + ind: 0,0 + tiles: PwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAASwAAAAAASwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAdgAAAAAAdgAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAUwAAAAAAPwAAAAAAPwAAAAAASwAAAAAASwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAdgAAAAAAdgAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAUwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAdgAAAAAAdgAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAUwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAABwAAAAAAdgAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAACgAAAAAAPwAAAAAABwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAABwAAAAAAdgAAAAAABwAAAAAACgAAAAAACgAAAAAACQAAAAAACQAAAAAACQAAAAAACgAAAAAACgAAAAAACQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAACQAAAAAACQAAAAAACgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAACQAAAAAACgAAAAAACQAAAAAACQAAAAAABwAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAACQAAAAAACgAAAAAACQAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACgAAAAAAdgAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,-1: + ind: 0,-1 + tiles: BwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAdgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAUwAAAAAAPwAAAAAAUwAAAAAAPwAAAAAAUwAAAAAAPwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAACQAAAAAACQAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAdAAAAAAAdAAAAAAAdAAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAACQAAAAAAPwAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAPwAAAAAAdAAAAAAAdAAAAAAAdAAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAACQAAAAAAPwAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAPwAAAAAAdAAAAAAAdAAAAAAAdAAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAABwAAAAAAPwAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAPwAAAAAAdAAAAAAAdAAAAAAAdAAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAABwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAABwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAdgAAAAAAdgAAAAAA + version: 6 + -1,0: + ind: -1,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAABwAAAAAACQAAAAAACQAAAAAABwAAAAAAPwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAACQAAAAAAdgAAAAAABwAAAAAAPwAAAAAAPwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACgAAAAAABwAAAAAABwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAACQAAAAAACgAAAAAABwAAAAAABwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAACQAAAAAACQAAAAAABwAAAAAABwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAAdgAAAAAABwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAACQAAAAAACgAAAAAABwAAAAAABwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,-1: + ind: -1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAACQAAAAAACQAAAAAACgAAAAAACgAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAABwAAAAAABwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAABwAAAAAABwAAAAAAPwAAAAAAUwAAAAAAPwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAABwAAAAAACQAAAAAACgAAAAAABwAAAAAABwAAAAAAPwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAACQAAAAAACgAAAAAABwAAAAAABwAAAAAAPwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAACQAAAAAACQAAAAAABwAAAAAABwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAAdgAAAAAABwAAAAAAPwAAAAAAVAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAACQAAAAAACgAAAAAABwAAAAAABwAAAAAAPwAAAAAAVAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAABwAAAAAABwAAAAAAPwAAAAAAUwAAAAAAPwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAABwAAAAAAPwAAAAAAPwAAAAAAUwAAAAAAUwAAAAAA + version: 6 + 1,-1: + ind: 1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAACgAAAAAACQAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 1,0: + ind: 1,0 + tiles: BwAAAAAACgAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAACgAAAAAACQAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAACgAAAAAACQAAAAAACQAAAAAACQAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAACQAAAAAACQAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAABwAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAAAAAAAAAAAAAAAAAACQAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + type: MapGrid + - type: Broadphase + - bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + type: Physics + - fixtures: {} + type: Fixtures + - type: OccluderTree + - type: SpreaderGrid + - type: GridPathfinding + - gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + type: Gravity + - chunkCollection: + version: 2 + nodes: + - node: + color: '#FFFFFFFF' + id: Caution + decals: + 0: 3.018731,5.165427 + - node: + color: '#FF0000FF' + id: space + decals: + 1: 3.018731,4.884177 + type: DecalGrid + - version: 2 + data: + tiles: + 0,0: + 0: 65535 + 0,-1: + 0: 65535 + -1,0: + 0: 65535 + -1,-1: + 0: 65535 + 0,1: + 0: 65535 + 1,0: + 0: 65535 + 1,1: + 0: 65535 + 2,0: + 0: 65535 + 0,-2: + 0: 65535 + 1,-2: + 0: 65535 + 1,-1: + 0: 65535 + 2,-1: + 0: 65535 + -1,1: + 0: 65535 + -1,-2: + 0: 65535 + 3,0: + 0: 65535 + 3,-1: + 0: 65535 + 0,2: + 0: 53247 + 1,2: + 0: 32767 + 2,1: + 0: 65535 + 3,1: + 0: 65535 + 0,-3: + 0: 65535 + 1,-3: + 0: 65535 + 2,-2: + 0: 65535 + 3,-2: + 0: 65535 + -2,0: + 0: 65279 + -2,1: + 0: 53230 + -1,2: + 0: 11519 + -2,-2: + 0: 65278 + -2,-1: + 0: 61182 + -2,-3: + 0: 60596 + -1,-3: + 0: 65535 + 4,-1: + 0: 65527 + 4,0: + 0: 65535 + 4,1: + 0: 2559 + 0,-4: + 0: 64769 + 2,-3: + 0: 65527 + 4,-2: + 0: 30587 + 0,3: + 0: 11 + 1,3: + 0: 2185 + 2,2: + 0: 2127 + 3,2: + 0: 1 + 1,-4: + 0: 62482 + 2,-4: + 0: 4640 + 3,-4: + 0: 8448 + 3,-3: + 0: 63250 + -3,1: + 0: 2092 + -3,0: + 0: 32900 + -2,2: + 0: 104 + -1,3: + 0: 130 + -3,-2: + 0: 2112 + -3,-1: + 0: 1152 + -2,-4: + 0: 16896 + -1,-4: + 0: 57744 + 4,-3: + 0: 4644 + 5,-2: + 0: 8193 + 5,-1: + 0: 274 + 4,2: + 0: 1 + 5,0: + 0: 21249 + 5,1: + 0: 29459 + 5,2: + 0: 167 + uniqueMixes: + - volume: 2500 + temperature: 293.15 + moles: + - 21.824879 + - 82.10312 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + chunkSize: 4 + type: GridAtmosphere + - type: GasTileOverlay + - type: RadiationGridResistance + - type: Shuttle +- proto: AirAlarm + entities: + - uid: 2 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,3.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 698 + - 700 + - 701 + - 697 + - 695 + - 696 + - 694 + - 693 + - 692 + - 699 + - 707 + - 708 + - 709 + - 710 + - 703 + - 706 + - 705 + type: DeviceNetwork + - devices: + - 699 + - 692 + - 693 + - 694 + - 696 + - 695 + - 697 + - 701 + - 700 + - 698 + - 707 + - 708 + - 709 + - 710 + - 703 + - 706 + - 705 + type: DeviceList +- proto: AirCanister + entities: + - uid: 3 + components: + - anchored: True + pos: 1.5,5.5 + parent: 1 + type: Transform + - bodyType: Static + type: Physics +- proto: AirlockExternalShuttleSyndicateLocked + entities: + - uid: 4 + components: + - desc: The ominous red light fills you with dread + name: suspicious airlock + type: MetaData + - pos: 3.5,6.5 + parent: 1 + type: Transform + - links: + - 793 + type: DeviceLinkSink + missingComponents: + - Docking +- proto: AirlockSyndicate + entities: + - uid: 5 + components: + - pos: 5.5,2.5 + parent: 1 + type: Transform +- proto: AirlockSyndicateGlass + entities: + - uid: 6 + components: + - pos: 2.5,-1.5 + parent: 1 + type: Transform + - secondsUntilStateChange: -286.07202 + state: Opening + type: Door + - uid: 8 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,-1.5 + parent: 1 + type: Transform + - uid: 10 + components: + - pos: 0.5,-0.5 + parent: 1 + type: Transform + - uid: 11 + components: + - pos: 9.5,-3.5 + parent: 1 + type: Transform + - uid: 794 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,-0.5 + parent: 1 + type: Transform +- proto: AirlockSyndicateGlassLocked + entities: + - uid: 12 + components: + - pos: 3.5,4.5 + parent: 1 + type: Transform + - uid: 13 + components: + - rot: 3.141592653589793 rad + pos: 7.5,-0.5 + parent: 1 + type: Transform +- proto: AirlockSyndicateLocked + entities: + - uid: 9 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,5.5 + parent: 1 + type: Transform + - uid: 14 + components: + - rot: 3.141592653589793 rad + pos: 0.5,3.5 + parent: 1 + type: Transform + - uid: 15 + components: + - pos: 2.5,-5.5 + parent: 1 + type: Transform +- proto: AlwaysPoweredLightColoredFrostyBlue + entities: + - uid: 16 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,-2.5 + parent: 1 + type: Transform +- proto: AlwaysPoweredLightColoredRed + entities: + - uid: 17 + components: + - rot: 3.141592653589793 rad + pos: 4.5,7.5 + parent: 1 + type: Transform + - uid: 18 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,2.5 + parent: 1 + type: Transform + - uid: 19 + components: + - pos: 11.5,-2.5 + parent: 1 + type: Transform + - uid: 20 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,-3.5 + parent: 1 + type: Transform + - uid: 21 + components: + - pos: -1.5,-5.5 + parent: 1 + type: Transform + - uid: 22 + components: + - pos: 12.5,2.5 + parent: 1 + type: Transform +- proto: APCBasic + entities: + - uid: 23 + components: + - pos: 2.5,4.5 + parent: 1 + type: Transform + - uid: 24 + components: + - rot: 3.141592653589793 rad + pos: 3.5,-5.5 + parent: 1 + type: Transform + - uid: 25 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,0.5 + parent: 1 + type: Transform + - hasAccess: True + lastExternalState: Good + lastChargeState: Full + type: Apc +- proto: AsteroidAltRock + entities: + - uid: 26 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,4.5 + parent: 1 + type: Transform + - uid: 27 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,1.5 + parent: 1 + type: Transform + - uid: 28 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,-0.5 + parent: 1 + type: Transform + - uid: 29 + components: + - pos: 4.5,8.5 + parent: 1 + type: Transform + - uid: 30 + components: + - pos: 6.5,5.5 + parent: 1 + type: Transform + - uid: 31 + components: + - pos: 5.5,8.5 + parent: 1 + type: Transform + - uid: 32 + components: + - pos: 6.5,8.5 + parent: 1 + type: Transform + - uid: 33 + components: + - pos: 2.5,7.5 + parent: 1 + type: Transform + - uid: 34 + components: + - pos: 1.5,7.5 + parent: 1 + type: Transform + - uid: 35 + components: + - pos: 3.5,8.5 + parent: 1 + type: Transform + - uid: 36 + components: + - pos: 13.5,4.5 + parent: 1 + type: Transform + - uid: 37 + components: + - pos: 14.5,3.5 + parent: 1 + type: Transform + - uid: 38 + components: + - pos: 15.5,4.5 + parent: 1 + type: Transform + - uid: 39 + components: + - pos: 14.5,4.5 + parent: 1 + type: Transform + - uid: 40 + components: + - pos: 13.5,5.5 + parent: 1 + type: Transform + - uid: 41 + components: + - pos: 12.5,4.5 + parent: 1 + type: Transform + - uid: 42 + components: + - pos: 2.5,8.5 + parent: 1 + type: Transform + - uid: 43 + components: + - pos: 7.5,5.5 + parent: 1 + type: Transform + - uid: 44 + components: + - pos: 7.5,7.5 + parent: 1 + type: Transform + - uid: 45 + components: + - pos: 8.5,4.5 + parent: 1 + type: Transform + - uid: 46 + components: + - pos: 8.5,5.5 + parent: 1 + type: Transform + - uid: 47 + components: + - pos: 9.5,4.5 + parent: 1 + type: Transform + - uid: 48 + components: + - pos: 11.5,4.5 + parent: 1 + type: Transform + - uid: 49 + components: + - pos: 11.5,5.5 + parent: 1 + type: Transform + - uid: 50 + components: + - pos: 9.5,5.5 + parent: 1 + type: Transform + - uid: 51 + components: + - pos: 14.5,5.5 + parent: 1 + type: Transform + - uid: 52 + components: + - pos: -3.5,-8.5 + parent: 1 + type: Transform + - uid: 53 + components: + - pos: -3.5,-7.5 + parent: 1 + type: Transform + - uid: 54 + components: + - pos: -3.5,-6.5 + parent: 1 + type: Transform + - uid: 55 + components: + - pos: -3.5,-5.5 + parent: 1 + type: Transform + - uid: 56 + components: + - pos: -3.5,-4.5 + parent: 1 + type: Transform + - uid: 57 + components: + - pos: -3.5,-3.5 + parent: 1 + type: Transform + - uid: 58 + components: + - pos: -3.5,-2.5 + parent: 1 + type: Transform + - uid: 59 + components: + - pos: -3.5,-1.5 + parent: 1 + type: Transform + - uid: 60 + components: + - pos: -3.5,2.5 + parent: 1 + type: Transform + - uid: 61 + components: + - pos: -3.5,3.5 + parent: 1 + type: Transform + - uid: 62 + components: + - pos: -3.5,4.5 + parent: 1 + type: Transform + - uid: 63 + components: + - pos: -3.5,5.5 + parent: 1 + type: Transform + - uid: 64 + components: + - pos: -3.5,6.5 + parent: 1 + type: Transform + - uid: 65 + components: + - pos: -3.5,7.5 + parent: 1 + type: Transform + - uid: 66 + components: + - pos: -2.5,7.5 + parent: 1 + type: Transform + - uid: 67 + components: + - pos: -1.5,7.5 + parent: 1 + type: Transform + - uid: 68 + components: + - pos: -0.5,7.5 + parent: 1 + type: Transform + - uid: 69 + components: + - pos: 0.5,7.5 + parent: 1 + type: Transform + - uid: 70 + components: + - pos: 1.5,8.5 + parent: 1 + type: Transform + - uid: 71 + components: + - pos: -0.5,8.5 + parent: 1 + type: Transform + - uid: 72 + components: + - pos: 4.5,9.5 + parent: 1 + type: Transform + - uid: 73 + components: + - pos: 3.5,9.5 + parent: 1 + type: Transform + - uid: 74 + components: + - pos: 5.5,9.5 + parent: 1 + type: Transform + - uid: 75 + components: + - pos: 2.5,9.5 + parent: 1 + type: Transform + - uid: 76 + components: + - pos: 0.5,8.5 + parent: 1 + type: Transform + - uid: 77 + components: + - pos: -4.5,6.5 + parent: 1 + type: Transform + - uid: 78 + components: + - pos: -4.5,4.5 + parent: 1 + type: Transform + - uid: 79 + components: + - pos: -4.5,3.5 + parent: 1 + type: Transform + - uid: 80 + components: + - pos: -4.5,2.5 + parent: 1 + type: Transform + - uid: 81 + components: + - pos: -4.5,0.5 + parent: 1 + type: Transform + - uid: 82 + components: + - pos: -4.5,-1.5 + parent: 1 + type: Transform + - uid: 83 + components: + - pos: -4.5,-2.5 + parent: 1 + type: Transform + - uid: 84 + components: + - pos: -4.5,-4.5 + parent: 1 + type: Transform + - uid: 85 + components: + - pos: -4.5,-5.5 + parent: 1 + type: Transform + - uid: 86 + components: + - pos: -4.5,-7.5 + parent: 1 + type: Transform + - uid: 87 + components: + - pos: -4.5,-6.5 + parent: 1 + type: Transform + - uid: 88 + components: + - pos: -3.5,-9.5 + parent: 1 + type: Transform + - uid: 89 + components: + - pos: -2.5,-9.5 + parent: 1 + type: Transform + - uid: 90 + components: + - pos: -1.5,-9.5 + parent: 1 + type: Transform + - uid: 91 + components: + - pos: -0.5,-9.5 + parent: 1 + type: Transform + - uid: 92 + components: + - pos: 1.5,-9.5 + parent: 1 + type: Transform + - uid: 93 + components: + - pos: 2.5,-9.5 + parent: 1 + type: Transform + - uid: 94 + components: + - pos: 16.5,1.5 + parent: 1 + type: Transform + - uid: 95 + components: + - pos: 16.5,0.5 + parent: 1 + type: Transform + - uid: 96 + components: + - pos: 0.5,-9.5 + parent: 1 + type: Transform + - uid: 97 + components: + - pos: 3.5,-9.5 + parent: 1 + type: Transform + - uid: 98 + components: + - pos: 4.5,-9.5 + parent: 1 + type: Transform + - uid: 99 + components: + - pos: 5.5,-9.5 + parent: 1 + type: Transform + - uid: 100 + components: + - pos: 6.5,-9.5 + parent: 1 + type: Transform + - uid: 101 + components: + - pos: 8.5,-8.5 + parent: 1 + type: Transform + - uid: 102 + components: + - pos: 9.5,-7.5 + parent: 1 + type: Transform + - uid: 103 + components: + - pos: 11.5,-7.5 + parent: 1 + type: Transform + - uid: 104 + components: + - pos: 12.5,-7.5 + parent: 1 + type: Transform + - uid: 105 + components: + - pos: 14.5,-6.5 + parent: 1 + type: Transform + - uid: 106 + components: + - pos: 15.5,-6.5 + parent: 1 + type: Transform + - uid: 107 + components: + - pos: 15.5,-5.5 + parent: 1 + type: Transform + - uid: 108 + components: + - pos: 15.5,-4.5 + parent: 1 + type: Transform + - uid: 109 + components: + - pos: 15.5,-3.5 + parent: 1 + type: Transform + - uid: 110 + components: + - pos: 15.5,-2.5 + parent: 1 + type: Transform + - uid: 111 + components: + - pos: 15.5,-1.5 + parent: 1 + type: Transform + - uid: 112 + components: + - pos: 16.5,-2.5 + parent: 1 + type: Transform + - uid: 113 + components: + - pos: 16.5,-3.5 + parent: 1 + type: Transform + - uid: 114 + components: + - pos: 16.5,-4.5 + parent: 1 + type: Transform + - uid: 115 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,-10.5 + parent: 1 + type: Transform + - uid: 116 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,-10.5 + parent: 1 + type: Transform + - uid: 117 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-10.5 + parent: 1 + type: Transform + - uid: 118 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,-10.5 + parent: 1 + type: Transform + - uid: 119 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,-10.5 + parent: 1 + type: Transform + - uid: 120 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,-10.5 + parent: 1 + type: Transform + - uid: 121 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,-10.5 + parent: 1 + type: Transform + - uid: 122 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,-8.5 + parent: 1 + type: Transform + - uid: 123 + components: + - rot: 3.141592653589793 rad + pos: 17.5,3.5 + parent: 1 + type: Transform + - uid: 124 + components: + - rot: 3.141592653589793 rad + pos: 16.5,4.5 + parent: 1 + type: Transform + - uid: 125 + components: + - pos: 9.5,-13.5 + parent: 1 + type: Transform + - uid: 126 + components: + - rot: 3.141592653589793 rad + pos: 17.5,-0.5 + parent: 1 + type: Transform + - uid: 127 + components: + - rot: 3.141592653589793 rad + pos: 17.5,-1.5 + parent: 1 + type: Transform + - uid: 128 + components: + - rot: 3.141592653589793 rad + pos: 17.5,1.5 + parent: 1 + type: Transform + - uid: 129 + components: + - rot: 3.141592653589793 rad + pos: 18.5,3.5 + parent: 1 + type: Transform + - uid: 130 + components: + - rot: 3.141592653589793 rad + pos: 19.5,2.5 + parent: 1 + type: Transform + - uid: 131 + components: + - rot: 3.141592653589793 rad + pos: 17.5,4.5 + parent: 1 + type: Transform + - uid: 132 + components: + - rot: 3.141592653589793 rad + pos: 18.5,4.5 + parent: 1 + type: Transform + - uid: 133 + components: + - rot: 3.141592653589793 rad + pos: 19.5,3.5 + parent: 1 + type: Transform + - uid: 134 + components: + - rot: 3.141592653589793 rad + pos: 19.5,4.5 + parent: 1 + type: Transform + - uid: 135 + components: + - rot: 3.141592653589793 rad + pos: 17.5,5.5 + parent: 1 + type: Transform + - uid: 136 + components: + - rot: 3.141592653589793 rad + pos: 15.5,5.5 + parent: 1 + type: Transform + - uid: 137 + components: + - rot: 3.141592653589793 rad + pos: 16.5,5.5 + parent: 1 + type: Transform + - uid: 138 + components: + - rot: 3.141592653589793 rad + pos: 14.5,6.5 + parent: 1 + type: Transform + - uid: 139 + components: + - rot: 3.141592653589793 rad + pos: 13.5,6.5 + parent: 1 + type: Transform + - uid: 140 + components: + - rot: 3.141592653589793 rad + pos: 12.5,6.5 + parent: 1 + type: Transform + - uid: 141 + components: + - rot: 3.141592653589793 rad + pos: 12.5,5.5 + parent: 1 + type: Transform + - uid: 142 + components: + - rot: 3.141592653589793 rad + pos: 10.5,6.5 + parent: 1 + type: Transform + - uid: 143 + components: + - rot: 3.141592653589793 rad + pos: 10.5,5.5 + parent: 1 + type: Transform + - uid: 144 + components: + - rot: 3.141592653589793 rad + pos: 9.5,6.5 + parent: 1 + type: Transform + - uid: 145 + components: + - rot: 3.141592653589793 rad + pos: 11.5,6.5 + parent: 1 + type: Transform + - uid: 146 + components: + - rot: 3.141592653589793 rad + pos: 8.5,8.5 + parent: 1 + type: Transform + - uid: 147 + components: + - rot: 3.141592653589793 rad + pos: 7.5,8.5 + parent: 1 + type: Transform + - uid: 148 + components: + - rot: 3.141592653589793 rad + pos: 7.5,9.5 + parent: 1 + type: Transform + - uid: 149 + components: + - rot: 3.141592653589793 rad + pos: 9.5,8.5 + parent: 1 + type: Transform + - uid: 150 + components: + - rot: 3.141592653589793 rad + pos: 11.5,8.5 + parent: 1 + type: Transform + - uid: 151 + components: + - rot: 3.141592653589793 rad + pos: 12.5,8.5 + parent: 1 + type: Transform + - uid: 152 + components: + - rot: 3.141592653589793 rad + pos: 12.5,7.5 + parent: 1 + type: Transform + - uid: 153 + components: + - rot: 3.141592653589793 rad + pos: 14.5,7.5 + parent: 1 + type: Transform + - uid: 154 + components: + - rot: 3.141592653589793 rad + pos: 17.5,0.5 + parent: 1 + type: Transform + - uid: 155 + components: + - rot: 3.141592653589793 rad + pos: 19.5,1.5 + parent: 1 + type: Transform + - uid: 156 + components: + - rot: 3.141592653589793 rad + pos: 18.5,-0.5 + parent: 1 + type: Transform + - uid: 157 + components: + - rot: 3.141592653589793 rad + pos: 20.5,0.5 + parent: 1 + type: Transform + - uid: 158 + components: + - rot: 3.141592653589793 rad + pos: 20.5,3.5 + parent: 1 + type: Transform + - uid: 159 + components: + - rot: 3.141592653589793 rad + pos: 19.5,5.5 + parent: 1 + type: Transform + - uid: 160 + components: + - rot: 3.141592653589793 rad + pos: 20.5,6.5 + parent: 1 + type: Transform + - uid: 161 + components: + - rot: 3.141592653589793 rad + pos: 20.5,7.5 + parent: 1 + type: Transform + - uid: 162 + components: + - rot: 3.141592653589793 rad + pos: 21.5,6.5 + parent: 1 + type: Transform + - uid: 163 + components: + - rot: 3.141592653589793 rad + pos: 20.5,5.5 + parent: 1 + type: Transform + - uid: 164 + components: + - rot: 3.141592653589793 rad + pos: 21.5,7.5 + parent: 1 + type: Transform + - uid: 165 + components: + - rot: 3.141592653589793 rad + pos: 21.5,8.5 + parent: 1 + type: Transform + - uid: 166 + components: + - rot: 3.141592653589793 rad + pos: 23.5,9.5 + parent: 1 + type: Transform + - uid: 167 + components: + - rot: 3.141592653589793 rad + pos: 22.5,8.5 + parent: 1 + type: Transform + - uid: 168 + components: + - rot: 3.141592653589793 rad + pos: 20.5,2.5 + parent: 1 + type: Transform + - uid: 169 + components: + - rot: 3.141592653589793 rad + pos: 20.5,4.5 + parent: 1 + type: Transform + - uid: 170 + components: + - rot: 3.141592653589793 rad + pos: 18.5,-1.5 + parent: 1 + type: Transform + - uid: 171 + components: + - rot: 3.141592653589793 rad + pos: 20.5,-1.5 + parent: 1 + type: Transform + - uid: 172 + components: + - rot: 3.141592653589793 rad + pos: 20.5,-2.5 + parent: 1 + type: Transform + - uid: 173 + components: + - rot: 3.141592653589793 rad + pos: 18.5,-2.5 + parent: 1 + type: Transform + - uid: 174 + components: + - rot: 3.141592653589793 rad + pos: 17.5,-2.5 + parent: 1 + type: Transform + - uid: 175 + components: + - rot: 3.141592653589793 rad + pos: 17.5,-3.5 + parent: 1 + type: Transform + - uid: 176 + components: + - rot: 3.141592653589793 rad + pos: 17.5,-4.5 + parent: 1 + type: Transform + - uid: 177 + components: + - rot: 3.141592653589793 rad + pos: 13.5,-7.5 + parent: 1 + type: Transform + - uid: 178 + components: + - rot: 3.141592653589793 rad + pos: 14.5,-7.5 + parent: 1 + type: Transform + - uid: 179 + components: + - rot: 3.141592653589793 rad + pos: 9.5,-8.5 + parent: 1 + type: Transform + - uid: 180 + components: + - rot: 3.141592653589793 rad + pos: 8.5,-10.5 + parent: 1 + type: Transform + - uid: 181 + components: + - rot: 3.141592653589793 rad + pos: 12.5,-8.5 + parent: 1 + type: Transform + - uid: 182 + components: + - rot: 3.141592653589793 rad + pos: 13.5,-8.5 + parent: 1 + type: Transform + - uid: 183 + components: + - rot: 3.141592653589793 rad + pos: 9.5,-10.5 + parent: 1 + type: Transform + - uid: 184 + components: + - rot: 3.141592653589793 rad + pos: 10.5,-10.5 + parent: 1 + type: Transform + - uid: 185 + components: + - rot: 3.141592653589793 rad + pos: 11.5,-10.5 + parent: 1 + type: Transform + - uid: 186 + components: + - rot: 3.141592653589793 rad + pos: 12.5,-10.5 + parent: 1 + type: Transform + - uid: 187 + components: + - rot: 3.141592653589793 rad + pos: 14.5,-9.5 + parent: 1 + type: Transform + - uid: 188 + components: + - rot: 3.141592653589793 rad + pos: 14.5,-8.5 + parent: 1 + type: Transform + - uid: 189 + components: + - rot: 3.141592653589793 rad + pos: 15.5,-7.5 + parent: 1 + type: Transform + - uid: 190 + components: + - rot: 3.141592653589793 rad + pos: 15.5,-8.5 + parent: 1 + type: Transform + - uid: 191 + components: + - rot: 3.141592653589793 rad + pos: 16.5,-5.5 + parent: 1 + type: Transform + - uid: 192 + components: + - rot: 3.141592653589793 rad + pos: 16.5,-6.5 + parent: 1 + type: Transform + - uid: 193 + components: + - rot: 3.141592653589793 rad + pos: 16.5,-7.5 + parent: 1 + type: Transform + - uid: 194 + components: + - rot: 3.141592653589793 rad + pos: 17.5,-7.5 + parent: 1 + type: Transform + - uid: 195 + components: + - rot: 3.141592653589793 rad + pos: 17.5,-6.5 + parent: 1 + type: Transform + - uid: 196 + components: + - rot: 3.141592653589793 rad + pos: 17.5,-5.5 + parent: 1 + type: Transform + - uid: 197 + components: + - rot: 3.141592653589793 rad + pos: 10.5,-11.5 + parent: 1 + type: Transform + - uid: 198 + components: + - rot: 3.141592653589793 rad + pos: 9.5,-11.5 + parent: 1 + type: Transform + - uid: 199 + components: + - rot: 3.141592653589793 rad + pos: 8.5,-11.5 + parent: 1 + type: Transform + - uid: 200 + components: + - rot: 3.141592653589793 rad + pos: 13.5,-11.5 + parent: 1 + type: Transform + - uid: 201 + components: + - rot: 3.141592653589793 rad + pos: 13.5,-12.5 + parent: 1 + type: Transform + - uid: 202 + components: + - rot: 3.141592653589793 rad + pos: 12.5,-13.5 + parent: 1 + type: Transform + - uid: 203 + components: + - rot: 3.141592653589793 rad + pos: 16.5,-8.5 + parent: 1 + type: Transform + - uid: 204 + components: + - rot: 3.141592653589793 rad + pos: 17.5,-9.5 + parent: 1 + type: Transform + - uid: 205 + components: + - rot: 3.141592653589793 rad + pos: 17.5,-10.5 + parent: 1 + type: Transform + - uid: 206 + components: + - rot: 3.141592653589793 rad + pos: 18.5,-11.5 + parent: 1 + type: Transform + - uid: 207 + components: + - rot: 3.141592653589793 rad + pos: 19.5,-7.5 + parent: 1 + type: Transform + - uid: 208 + components: + - rot: 3.141592653589793 rad + pos: 20.5,-7.5 + parent: 1 + type: Transform + - uid: 209 + components: + - rot: 3.141592653589793 rad + pos: 18.5,-6.5 + parent: 1 + type: Transform + - uid: 210 + components: + - rot: 3.141592653589793 rad + pos: 21.5,-3.5 + parent: 1 + type: Transform + - uid: 211 + components: + - rot: 3.141592653589793 rad + pos: 21.5,-4.5 + parent: 1 + type: Transform + - uid: 212 + components: + - rot: 3.141592653589793 rad + pos: 21.5,2.5 + parent: 1 + type: Transform + - uid: 213 + components: + - rot: 3.141592653589793 rad + pos: 21.5,4.5 + parent: 1 + type: Transform + - uid: 214 + components: + - rot: 3.141592653589793 rad + pos: 22.5,3.5 + parent: 1 + type: Transform + - uid: 215 + components: + - rot: 3.141592653589793 rad + pos: 16.5,8.5 + parent: 1 + type: Transform + - uid: 216 + components: + - rot: 3.141592653589793 rad + pos: 15.5,7.5 + parent: 1 + type: Transform + - uid: 217 + components: + - rot: 3.141592653589793 rad + pos: 11.5,10.5 + parent: 1 + type: Transform + - uid: 218 + components: + - rot: 3.141592653589793 rad + pos: 3.5,10.5 + parent: 1 + type: Transform + - uid: 219 + components: + - rot: 3.141592653589793 rad + pos: 3.5,11.5 + parent: 1 + type: Transform + - uid: 220 + components: + - rot: 3.141592653589793 rad + pos: 4.5,11.5 + parent: 1 + type: Transform + - uid: 221 + components: + - rot: 3.141592653589793 rad + pos: 5.5,11.5 + parent: 1 + type: Transform + - uid: 222 + components: + - rot: 3.141592653589793 rad + pos: 5.5,10.5 + parent: 1 + type: Transform + - uid: 223 + components: + - rot: 3.141592653589793 rad + pos: 6.5,10.5 + parent: 1 + type: Transform + - uid: 224 + components: + - rot: 3.141592653589793 rad + pos: 6.5,9.5 + parent: 1 + type: Transform + - uid: 225 + components: + - rot: 3.141592653589793 rad + pos: 2.5,10.5 + parent: 1 + type: Transform + - uid: 226 + components: + - rot: 3.141592653589793 rad + pos: 1.5,9.5 + parent: 1 + type: Transform + - uid: 227 + components: + - rot: 3.141592653589793 rad + pos: 0.5,9.5 + parent: 1 + type: Transform + - uid: 228 + components: + - rot: 3.141592653589793 rad + pos: -0.5,9.5 + parent: 1 + type: Transform + - uid: 229 + components: + - rot: 3.141592653589793 rad + pos: -1.5,8.5 + parent: 1 + type: Transform + - uid: 230 + components: + - rot: 3.141592653589793 rad + pos: -2.5,8.5 + parent: 1 + type: Transform + - uid: 231 + components: + - rot: 3.141592653589793 rad + pos: -1.5,9.5 + parent: 1 + type: Transform + - uid: 232 + components: + - rot: 3.141592653589793 rad + pos: -3.5,8.5 + parent: 1 + type: Transform + - uid: 233 + components: + - rot: 3.141592653589793 rad + pos: -2.5,9.5 + parent: 1 + type: Transform + - uid: 234 + components: + - rot: 3.141592653589793 rad + pos: -4.5,7.5 + parent: 1 + type: Transform + - uid: 235 + components: + - rot: 3.141592653589793 rad + pos: -5.5,6.5 + parent: 1 + type: Transform + - uid: 236 + components: + - rot: 3.141592653589793 rad + pos: -5.5,5.5 + parent: 1 + type: Transform + - uid: 237 + components: + - rot: 3.141592653589793 rad + pos: -5.5,4.5 + parent: 1 + type: Transform + - uid: 238 + components: + - rot: 3.141592653589793 rad + pos: 1.5,10.5 + parent: 1 + type: Transform + - uid: 239 + components: + - rot: 3.141592653589793 rad + pos: -2.5,11.5 + parent: 1 + type: Transform + - uid: 240 + components: + - rot: 3.141592653589793 rad + pos: -2.5,12.5 + parent: 1 + type: Transform + - uid: 241 + components: + - rot: 3.141592653589793 rad + pos: -0.5,13.5 + parent: 1 + type: Transform + - uid: 242 + components: + - rot: 3.141592653589793 rad + pos: 0.5,12.5 + parent: 1 + type: Transform + - uid: 243 + components: + - rot: 3.141592653589793 rad + pos: 1.5,12.5 + parent: 1 + type: Transform + - uid: 244 + components: + - rot: 3.141592653589793 rad + pos: 3.5,12.5 + parent: 1 + type: Transform + - uid: 245 + components: + - rot: 3.141592653589793 rad + pos: 7.5,12.5 + parent: 1 + type: Transform + - uid: 246 + components: + - rot: 3.141592653589793 rad + pos: 7.5,13.5 + parent: 1 + type: Transform + - uid: 247 + components: + - rot: 3.141592653589793 rad + pos: 7.5,14.5 + parent: 1 + type: Transform + - uid: 248 + components: + - rot: 3.141592653589793 rad + pos: 6.5,11.5 + parent: 1 + type: Transform + - uid: 249 + components: + - rot: 3.141592653589793 rad + pos: -4.5,8.5 + parent: 1 + type: Transform + - uid: 250 + components: + - rot: 3.141592653589793 rad + pos: -5.5,9.5 + parent: 1 + type: Transform + - uid: 251 + components: + - rot: 3.141592653589793 rad + pos: -6.5,9.5 + parent: 1 + type: Transform + - uid: 252 + components: + - rot: 3.141592653589793 rad + pos: -0.5,10.5 + parent: 1 + type: Transform + - uid: 253 + components: + - rot: 3.141592653589793 rad + pos: -6.5,6.5 + parent: 1 + type: Transform + - uid: 254 + components: + - rot: 3.141592653589793 rad + pos: -7.5,6.5 + parent: 1 + type: Transform + - uid: 255 + components: + - rot: 3.141592653589793 rad + pos: -8.5,6.5 + parent: 1 + type: Transform + - uid: 256 + components: + - rot: 3.141592653589793 rad + pos: -10.5,5.5 + parent: 1 + type: Transform + - uid: 257 + components: + - rot: 3.141592653589793 rad + pos: -9.5,4.5 + parent: 1 + type: Transform + - uid: 258 + components: + - rot: 3.141592653589793 rad + pos: -8.5,4.5 + parent: 1 + type: Transform + - uid: 259 + components: + - rot: 3.141592653589793 rad + pos: -8.5,3.5 + parent: 1 + type: Transform + - uid: 260 + components: + - rot: 3.141592653589793 rad + pos: -7.5,3.5 + parent: 1 + type: Transform + - uid: 261 + components: + - rot: 3.141592653589793 rad + pos: -6.5,3.5 + parent: 1 + type: Transform + - uid: 262 + components: + - rot: 3.141592653589793 rad + pos: -5.5,3.5 + parent: 1 + type: Transform + - uid: 263 + components: + - rot: 3.141592653589793 rad + pos: -6.5,5.5 + parent: 1 + type: Transform + - uid: 264 + components: + - rot: 3.141592653589793 rad + pos: -5.5,2.5 + parent: 1 + type: Transform + - uid: 265 + components: + - rot: 3.141592653589793 rad + pos: -6.5,2.5 + parent: 1 + type: Transform + - uid: 266 + components: + - rot: 3.141592653589793 rad + pos: -6.5,1.5 + parent: 1 + type: Transform + - uid: 267 + components: + - rot: 3.141592653589793 rad + pos: -7.5,1.5 + parent: 1 + type: Transform + - uid: 268 + components: + - rot: 3.141592653589793 rad + pos: -7.5,0.5 + parent: 1 + type: Transform + - uid: 269 + components: + - rot: 3.141592653589793 rad + pos: -6.5,0.5 + parent: 1 + type: Transform + - uid: 270 + components: + - rot: 3.141592653589793 rad + pos: -5.5,0.5 + parent: 1 + type: Transform + - uid: 271 + components: + - rot: 3.141592653589793 rad + pos: -5.5,-0.5 + parent: 1 + type: Transform + - uid: 272 + components: + - rot: 3.141592653589793 rad + pos: -5.5,-1.5 + parent: 1 + type: Transform + - uid: 273 + components: + - rot: 3.141592653589793 rad + pos: -5.5,-2.5 + parent: 1 + type: Transform + - uid: 274 + components: + - rot: 3.141592653589793 rad + pos: -6.5,-1.5 + parent: 1 + type: Transform + - uid: 275 + components: + - rot: 3.141592653589793 rad + pos: -7.5,-2.5 + parent: 1 + type: Transform + - uid: 276 + components: + - rot: 3.141592653589793 rad + pos: -7.5,-4.5 + parent: 1 + type: Transform + - uid: 277 + components: + - rot: 3.141592653589793 rad + pos: -6.5,-4.5 + parent: 1 + type: Transform + - uid: 278 + components: + - rot: 3.141592653589793 rad + pos: -5.5,-4.5 + parent: 1 + type: Transform + - uid: 279 + components: + - rot: 3.141592653589793 rad + pos: -6.5,-2.5 + parent: 1 + type: Transform + - uid: 280 + components: + - rot: 3.141592653589793 rad + pos: -5.5,-3.5 + parent: 1 + type: Transform + - uid: 281 + components: + - rot: 3.141592653589793 rad + pos: -5.5,-5.5 + parent: 1 + type: Transform + - uid: 282 + components: + - rot: 3.141592653589793 rad + pos: -5.5,-6.5 + parent: 1 + type: Transform + - uid: 283 + components: + - rot: 3.141592653589793 rad + pos: -5.5,-7.5 + parent: 1 + type: Transform + - uid: 284 + components: + - rot: 3.141592653589793 rad + pos: -4.5,-8.5 + parent: 1 + type: Transform + - uid: 285 + components: + - rot: 3.141592653589793 rad + pos: -5.5,-8.5 + parent: 1 + type: Transform + - uid: 286 + components: + - rot: 3.141592653589793 rad + pos: -4.5,-9.5 + parent: 1 + type: Transform + - uid: 287 + components: + - rot: 3.141592653589793 rad + pos: -2.5,-10.5 + parent: 1 + type: Transform + - uid: 288 + components: + - rot: 3.141592653589793 rad + pos: -3.5,-10.5 + parent: 1 + type: Transform + - uid: 289 + components: + - rot: 3.141592653589793 rad + pos: -3.5,-11.5 + parent: 1 + type: Transform + - uid: 290 + components: + - rot: 3.141592653589793 rad + pos: -4.5,-10.5 + parent: 1 + type: Transform + - uid: 291 + components: + - rot: 3.141592653589793 rad + pos: -2.5,-11.5 + parent: 1 + type: Transform + - uid: 292 + components: + - rot: 3.141592653589793 rad + pos: -1.5,-11.5 + parent: 1 + type: Transform + - uid: 293 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-11.5 + parent: 1 + type: Transform + - uid: 294 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-10.5 + parent: 1 + type: Transform + - uid: 295 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-11.5 + parent: 1 + type: Transform + - uid: 296 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-11.5 + parent: 1 + type: Transform + - uid: 297 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-11.5 + parent: 1 + type: Transform + - uid: 298 + components: + - rot: 3.141592653589793 rad + pos: 3.5,-11.5 + parent: 1 + type: Transform + - uid: 299 + components: + - rot: 3.141592653589793 rad + pos: 4.5,-11.5 + parent: 1 + type: Transform + - uid: 300 + components: + - rot: 3.141592653589793 rad + pos: 5.5,-11.5 + parent: 1 + type: Transform + - uid: 301 + components: + - rot: 3.141592653589793 rad + pos: 6.5,-10.5 + parent: 1 + type: Transform + - uid: 302 + components: + - rot: 3.141592653589793 rad + pos: 6.5,-11.5 + parent: 1 + type: Transform + - uid: 303 + components: + - rot: 3.141592653589793 rad + pos: 7.5,-11.5 + parent: 1 + type: Transform + - uid: 304 + components: + - rot: 3.141592653589793 rad + pos: 8.5,-12.5 + parent: 1 + type: Transform + - uid: 305 + components: + - rot: 3.141592653589793 rad + pos: 7.5,-12.5 + parent: 1 + type: Transform + - uid: 306 + components: + - rot: 3.141592653589793 rad + pos: 4.5,-12.5 + parent: 1 + type: Transform + - uid: 307 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-12.5 + parent: 1 + type: Transform + - uid: 308 + components: + - rot: 3.141592653589793 rad + pos: 6.5,-13.5 + parent: 1 + type: Transform + - uid: 309 + components: + - rot: 3.141592653589793 rad + pos: 3.5,-13.5 + parent: 1 + type: Transform + - uid: 310 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-12.5 + parent: 1 + type: Transform + - uid: 311 + components: + - rot: 3.141592653589793 rad + pos: -1.5,-12.5 + parent: 1 + type: Transform + - uid: 312 + components: + - rot: 3.141592653589793 rad + pos: -6.5,-6.5 + parent: 1 + type: Transform + - uid: 313 + components: + - rot: 3.141592653589793 rad + pos: -6.5,-7.5 + parent: 1 + type: Transform + - uid: 314 + components: + - pos: 9.5,-14.5 + parent: 1 + type: Transform + - uid: 315 + components: + - pos: 4.5,-14.5 + parent: 1 + type: Transform + - uid: 316 + components: + - pos: 5.5,-15.5 + parent: 1 + type: Transform + - uid: 317 + components: + - pos: -0.5,-14.5 + parent: 1 + type: Transform + - uid: 318 + components: + - pos: 0.5,-13.5 + parent: 1 + type: Transform + - uid: 319 + components: + - pos: 0.5,-12.5 + parent: 1 + type: Transform + - uid: 320 + components: + - pos: 0.5,-15.5 + parent: 1 + type: Transform + - uid: 321 + components: + - pos: -3.5,-13.5 + parent: 1 + type: Transform + - uid: 322 + components: + - pos: -3.5,-14.5 + parent: 1 + type: Transform + - uid: 323 + components: + - pos: -5.5,-11.5 + parent: 1 + type: Transform + - uid: 324 + components: + - pos: -5.5,-12.5 + parent: 1 + type: Transform + - uid: 325 + components: + - pos: -6.5,-13.5 + parent: 1 + type: Transform + - uid: 326 + components: + - pos: -6.5,-10.5 + parent: 1 + type: Transform + - uid: 327 + components: + - pos: -7.5,-10.5 + parent: 1 + type: Transform + - uid: 328 + components: + - pos: -7.5,-6.5 + parent: 1 + type: Transform + - uid: 329 + components: + - pos: -8.5,-5.5 + parent: 1 + type: Transform + - uid: 330 + components: + - pos: -9.5,-6.5 + parent: 1 + type: Transform + - uid: 331 + components: + - pos: -8.5,-2.5 + parent: 1 + type: Transform + - uid: 332 + components: + - pos: -9.5,-1.5 + parent: 1 + type: Transform + - uid: 333 + components: + - pos: -9.5,0.5 + parent: 1 + type: Transform + - uid: 334 + components: + - pos: -8.5,1.5 + parent: 1 + type: Transform +- proto: AtmosDeviceFanTiny + entities: + - uid: 335 + components: + - pos: 3.5,6.5 + parent: 1 + type: Transform +- proto: Bed + entities: + - uid: 336 + components: + - pos: -0.5,1.5 + parent: 1 + type: Transform + - uid: 337 + components: + - pos: 6.5,1.5 + parent: 1 + type: Transform + - uid: 338 + components: + - pos: 6.5,3.5 + parent: 1 + type: Transform + - uid: 339 + components: + - pos: -1.5,1.5 + parent: 1 + type: Transform +- proto: BedsheetSyndie + entities: + - uid: 340 + components: + - rot: 3.141592653589793 rad + pos: -0.5,1.5 + parent: 1 + type: Transform + - uid: 341 + components: + - pos: 6.5,1.5 + parent: 1 + type: Transform + - uid: 342 + components: + - pos: 6.5,3.5 + parent: 1 + type: Transform + - uid: 343 + components: + - rot: 3.141592653589793 rad + pos: -1.5,1.5 + parent: 1 + type: Transform +- proto: BlastDoorOpen + entities: + - uid: 344 + components: + - rot: 3.141592653589793 rad + pos: 6.5,-6.5 + parent: 1 + type: Transform + - links: + - 795 + type: DeviceLinkSink + - uid: 345 + components: + - pos: 13.5,0.5 + parent: 1 + type: Transform + - invokeCounter: 4 + links: + - 792 + type: DeviceLinkSink + - uid: 346 + components: + - pos: 13.5,1.5 + parent: 1 + type: Transform + - invokeCounter: 4 + links: + - 792 + type: DeviceLinkSink + - uid: 347 + components: + - pos: 13.5,-0.5 + parent: 1 + type: Transform + - invokeCounter: 4 + links: + - 792 + type: DeviceLinkSink + - uid: 348 + components: + - pos: 13.5,2.5 + parent: 1 + type: Transform + - invokeCounter: 4 + links: + - 792 + type: DeviceLinkSink + - uid: 349 + components: + - rot: 3.141592653589793 rad + pos: 7.5,-6.5 + parent: 1 + type: Transform + - links: + - 795 + type: DeviceLinkSink + - uid: 350 + components: + - rot: 3.141592653589793 rad + pos: 8.5,-6.5 + parent: 1 + type: Transform + - links: + - 795 + type: DeviceLinkSink + - uid: 351 + components: + - rot: 3.141592653589793 rad + pos: 10.5,-5.5 + parent: 1 + type: Transform + - links: + - 795 + type: DeviceLinkSink + - uid: 352 + components: + - rot: 3.141592653589793 rad + pos: 11.5,-5.5 + parent: 1 + type: Transform + - links: + - 795 + type: DeviceLinkSink + - uid: 353 + components: + - rot: 3.141592653589793 rad + pos: 12.5,-5.5 + parent: 1 + type: Transform + - links: + - 795 + type: DeviceLinkSink + - uid: 354 + components: + - rot: 3.141592653589793 rad + pos: 13.5,-5.5 + parent: 1 + type: Transform + - links: + - 795 + type: DeviceLinkSink + - uid: 947 + components: + - pos: 10.5,-1.5 + parent: 1 + type: Transform + - links: + - 792 + type: DeviceLinkSink +- proto: BoozeDispenser + entities: + - uid: 355 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,-3.5 + parent: 1 + type: Transform + - type: Emagged +- proto: BoxHandcuff + entities: + - uid: 357 + components: + - flags: InContainer + type: MetaData + - parent: 356 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: BoxLethalshot + entities: + - uid: 358 + components: + - flags: InContainer + type: MetaData + - parent: 356 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 359 + components: + - flags: InContainer + type: MetaData + - parent: 356 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: BoxShotgunFlare + entities: + - uid: 360 + components: + - flags: InContainer + type: MetaData + - parent: 356 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: BriefcaseBrownFilled + entities: + - uid: 374 + components: + - rot: 6.283185307179586 rad + pos: 4.443831,0.7256815 + parent: 1 + type: Transform + - storageUsed: 44 + type: Storage + - containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: + - 399 + - 400 + - 401 + - 402 + - 403 + - 404 + - 405 + - 406 + - 407 + - 408 + - 409 + - 410 + - 411 + - 412 + - 413 + - 414 + - 415 + - 416 + - 417 + - 418 + - 375 + - 376 + - 377 + - 378 + - 379 + - 380 + - 381 + - 382 + - 383 + - 384 + - 385 + - 386 + - 387 + - 388 + - 389 + - 390 + - 391 + - 392 + - 393 + - 394 + - 395 + - 396 + - 397 + - 398 + type: ContainerContainer +- proto: BriefcaseSyndie + entities: + - uid: 419 + components: + - rot: 6.283185307179586 rad + pos: 4.454247,1.5198011 + parent: 1 + type: Transform + - storageUsed: 39 + type: Storage + - containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: + - 431 + - 420 + - 425 + - 424 + - 421 + - 426 + - 432 + - 430 + - 427 + - 422 + - 429 + - 423 + - 428 + type: ContainerContainer +- proto: CableApcExtension + entities: + - uid: 433 + components: + - pos: 7.5,0.5 + parent: 1 + type: Transform + - uid: 434 + components: + - pos: 8.5,0.5 + parent: 1 + type: Transform + - uid: 435 + components: + - pos: 9.5,0.5 + parent: 1 + type: Transform + - uid: 436 + components: + - pos: 9.5,1.5 + parent: 1 + type: Transform + - uid: 437 + components: + - pos: 9.5,-0.5 + parent: 1 + type: Transform + - uid: 438 + components: + - pos: 2.5,4.5 + parent: 1 + type: Transform + - uid: 439 + components: + - pos: 2.5,3.5 + parent: 1 + type: Transform + - uid: 440 + components: + - pos: 1.5,2.5 + parent: 1 + type: Transform + - uid: 441 + components: + - pos: 1.5,2.5 + parent: 1 + type: Transform + - uid: 442 + components: + - pos: 3.5,2.5 + parent: 1 + type: Transform + - uid: 443 + components: + - pos: 2.5,2.5 + parent: 1 + type: Transform + - uid: 444 + components: + - pos: 3.5,1.5 + parent: 1 + type: Transform + - uid: 445 + components: + - pos: 3.5,0.5 + parent: 1 + type: Transform + - uid: 446 + components: + - pos: 3.5,-5.5 + parent: 1 + type: Transform + - uid: 447 + components: + - pos: 3.5,-4.5 + parent: 1 + type: Transform + - uid: 448 + components: + - pos: 3.5,-3.5 + parent: 1 + type: Transform + - uid: 449 + components: + - pos: -1.5,-3.5 + parent: 1 + type: Transform + - uid: 450 + components: + - pos: 4.5,-3.5 + parent: 1 + type: Transform + - uid: 451 + components: + - pos: 1.5,1.5 + parent: 1 + type: Transform + - uid: 452 + components: + - pos: 1.5,0.5 + parent: 1 + type: Transform + - uid: 453 + components: + - pos: 1.5,-0.5 + parent: 1 + type: Transform + - uid: 454 + components: + - pos: 0.5,-0.5 + parent: 1 + type: Transform + - uid: 455 + components: + - pos: -0.5,-0.5 + parent: 1 + type: Transform + - uid: 456 + components: + - pos: -0.5,0.5 + parent: 1 + type: Transform + - uid: 457 + components: + - pos: -1.5,-2.5 + parent: 1 + type: Transform + - uid: 458 + components: + - pos: -1.5,-0.5 + parent: 1 + type: Transform + - uid: 459 + components: + - pos: -1.5,-1.5 + parent: 1 + type: Transform + - uid: 460 + components: + - pos: 2.5,-5.5 + parent: 1 + type: Transform + - uid: 461 + components: + - pos: 2.5,-6.5 + parent: 1 + type: Transform + - uid: 462 + components: + - pos: 1.5,-6.5 + parent: 1 + type: Transform + - uid: 463 + components: + - pos: 0.5,-6.5 + parent: 1 + type: Transform + - uid: 464 + components: + - pos: -0.5,-6.5 + parent: 1 + type: Transform + - uid: 465 + components: + - pos: 1.5,3.5 + parent: 1 + type: Transform + - uid: 466 + components: + - pos: 0.5,3.5 + parent: 1 + type: Transform + - uid: 467 + components: + - pos: -0.5,3.5 + parent: 1 + type: Transform + - uid: 468 + components: + - pos: -1.5,3.5 + parent: 1 + type: Transform + - uid: 469 + components: + - pos: -1.5,4.5 + parent: 1 + type: Transform + - uid: 470 + components: + - pos: 10.5,-0.5 + parent: 1 + type: Transform + - uid: 471 + components: + - pos: 10.5,-1.5 + parent: 1 + type: Transform + - uid: 472 + components: + - pos: 10.5,-2.5 + parent: 1 + type: Transform + - uid: 473 + components: + - pos: 10.5,-3.5 + parent: 1 + type: Transform + - uid: 474 + components: + - pos: 11.5,-3.5 + parent: 1 + type: Transform + - uid: 475 + components: + - pos: 12.5,-3.5 + parent: 1 + type: Transform + - uid: 476 + components: + - pos: 7.5,-0.5 + parent: 1 + type: Transform + - uid: 477 + components: + - pos: 6.5,-0.5 + parent: 1 + type: Transform + - uid: 478 + components: + - pos: 6.5,-1.5 + parent: 1 + type: Transform + - uid: 479 + components: + - pos: 6.5,-2.5 + parent: 1 + type: Transform + - uid: 480 + components: + - pos: 6.5,-3.5 + parent: 1 + type: Transform + - uid: 481 + components: + - pos: 7.5,-3.5 + parent: 1 + type: Transform + - uid: 482 + components: + - pos: 7.5,-4.5 + parent: 1 + type: Transform + - uid: 483 + components: + - pos: 3.5,3.5 + parent: 1 + type: Transform + - uid: 484 + components: + - pos: 4.5,3.5 + parent: 1 + type: Transform + - uid: 485 + components: + - pos: 5.5,3.5 + parent: 1 + type: Transform +- proto: CableHV + entities: + - uid: 486 + components: + - pos: -0.5,6.5 + parent: 1 + type: Transform + - uid: 487 + components: + - pos: -0.5,5.5 + parent: 1 + type: Transform + - uid: 488 + components: + - pos: 0.5,5.5 + parent: 1 + type: Transform + - uid: 489 + components: + - pos: -1.5,5.5 + parent: 1 + type: Transform + - uid: 490 + components: + - pos: -1.5,6.5 + parent: 1 + type: Transform + - uid: 491 + components: + - pos: -1.5,4.5 + parent: 1 + type: Transform + - uid: 492 + components: + - pos: -1.5,3.5 + parent: 1 + type: Transform + - uid: 493 + components: + - pos: -0.5,3.5 + parent: 1 + type: Transform + - uid: 494 + components: + - pos: -2.5,5.5 + parent: 1 + type: Transform + - uid: 495 + components: + - pos: -2.5,4.5 + parent: 1 + type: Transform + - uid: 496 + components: + - pos: -2.5,3.5 + parent: 1 + type: Transform + - uid: 497 + components: + - pos: -1.5,2.5 + parent: 1 + type: Transform + - uid: 498 + components: + - pos: -0.5,2.5 + parent: 1 + type: Transform +- proto: CableMV + entities: + - uid: 499 + components: + - pos: -1.5,4.5 + parent: 1 + type: Transform + - uid: 500 + components: + - pos: -0.5,5.5 + parent: 1 + type: Transform + - uid: 501 + components: + - pos: 0.5,5.5 + parent: 1 + type: Transform + - uid: 502 + components: + - pos: -1.5,5.5 + parent: 1 + type: Transform + - uid: 503 + components: + - pos: -1.5,3.5 + parent: 1 + type: Transform + - uid: 504 + components: + - pos: -0.5,3.5 + parent: 1 + type: Transform + - uid: 505 + components: + - pos: 1.5,3.5 + parent: 1 + type: Transform + - uid: 506 + components: + - pos: 0.5,3.5 + parent: 1 + type: Transform + - uid: 507 + components: + - pos: 2.5,3.5 + parent: 1 + type: Transform + - uid: 508 + components: + - pos: 2.5,4.5 + parent: 1 + type: Transform + - uid: 509 + components: + - pos: 2.5,2.5 + parent: 1 + type: Transform + - uid: 510 + components: + - pos: 2.5,1.5 + parent: 1 + type: Transform + - uid: 511 + components: + - pos: 2.5,0.5 + parent: 1 + type: Transform + - uid: 512 + components: + - pos: 2.5,-0.5 + parent: 1 + type: Transform + - uid: 513 + components: + - pos: 2.5,-1.5 + parent: 1 + type: Transform + - uid: 514 + components: + - pos: 2.5,-2.5 + parent: 1 + type: Transform + - uid: 515 + components: + - pos: 2.5,-3.5 + parent: 1 + type: Transform + - uid: 516 + components: + - pos: 2.5,-4.5 + parent: 1 + type: Transform + - uid: 517 + components: + - pos: 3.5,-4.5 + parent: 1 + type: Transform + - uid: 518 + components: + - pos: 3.5,-5.5 + parent: 1 + type: Transform + - uid: 519 + components: + - pos: 3.5,-0.5 + parent: 1 + type: Transform + - uid: 520 + components: + - pos: 4.5,-0.5 + parent: 1 + type: Transform + - uid: 521 + components: + - pos: 5.5,-0.5 + parent: 1 + type: Transform + - uid: 522 + components: + - pos: 6.5,-0.5 + parent: 1 + type: Transform + - uid: 523 + components: + - pos: 6.5,-0.5 + parent: 1 + type: Transform + - uid: 524 + components: + - pos: 7.5,-0.5 + parent: 1 + type: Transform + - uid: 525 + components: + - pos: 8.5,-0.5 + parent: 1 + type: Transform + - uid: 526 + components: + - pos: 8.5,0.5 + parent: 1 + type: Transform + - uid: 527 + components: + - pos: 7.5,0.5 + parent: 1 + type: Transform +- proto: ChairOfficeDark + entities: + - uid: 528 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,1.5 + parent: 1 + type: Transform + - uid: 529 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,1.5 + parent: 1 + type: Transform + - uid: 530 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,0.5 + parent: 1 + type: Transform + - uid: 531 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,1.5 + parent: 1 + type: Transform +- proto: ClothingBackpackDuffelSyndicatePyjamaBundle + entities: + - uid: 948 + components: + - rot: -1.5707963267948966 rad + pos: 6.6718016,2.5031838 + parent: 1 + type: Transform +- proto: ClothingEyesBlindfold + entities: + - uid: 361 + components: + - flags: InContainer + type: MetaData + - parent: 356 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 362 + components: + - flags: InContainer + type: MetaData + - parent: 356 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 363 + components: + - flags: InContainer + type: MetaData + - parent: 356 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 364 + components: + - flags: InContainer + type: MetaData + - parent: 356 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: ClothingMaskGasVoiceChameleon + entities: + - uid: 532 + components: + - pos: 8.6825,1.9966505 + parent: 1 + type: Transform +- proto: ClothingMaskMuzzle + entities: + - uid: 365 + components: + - flags: InContainer + type: MetaData + - parent: 356 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 366 + components: + - flags: InContainer + type: MetaData + - parent: 356 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 367 + components: + - flags: InContainer + type: MetaData + - parent: 356 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 368 + components: + - flags: InContainer + type: MetaData + - parent: 356 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: CombatKnife + entities: + - uid: 369 + components: + - flags: InContainer + type: MetaData + - parent: 356 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 370 + components: + - flags: InContainer + type: MetaData + - parent: 356 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: ComfyChair + entities: + - uid: 533 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,-4.5 + parent: 1 + type: Transform + - uid: 534 + components: + - pos: 1.5,2.5 + parent: 1 + type: Transform + - uid: 535 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,-5.5 + parent: 1 + type: Transform + - uid: 536 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,-4.5 + parent: 1 + type: Transform + - uid: 537 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,-5.5 + parent: 1 + type: Transform +- proto: ComputerBroken + entities: + - uid: 538 + components: + - rot: -1.5707963267948966 rad + pos: 12.5,-0.5 + parent: 1 + type: Transform +- proto: ComputerCrewMonitoring + entities: + - uid: 539 + components: + - rot: -1.5707963267948966 rad + pos: 12.5,0.5 + parent: 1 + type: Transform +- proto: ComputerIFFSyndicate + entities: + - uid: 540 + components: + - pos: 9.5,2.5 + parent: 1 + type: Transform +- proto: ComputerShuttleSyndie + entities: + - uid: 541 + components: + - rot: -1.5707963267948966 rad + pos: 12.5,1.5 + parent: 1 + type: Transform +- proto: CrateFoodDonkpocketSavory + entities: + - uid: 542 + components: + - pos: -0.5,-5.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage +- proto: CrowbarRed + entities: + - uid: 371 + components: + - flags: InContainer + type: MetaData + - parent: 356 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: DefibrillatorCabinetFilled + entities: + - uid: 543 + components: + - pos: -0.5,-1.5 + parent: 1 + type: Transform +- proto: DiagnosisReportPaper + entities: + - uid: 545 + components: + - flags: InContainer + type: MetaData + - parent: 544 + type: Transform + - canCollide: False + type: Physics + - uid: 546 + components: + - flags: InContainer + type: MetaData + - parent: 544 + type: Transform + - canCollide: False + type: Physics + - uid: 547 + components: + - flags: InContainer + type: MetaData + - parent: 544 + type: Transform + - canCollide: False + type: Physics + - uid: 548 + components: + - flags: InContainer + type: MetaData + - parent: 544 + type: Transform + - canCollide: False + type: Physics + - uid: 549 + components: + - flags: InContainer + type: MetaData + - parent: 544 + type: Transform + - canCollide: False + type: Physics +- proto: DrinkMugDog + entities: + - uid: 590 + components: + - rot: 6.283185307179586 rad + pos: 1.6752021,1.4137775 + parent: 1 + type: Transform +- proto: DrinkMugHeart + entities: + - uid: 591 + components: + - pos: 1.2883832,1.4021075 + parent: 1 + type: Transform +- proto: DrinkMugOne + entities: + - uid: 592 + components: + - pos: 1.6477582,1.7614824 + parent: 1 + type: Transform +- proto: DrinkMugRainbow + entities: + - uid: 593 + components: + - pos: 1.3040082,1.7302322 + parent: 1 + type: Transform +- proto: EncryptionKeyCargo + entities: + - uid: 595 + components: + - flags: InContainer + type: MetaData + - parent: 594 + type: Transform + - canCollide: False + type: Physics +- proto: EncryptionKeyCommand + entities: + - uid: 596 + components: + - flags: InContainer + type: MetaData + - parent: 594 + type: Transform + - canCollide: False + type: Physics +- proto: EncryptionKeyCommon + entities: + - uid: 597 + components: + - flags: InContainer + type: MetaData + - parent: 594 + type: Transform + - canCollide: False + type: Physics +- proto: EncryptionKeyEngineering + entities: + - uid: 598 + components: + - flags: InContainer + type: MetaData + - parent: 594 + type: Transform + - canCollide: False + type: Physics +- proto: EncryptionKeyMedical + entities: + - uid: 599 + components: + - flags: InContainer + type: MetaData + - parent: 594 + type: Transform + - canCollide: False + type: Physics +- proto: EncryptionKeyScience + entities: + - uid: 600 + components: + - flags: InContainer + type: MetaData + - parent: 594 + type: Transform + - canCollide: False + type: Physics +- proto: EncryptionKeySecurity + entities: + - uid: 601 + components: + - flags: InContainer + type: MetaData + - parent: 594 + type: Transform + - canCollide: False + type: Physics +- proto: EncryptionKeyService + entities: + - uid: 602 + components: + - flags: InContainer + type: MetaData + - parent: 594 + type: Transform + - canCollide: False + type: Physics +- proto: EncryptionKeySyndie + entities: + - uid: 603 + components: + - flags: InContainer + type: MetaData + - parent: 594 + type: Transform + - canCollide: False + type: Physics +- proto: ExtinguisherCabinet + entities: + - uid: 604 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,0.5 + parent: 1 + type: Transform +- proto: FaxMachineSyndie + entities: + - uid: 605 + components: + - pos: 8.5,2.5 + parent: 1 + type: Transform +- proto: filingCabinetDrawer + entities: + - uid: 544 + components: + - pos: 8.5,0.5 + parent: 1 + type: Transform + - storageUsed: 45 + type: Storage + - containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: + - 570 + - 571 + - 572 + - 573 + - 574 + - 575 + - 576 + - 577 + - 578 + - 579 + - 550 + - 551 + - 552 + - 553 + - 554 + - 555 + - 556 + - 557 + - 558 + - 559 + - 545 + - 546 + - 547 + - 548 + - 549 + - 565 + - 566 + - 567 + - 568 + - 569 + - 580 + - 581 + - 582 + - 583 + - 584 + - 585 + - 586 + - 587 + - 588 + - 589 + - 560 + - 561 + - 562 + - 563 + - 564 + type: ContainerContainer +- proto: FireAlarm + entities: + - uid: 606 + components: + - rot: 3.141592653589793 rad + pos: 3.5,-1.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 843 + type: DeviceNetwork + - devices: + - 613 + - 614 + - 607 + - 608 + - 609 + - 618 + - 616 + - 610 + - 612 + - 843 + type: DeviceList +- proto: Firelock + entities: + - uid: 607 + components: + - rot: 3.141592653589793 rad + pos: 5.5,-0.5 + parent: 1 + type: Transform + - uid: 608 + components: + - rot: 3.141592653589793 rad + pos: 7.5,-0.5 + parent: 1 + type: Transform + - uid: 609 + components: + - rot: 3.141592653589793 rad + pos: 6.5,-1.5 + parent: 1 + type: Transform + - uid: 610 + components: + - rot: 3.141592653589793 rad + pos: 5.5,2.5 + parent: 1 + type: Transform + - uid: 611 + components: + - rot: 3.141592653589793 rad + pos: 3.5,4.5 + parent: 1 + type: Transform + - uid: 612 + components: + - rot: 3.141592653589793 rad + pos: 2.5,5.5 + parent: 1 + type: Transform + - uid: 613 + components: + - rot: 3.141592653589793 rad + pos: 0.5,3.5 + parent: 1 + type: Transform + - uid: 614 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-0.5 + parent: 1 + type: Transform + - uid: 615 + components: + - rot: 3.141592653589793 rad + pos: -1.5,-1.5 + parent: 1 + type: Transform + - uid: 616 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-5.5 + parent: 1 + type: Transform + - uid: 618 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-1.5 + parent: 1 + type: Transform + - uid: 843 + components: + - pos: 9.5,-3.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 606 + type: DeviceNetwork +- proto: ForensicReportPaper + entities: + - uid: 550 + components: + - flags: InContainer + type: MetaData + - parent: 544 + type: Transform + - canCollide: False + type: Physics + - uid: 551 + components: + - flags: InContainer + type: MetaData + - parent: 544 + type: Transform + - canCollide: False + type: Physics + - uid: 552 + components: + - flags: InContainer + type: MetaData + - parent: 544 + type: Transform + - canCollide: False + type: Physics + - uid: 553 + components: + - flags: InContainer + type: MetaData + - parent: 544 + type: Transform + - canCollide: False + type: Physics + - uid: 554 + components: + - flags: InContainer + type: MetaData + - parent: 544 + type: Transform + - canCollide: False + type: Physics + - uid: 555 + components: + - flags: InContainer + type: MetaData + - parent: 544 + type: Transform + - canCollide: False + type: Physics + - uid: 556 + components: + - flags: InContainer + type: MetaData + - parent: 544 + type: Transform + - canCollide: False + type: Physics + - uid: 557 + components: + - flags: InContainer + type: MetaData + - parent: 544 + type: Transform + - canCollide: False + type: Physics + - uid: 558 + components: + - flags: InContainer + type: MetaData + - parent: 544 + type: Transform + - canCollide: False + type: Physics + - uid: 559 + components: + - flags: InContainer + type: MetaData + - parent: 544 + type: Transform + - canCollide: False + type: Physics +- proto: GasPassiveVent + entities: + - uid: 619 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,1.5 + parent: 1 + type: Transform + - uid: 620 + components: + - pos: 6.5,6.5 + parent: 1 + type: Transform + - uid: 621 + components: + - pos: 4.5,10.5 + parent: 1 + type: Transform + - uid: 622 + components: + - rot: -1.5707963267948966 rad + pos: 14.5,-0.5 + parent: 1 + type: Transform + - uid: 623 + components: + - rot: 3.141592653589793 rad + pos: 13.5,-6.5 + parent: 1 + type: Transform + - uid: 624 + components: + - rot: 3.141592653589793 rad + pos: 8.5,-7.5 + parent: 1 + type: Transform + - uid: 625 + components: + - rot: 3.141592653589793 rad + pos: 4.5,-10.5 + parent: 1 + type: Transform + - uid: 626 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,-3.5 + parent: 1 + type: Transform + - uid: 627 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,5.5 + parent: 1 + type: Transform +- proto: GasPipeBend + entities: + - uid: 628 + components: + - rot: 3.141592653589793 rad + pos: -3.5,0.5 + parent: 1 + type: Transform + - uid: 629 + components: + - pos: -3.5,1.5 + parent: 1 + type: Transform + - uid: 630 + components: + - pos: 6.5,2.5 + parent: 1 + type: Transform + - uid: 631 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,-0.5 + parent: 1 + type: Transform + - uid: 632 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-6.5 + parent: 1 + type: Transform + - uid: 633 + components: + - rot: 3.141592653589793 rad + pos: 6.5,-3.5 + parent: 1 + type: Transform + - uid: 634 + components: + - pos: 10.5,-0.5 + parent: 1 + type: Transform + - uid: 635 + components: + - rot: 3.141592653589793 rad + pos: 10.5,-3.5 + parent: 1 + type: Transform +- proto: GasPipeFourway + entities: + - uid: 636 + components: + - pos: 2.5,-0.5 + parent: 1 + type: Transform +- proto: GasPipeStraight + entities: + - uid: 637 + components: + - rot: 3.141592653589793 rad + pos: 1.5,4.5 + parent: 1 + type: Transform + - uid: 638 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,3.5 + parent: 1 + type: Transform + - uid: 639 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,1.5 + parent: 1 + type: Transform + - uid: 640 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,0.5 + parent: 1 + type: Transform + - uid: 641 + components: + - pos: 4.5,-7.5 + parent: 1 + type: Transform + - uid: 642 + components: + - pos: 4.5,-8.5 + parent: 1 + type: Transform + - uid: 643 + components: + - pos: 4.5,-9.5 + parent: 1 + type: Transform + - uid: 644 + components: + - pos: 8.5,-6.5 + parent: 1 + type: Transform + - uid: 645 + components: + - pos: 8.5,-5.5 + parent: 1 + type: Transform + - uid: 646 + components: + - pos: 8.5,-4.5 + parent: 1 + type: Transform + - uid: 647 + components: + - pos: 13.5,-4.5 + parent: 1 + type: Transform + - uid: 648 + components: + - pos: 13.5,-5.5 + parent: 1 + type: Transform + - uid: 649 + components: + - rot: -1.5707963267948966 rad + pos: 13.5,-0.5 + parent: 1 + type: Transform + - uid: 650 + components: + - rot: -1.5707963267948966 rad + pos: 12.5,-0.5 + parent: 1 + type: Transform + - uid: 651 + components: + - rot: 3.141592653589793 rad + pos: 6.5,4.5 + parent: 1 + type: Transform + - uid: 652 + components: + - rot: 3.141592653589793 rad + pos: 6.5,5.5 + parent: 1 + type: Transform + - uid: 653 + components: + - rot: 3.141592653589793 rad + pos: 4.5,4.5 + parent: 1 + type: Transform + - uid: 654 + components: + - rot: 3.141592653589793 rad + pos: 4.5,5.5 + parent: 1 + type: Transform + - uid: 655 + components: + - rot: 3.141592653589793 rad + pos: 4.5,6.5 + parent: 1 + type: Transform + - uid: 656 + components: + - rot: 3.141592653589793 rad + pos: 4.5,7.5 + parent: 1 + type: Transform + - uid: 657 + components: + - rot: 3.141592653589793 rad + pos: 4.5,8.5 + parent: 1 + type: Transform + - uid: 658 + components: + - rot: 3.141592653589793 rad + pos: 4.5,9.5 + parent: 1 + type: Transform + - uid: 659 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,-0.5 + parent: 1 + type: Transform + - uid: 660 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,-0.5 + parent: 1 + type: Transform + - uid: 661 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,2.5 + parent: 1 + type: Transform + - uid: 662 + components: + - pos: -1.5,-1.5 + parent: 1 + type: Transform + - uid: 663 + components: + - pos: 2.5,-5.5 + parent: 1 + type: Transform + - uid: 664 + components: + - pos: 2.5,-4.5 + parent: 1 + type: Transform + - uid: 665 + components: + - pos: 2.5,-3.5 + parent: 1 + type: Transform + - uid: 666 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,-3.5 + parent: 1 + type: Transform + - uid: 667 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,-3.5 + parent: 1 + type: Transform + - uid: 668 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,5.5 + parent: 1 + type: Transform + - uid: 669 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,5.5 + parent: 1 + type: Transform + - uid: 670 + components: + - rot: 3.141592653589793 rad + pos: 6.5,-2.5 + parent: 1 + type: Transform + - uid: 671 + components: + - rot: 3.141592653589793 rad + pos: 6.5,-1.5 + parent: 1 + type: Transform + - uid: 672 + components: + - pos: 10.5,-1.5 + parent: 1 + type: Transform + - uid: 673 + components: + - pos: 10.5,-2.5 + parent: 1 + type: Transform + - uid: 674 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,-0.5 + parent: 1 + type: Transform + - uid: 675 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,2.5 + parent: 1 + type: Transform + - uid: 676 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,2.5 + parent: 1 + type: Transform + - uid: 677 + components: + - rot: 3.141592653589793 rad + pos: 2.5,1.5 + parent: 1 + type: Transform + - uid: 678 + components: + - rot: 3.141592653589793 rad + pos: 2.5,0.5 + parent: 1 + type: Transform + - uid: 679 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,-0.5 + parent: 1 + type: Transform + - uid: 680 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,-0.5 + parent: 1 + type: Transform + - uid: 681 + components: + - pos: 2.5,-1.5 + parent: 1 + type: Transform + - uid: 682 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,-0.5 + parent: 1 + type: Transform + - uid: 683 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,-0.5 + parent: 1 + type: Transform +- proto: GasPipeTJunction + entities: + - uid: 684 + components: + - rot: 3.141592653589793 rad + pos: 1.5,3.5 + parent: 1 + type: Transform + - uid: 685 + components: + - pos: 2.5,3.5 + parent: 1 + type: Transform + - uid: 686 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,2.5 + parent: 1 + type: Transform + - uid: 687 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-0.5 + parent: 1 + type: Transform + - uid: 688 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,-2.5 + parent: 1 + type: Transform + - uid: 689 + components: + - pos: 6.5,-0.5 + parent: 1 + type: Transform + - uid: 690 + components: + - rot: 3.141592653589793 rad + pos: 8.5,-0.5 + parent: 1 + type: Transform +- proto: GasPort + entities: + - uid: 691 + components: + - pos: 1.5,5.5 + parent: 1 + type: Transform +- proto: GasVentPump + entities: + - uid: 692 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,3.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 2 + type: DeviceNetwork + - uid: 693 + components: + - pos: -0.5,0.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 2 + type: DeviceNetwork + - uid: 694 + components: + - rot: 3.141592653589793 rad + pos: -1.5,-2.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 2 + type: DeviceNetwork + - uid: 695 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,-2.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 2 + type: DeviceNetwork + - uid: 696 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,-6.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 2 + type: DeviceNetwork + - uid: 697 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,-3.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 2 + type: DeviceNetwork + - uid: 698 + components: + - rot: 3.141592653589793 rad + pos: 6.5,1.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 2 + type: DeviceNetwork + - uid: 699 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,3.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 2 + type: DeviceNetwork + - uid: 700 + components: + - pos: 8.5,0.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 2 + type: DeviceNetwork + - uid: 701 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,-3.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 2 + type: DeviceNetwork + - uid: 702 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,-3.5 + parent: 1 + type: Transform +- proto: GasVentScrubber + entities: + - uid: 703 + components: + - rot: 3.141592653589793 rad + pos: 6.5,3.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 2 + type: DeviceNetwork + - uid: 704 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,5.5 + parent: 1 + type: Transform + - uid: 705 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,0.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 2 + type: DeviceNetwork + - uid: 706 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,-3.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 2 + type: DeviceNetwork + - uid: 707 + components: + - pos: 4.5,-6.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 2 + type: DeviceNetwork + - uid: 708 + components: + - pos: 8.5,-3.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 2 + type: DeviceNetwork + - uid: 709 + components: + - pos: 13.5,-3.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 2 + type: DeviceNetwork + - uid: 710 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,-0.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 2 + type: DeviceNetwork + - uid: 711 + components: + - rot: 3.141592653589793 rad + pos: 4.5,3.5 + parent: 1 + type: Transform +- proto: GeneratorWallmountAPU + entities: + - uid: 712 + components: + - pos: -1.5,6.5 + parent: 1 + type: Transform + - uid: 713 + components: + - pos: -0.5,6.5 + parent: 1 + type: Transform + - uid: 714 + components: + - pos: -2.5,5.5 + parent: 1 + type: Transform + - uid: 715 + components: + - pos: -2.5,4.5 + parent: 1 + type: Transform + - uid: 716 + components: + - pos: -2.5,3.5 + parent: 1 + type: Transform + - uid: 717 + components: + - pos: -1.5,2.5 + parent: 1 + type: Transform + - uid: 718 + components: + - pos: -0.5,2.5 + parent: 1 + type: Transform +- proto: GravityGeneratorMini + entities: + - uid: 719 + components: + - pos: -0.5,5.5 + parent: 1 + type: Transform +- proto: Grille + entities: + - uid: 617 + components: + - pos: 10.5,-1.5 + parent: 1 + type: Transform + - uid: 720 + components: + - rot: 1.5707963267948966 rad + pos: 12.5,-5.5 + parent: 1 + type: Transform + - uid: 721 + components: + - rot: 1.5707963267948966 rad + pos: 13.5,-5.5 + parent: 1 + type: Transform + - uid: 722 + components: + - rot: 1.5707963267948966 rad + pos: 13.5,0.5 + parent: 1 + type: Transform + - uid: 723 + components: + - rot: 1.5707963267948966 rad + pos: 13.5,-0.5 + parent: 1 + type: Transform + - uid: 724 + components: + - rot: 1.5707963267948966 rad + pos: 13.5,1.5 + parent: 1 + type: Transform + - uid: 725 + components: + - rot: 1.5707963267948966 rad + pos: 13.5,2.5 + parent: 1 + type: Transform + - uid: 726 + components: + - rot: 3.141592653589793 rad + pos: 7.5,-6.5 + parent: 1 + type: Transform + - uid: 727 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,-5.5 + parent: 1 + type: Transform + - uid: 728 + components: + - rot: 3.141592653589793 rad + pos: 8.5,-6.5 + parent: 1 + type: Transform + - uid: 729 + components: + - rot: 3.141592653589793 rad + pos: 6.5,-6.5 + parent: 1 + type: Transform + - uid: 730 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,-5.5 + parent: 1 + type: Transform +- proto: HospitalCurtainsOpen + entities: + - uid: 731 + components: + - pos: 6.5,3.5 + parent: 1 + type: Transform + - uid: 732 + components: + - pos: 6.5,1.5 + parent: 1 + type: Transform + - uid: 733 + components: + - pos: -1.5,1.5 + parent: 1 + type: Transform + - uid: 734 + components: + - pos: -0.5,1.5 + parent: 1 + type: Transform +- proto: hydroponicsTray + entities: + - uid: 735 + components: + - pos: 12.5,-4.5 + parent: 1 + type: Transform + - uid: 736 + components: + - pos: 13.5,-4.5 + parent: 1 + type: Transform + - uid: 737 + components: + - pos: 11.5,-4.5 + parent: 1 + type: Transform + - uid: 738 + components: + - pos: 10.5,-4.5 + parent: 1 + type: Transform +- proto: KitchenMicrowave + entities: + - uid: 739 + components: + - pos: 1.5,-2.5 + parent: 1 + type: Transform +- proto: LandMineExplosive + entities: + - uid: 740 + components: + - pos: 12.446557,-9.501101 + parent: 1 + type: Transform + - uid: 741 + components: + - pos: 17.449137,2.529461 + parent: 1 + type: Transform +- proto: LockerSyndicatePersonal + entities: + - uid: 356 + components: + - pos: -1.5,-5.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.8977377 + - 7.139109 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 373 + - 369 + - 358 + - 360 + - 359 + - 372 + - 357 + - 365 + - 364 + - 371 + - 361 + - 362 + - 366 + - 363 + - 367 + - 368 + - 370 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer +- proto: MedkitCombatFilled + entities: + - uid: 742 + components: + - pos: -0.28039455,-3.70372 + parent: 1 + type: Transform +- proto: MedkitFilled + entities: + - uid: 743 + components: + - pos: -0.57726955,-3.500595 + parent: 1 + type: Transform +- proto: NukeDiskFake + entities: + - uid: 744 + components: + - pos: 16.778532,-0.7526432 + parent: 1 + type: Transform +- proto: Paper + entities: + - uid: 375 + components: + - flags: InContainer + type: MetaData + - parent: 374 + type: Transform + - canCollide: False + type: Physics + - uid: 376 + components: + - flags: InContainer + type: MetaData + - parent: 374 + type: Transform + - canCollide: False + type: Physics + - uid: 377 + components: + - flags: InContainer + type: MetaData + - parent: 374 + type: Transform + - canCollide: False + type: Physics + - uid: 378 + components: + - flags: InContainer + type: MetaData + - parent: 374 + type: Transform + - canCollide: False + type: Physics + - uid: 379 + components: + - flags: InContainer + type: MetaData + - parent: 374 + type: Transform + - canCollide: False + type: Physics + - uid: 380 + components: + - flags: InContainer + type: MetaData + - parent: 374 + type: Transform + - canCollide: False + type: Physics + - uid: 381 + components: + - flags: InContainer + type: MetaData + - parent: 374 + type: Transform + - canCollide: False + type: Physics + - uid: 382 + components: + - flags: InContainer + type: MetaData + - parent: 374 + type: Transform + - canCollide: False + type: Physics + - uid: 383 + components: + - flags: InContainer + type: MetaData + - parent: 374 + type: Transform + - canCollide: False + type: Physics + - uid: 384 + components: + - flags: InContainer + type: MetaData + - parent: 374 + type: Transform + - canCollide: False + type: Physics + - uid: 385 + components: + - flags: InContainer + type: MetaData + - parent: 374 + type: Transform + - canCollide: False + type: Physics + - uid: 386 + components: + - flags: InContainer + type: MetaData + - parent: 374 + type: Transform + - canCollide: False + type: Physics + - uid: 387 + components: + - flags: InContainer + type: MetaData + - parent: 374 + type: Transform + - canCollide: False + type: Physics + - uid: 388 + components: + - flags: InContainer + type: MetaData + - parent: 374 + type: Transform + - canCollide: False + type: Physics + - uid: 389 + components: + - flags: InContainer + type: MetaData + - parent: 374 + type: Transform + - canCollide: False + type: Physics + - uid: 390 + components: + - flags: InContainer + type: MetaData + - parent: 374 + type: Transform + - canCollide: False + type: Physics + - uid: 391 + components: + - flags: InContainer + type: MetaData + - parent: 374 + type: Transform + - canCollide: False + type: Physics + - uid: 392 + components: + - flags: InContainer + type: MetaData + - parent: 374 + type: Transform + - canCollide: False + type: Physics + - uid: 393 + components: + - flags: InContainer + type: MetaData + - parent: 374 + type: Transform + - canCollide: False + type: Physics + - uid: 394 + components: + - flags: InContainer + type: MetaData + - parent: 374 + type: Transform + - canCollide: False + type: Physics + - uid: 395 + components: + - flags: InContainer + type: MetaData + - parent: 374 + type: Transform + - canCollide: False + type: Physics + - uid: 396 + components: + - flags: InContainer + type: MetaData + - parent: 374 + type: Transform + - canCollide: False + type: Physics + - uid: 397 + components: + - flags: InContainer + type: MetaData + - parent: 374 + type: Transform + - canCollide: False + type: Physics + - uid: 398 + components: + - flags: InContainer + type: MetaData + - parent: 374 + type: Transform + - canCollide: False + type: Physics +- proto: PaperArtifactAnalyzer + entities: + - uid: 560 + components: + - flags: InContainer + type: MetaData + - parent: 544 + type: Transform + - canCollide: False + type: Physics + - uid: 561 + components: + - flags: InContainer + type: MetaData + - parent: 544 + type: Transform + - canCollide: False + type: Physics + - uid: 562 + components: + - flags: InContainer + type: MetaData + - parent: 544 + type: Transform + - canCollide: False + type: Physics + - uid: 563 + components: + - flags: InContainer + type: MetaData + - parent: 544 + type: Transform + - canCollide: False + type: Physics + - uid: 564 + components: + - flags: InContainer + type: MetaData + - parent: 544 + type: Transform + - canCollide: False + type: Physics +- proto: PaperBin10 + entities: + - uid: 745 + components: + - pos: 7.5,-5.5 + parent: 1 + type: Transform +- proto: PaperCaptainsThoughts + entities: + - uid: 565 + components: + - flags: InContainer + type: MetaData + - parent: 544 + type: Transform + - canCollide: False + type: Physics + - uid: 566 + components: + - flags: InContainer + type: MetaData + - parent: 544 + type: Transform + - canCollide: False + type: Physics + - uid: 567 + components: + - flags: InContainer + type: MetaData + - parent: 544 + type: Transform + - canCollide: False + type: Physics + - uid: 568 + components: + - flags: InContainer + type: MetaData + - parent: 544 + type: Transform + - canCollide: False + type: Physics + - uid: 569 + components: + - flags: InContainer + type: MetaData + - parent: 544 + type: Transform + - canCollide: False + type: Physics +- proto: PaperCargoBountyManifest + entities: + - uid: 570 + components: + - flags: InContainer + type: MetaData + - parent: 544 + type: Transform + - canCollide: False + type: Physics + - uid: 571 + components: + - flags: InContainer + type: MetaData + - parent: 544 + type: Transform + - canCollide: False + type: Physics + - uid: 572 + components: + - flags: InContainer + type: MetaData + - parent: 544 + type: Transform + - canCollide: False + type: Physics + - uid: 573 + components: + - flags: InContainer + type: MetaData + - parent: 544 + type: Transform + - canCollide: False + type: Physics + - uid: 574 + components: + - flags: InContainer + type: MetaData + - parent: 544 + type: Transform + - canCollide: False + type: Physics + - uid: 575 + components: + - flags: InContainer + type: MetaData + - parent: 544 + type: Transform + - canCollide: False + type: Physics + - uid: 576 + components: + - flags: InContainer + type: MetaData + - parent: 544 + type: Transform + - canCollide: False + type: Physics + - uid: 577 + components: + - flags: InContainer + type: MetaData + - parent: 544 + type: Transform + - canCollide: False + type: Physics + - uid: 578 + components: + - flags: InContainer + type: MetaData + - parent: 544 + type: Transform + - canCollide: False + type: Physics + - uid: 579 + components: + - flags: InContainer + type: MetaData + - parent: 544 + type: Transform + - canCollide: False + type: Physics +- proto: PaperCargoInvoice + entities: + - uid: 580 + components: + - flags: InContainer + type: MetaData + - parent: 544 + type: Transform + - canCollide: False + type: Physics + - uid: 581 + components: + - flags: InContainer + type: MetaData + - parent: 544 + type: Transform + - canCollide: False + type: Physics + - uid: 582 + components: + - flags: InContainer + type: MetaData + - parent: 544 + type: Transform + - canCollide: False + type: Physics + - uid: 583 + components: + - flags: InContainer + type: MetaData + - parent: 544 + type: Transform + - canCollide: False + type: Physics + - uid: 584 + components: + - flags: InContainer + type: MetaData + - parent: 544 + type: Transform + - canCollide: False + type: Physics + - uid: 585 + components: + - flags: InContainer + type: MetaData + - parent: 544 + type: Transform + - canCollide: False + type: Physics + - uid: 586 + components: + - flags: InContainer + type: MetaData + - parent: 544 + type: Transform + - canCollide: False + type: Physics + - uid: 587 + components: + - flags: InContainer + type: MetaData + - parent: 544 + type: Transform + - canCollide: False + type: Physics + - uid: 588 + components: + - flags: InContainer + type: MetaData + - parent: 544 + type: Transform + - canCollide: False + type: Physics + - uid: 589 + components: + - flags: InContainer + type: MetaData + - parent: 544 + type: Transform + - canCollide: False + type: Physics +- proto: PaperOffice + entities: + - uid: 399 + components: + - flags: InContainer + type: MetaData + - parent: 374 + type: Transform + - canCollide: False + type: Physics + - uid: 400 + components: + - flags: InContainer + type: MetaData + - parent: 374 + type: Transform + - canCollide: False + type: Physics + - uid: 401 + components: + - flags: InContainer + type: MetaData + - parent: 374 + type: Transform + - canCollide: False + type: Physics + - uid: 402 + components: + - flags: InContainer + type: MetaData + - parent: 374 + type: Transform + - canCollide: False + type: Physics + - uid: 403 + components: + - flags: InContainer + type: MetaData + - parent: 374 + type: Transform + - canCollide: False + type: Physics + - uid: 404 + components: + - flags: InContainer + type: MetaData + - parent: 374 + type: Transform + - canCollide: False + type: Physics + - uid: 405 + components: + - flags: InContainer + type: MetaData + - parent: 374 + type: Transform + - canCollide: False + type: Physics + - uid: 406 + components: + - flags: InContainer + type: MetaData + - parent: 374 + type: Transform + - canCollide: False + type: Physics + - uid: 407 + components: + - flags: InContainer + type: MetaData + - parent: 374 + type: Transform + - canCollide: False + type: Physics + - uid: 408 + components: + - flags: InContainer + type: MetaData + - parent: 374 + type: Transform + - canCollide: False + type: Physics + - uid: 409 + components: + - flags: InContainer + type: MetaData + - parent: 374 + type: Transform + - canCollide: False + type: Physics + - uid: 410 + components: + - flags: InContainer + type: MetaData + - parent: 374 + type: Transform + - canCollide: False + type: Physics + - uid: 411 + components: + - flags: InContainer + type: MetaData + - parent: 374 + type: Transform + - canCollide: False + type: Physics + - uid: 412 + components: + - flags: InContainer + type: MetaData + - parent: 374 + type: Transform + - canCollide: False + type: Physics + - uid: 413 + components: + - flags: InContainer + type: MetaData + - parent: 374 + type: Transform + - canCollide: False + type: Physics + - uid: 414 + components: + - flags: InContainer + type: MetaData + - parent: 374 + type: Transform + - canCollide: False + type: Physics + - uid: 415 + components: + - flags: InContainer + type: MetaData + - parent: 374 + type: Transform + - canCollide: False + type: Physics + - uid: 416 + components: + - flags: InContainer + type: MetaData + - parent: 374 + type: Transform + - canCollide: False + type: Physics + - uid: 417 + components: + - flags: InContainer + type: MetaData + - parent: 374 + type: Transform + - canCollide: False + type: Physics + - uid: 418 + components: + - flags: InContainer + type: MetaData + - parent: 374 + type: Transform + - canCollide: False + type: Physics +- proto: PlushieNuke + entities: + - uid: 746 + components: + - pos: 6.565984,3.4567177 + parent: 1 + type: Transform + - uid: 747 + components: + - pos: 16.527655,-0.5029521 + parent: 1 + type: Transform +- proto: PlushieRouny + entities: + - uid: 748 + components: + - pos: 6.487859,1.4254675 + parent: 1 + type: Transform +- proto: PosterContrabandDonk + entities: + - uid: 749 + components: + - pos: 1.5,-1.5 + parent: 1 + type: Transform +- proto: PosterContrabandSyndicateRecruitment + entities: + - uid: 750 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,6.5 + parent: 1 + type: Transform +- proto: PosterLegitHotDonkExplosion + entities: + - uid: 751 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,-4.5 + parent: 1 + type: Transform +- proto: PowerCellRecharger + entities: + - uid: 752 + components: + - pos: 8.5,1.5 + parent: 1 + type: Transform +- proto: PoweredLightColoredRed + entities: + - uid: 753 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,-0.5 + parent: 1 + type: Transform + - type: Timer + - uid: 754 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,4.5 + parent: 1 + type: Transform + - uid: 755 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,2.5 + parent: 1 + type: Transform + - type: Timer + - uid: 756 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,-3.5 + parent: 1 + type: Transform + - uid: 757 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,0.5 + parent: 1 + type: Transform + - type: Timer + - uid: 758 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,0.5 + parent: 1 + type: Transform + - uid: 759 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,-6.5 + parent: 1 + type: Transform +- proto: PoweredSmallLightMaintenanceRed + entities: + - uid: 760 + components: + - rot: 3.141592653589793 rad + pos: -1.5,-7.5 + parent: 1 + type: Transform + - uid: 761 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-7.5 + parent: 1 + type: Transform + - uid: 762 + components: + - rot: 3.141592653589793 rad + pos: 4.5,-7.5 + parent: 1 + type: Transform + - uid: 763 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-7.5 + parent: 1 + type: Transform +- proto: Rack + entities: + - uid: 764 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,5.5 + parent: 1 + type: Transform + - uid: 765 + components: + - rot: 3.141592653589793 rad + pos: 4.5,5.5 + parent: 1 + type: Transform + - uid: 766 + components: + - pos: -0.5,-3.5 + parent: 1 + type: Transform +- proto: RandomArcade + entities: + - uid: 767 + components: + - pos: 7.5,-2.5 + parent: 1 + type: Transform +- proto: RandomPosterContraband + entities: + - uid: 768 + components: + - pos: 9.5,3.5 + parent: 1 + type: Transform + - uid: 769 + components: + - rot: 3.141592653589793 rad + pos: 0.5,0.5 + parent: 1 + type: Transform + - uid: 770 + components: + - pos: 5.5,0.5 + parent: 1 + type: Transform + - uid: 771 + components: + - pos: 11.5,3.5 + parent: 1 + type: Transform + - uid: 772 + components: + - pos: -1.5,-4.5 + parent: 1 + type: Transform + - uid: 773 + components: + - pos: 14.5,-3.5 + parent: 1 + type: Transform + - uid: 774 + components: + - pos: 5.5,-3.5 + parent: 1 + type: Transform +- proto: RandomVendingDrinks + entities: + - uid: 775 + components: + - pos: 4.5,-2.5 + parent: 1 + type: Transform + - type: Emagged +- proto: RandomVendingSnacks + entities: + - uid: 776 + components: + - pos: 4.5,-3.5 + parent: 1 + type: Transform + - type: Emagged +- proto: ReinforcedPlasmaWindow + entities: + - uid: 7 + components: + - pos: 10.5,-1.5 + parent: 1 + type: Transform + - uid: 777 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,-5.5 + parent: 1 + type: Transform + - uid: 778 + components: + - rot: 1.5707963267948966 rad + pos: 12.5,-5.5 + parent: 1 + type: Transform + - uid: 779 + components: + - pos: 13.5,-0.5 + parent: 1 + type: Transform + - uid: 780 + components: + - pos: 13.5,0.5 + parent: 1 + type: Transform + - uid: 781 + components: + - pos: 13.5,2.5 + parent: 1 + type: Transform + - uid: 782 + components: + - pos: 13.5,1.5 + parent: 1 + type: Transform + - uid: 783 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,-5.5 + parent: 1 + type: Transform + - uid: 784 + components: + - rot: 1.5707963267948966 rad + pos: 13.5,-5.5 + parent: 1 + type: Transform + - uid: 785 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,-6.5 + parent: 1 + type: Transform + - uid: 786 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,-6.5 + parent: 1 + type: Transform + - uid: 787 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,-6.5 + parent: 1 + type: Transform +- proto: RubberStampCaptain + entities: + - uid: 420 + components: + - flags: InContainer + type: MetaData + - parent: 419 + type: Transform + - canCollide: False + type: Physics +- proto: RubberStampCE + entities: + - uid: 421 + components: + - flags: InContainer + type: MetaData + - parent: 419 + type: Transform + - canCollide: False + type: Physics +- proto: RubberStampChaplain + entities: + - uid: 422 + components: + - flags: InContainer + type: MetaData + - parent: 419 + type: Transform + - canCollide: False + type: Physics +- proto: RubberStampClown + entities: + - uid: 423 + components: + - flags: InContainer + type: MetaData + - parent: 419 + type: Transform + - canCollide: False + type: Physics +- proto: RubberStampCMO + entities: + - uid: 424 + components: + - flags: InContainer + type: MetaData + - parent: 419 + type: Transform + - canCollide: False + type: Physics +- proto: RubberStampHop + entities: + - uid: 425 + components: + - flags: InContainer + type: MetaData + - parent: 419 + type: Transform + - canCollide: False + type: Physics +- proto: RubberStampHos + entities: + - uid: 426 + components: + - flags: InContainer + type: MetaData + - parent: 419 + type: Transform + - canCollide: False + type: Physics +- proto: RubberStampMantis + entities: + - uid: 427 + components: + - flags: InContainer + type: MetaData + - parent: 419 + type: Transform + - canCollide: False + type: Physics +- proto: RubberStampMime + entities: + - uid: 428 + components: + - flags: InContainer + type: MetaData + - parent: 419 + type: Transform + - canCollide: False + type: Physics +- proto: RubberStampQm + entities: + - uid: 429 + components: + - flags: InContainer + type: MetaData + - parent: 419 + type: Transform + - canCollide: False + type: Physics +- proto: RubberStampRd + entities: + - uid: 430 + components: + - flags: InContainer + type: MetaData + - parent: 419 + type: Transform + - canCollide: False + type: Physics +- proto: RubberStampSyndicate + entities: + - uid: 431 + components: + - flags: InContainer + type: MetaData + - parent: 419 + type: Transform + - canCollide: False + type: Physics +- proto: RubberStampWarden + entities: + - uid: 432 + components: + - flags: InContainer + type: MetaData + - parent: 419 + type: Transform + - canCollide: False + type: Physics +- proto: SalvageLorePaperGamingSpawner + entities: + - uid: 788 + components: + - pos: 12.5,-9.5 + parent: 1 + type: Transform +- proto: SheetPlasteel + entities: + - uid: 789 + components: + - pos: -1.4864182,5.563302 + parent: 1 + type: Transform +- proto: SheetRPGlass + entities: + - uid: 790 + components: + - pos: -1.2364185,5.563302 + parent: 1 + type: Transform +- proto: SheetSteel + entities: + - uid: 791 + components: + - pos: -1.6895431,5.500802 + parent: 1 + type: Transform +- proto: SignalButton + entities: + - uid: 792 + components: + - name: bridge blast doors button + type: MetaData + - rot: 3.141592653589793 rad + pos: 11.5,-1.5 + parent: 1 + type: Transform + - linkedPorts: + 348: + - Pressed: Toggle + 346: + - Pressed: Toggle + 345: + - Pressed: Toggle + 347: + - Pressed: Toggle + 947: + - Pressed: Toggle + type: DeviceLinkSource + - type: ItemCooldown + - uid: 793 + components: + - desc: A note taped to it reads, "Be sure to keep it bolted, else those crazy guards might try to drink vacuum" + name: external bolts button + type: MetaData + - pos: 4.5,4.5 + parent: 1 + type: Transform + - linkedPorts: + 4: + - Pressed: DoorBolt + type: DeviceLinkSource + - uid: 795 + components: + - name: rec room blast shields button + type: MetaData + - rot: 1.5707963267948966 rad + pos: 5.5,-2.5 + parent: 1 + type: Transform + - linkedPorts: + 344: + - Pressed: Toggle + 349: + - Pressed: Toggle + 350: + - Pressed: Toggle + 351: + - Pressed: Toggle + 352: + - Pressed: Toggle + 353: + - Pressed: Toggle + 354: + - Pressed: Toggle + type: DeviceLinkSource +- proto: SinkStemlessWater + entities: + - uid: 796 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,-3.5 + parent: 1 + type: Transform +- proto: SoapSyndie + entities: + - uid: 797 + components: + - rot: 6.283185307179586 rad + pos: -1.5109272,-2.2405348 + parent: 1 + type: Transform +- proto: soda_dispenser + entities: + - uid: 798 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,-4.5 + parent: 1 + type: Transform + - type: Emagged +- proto: SpawnMobRadioGuard + entities: + - uid: 799 + components: + - pos: 9.5,-0.5 + parent: 1 + type: Transform + - uid: 800 + components: + - pos: 2.5,2.5 + parent: 1 + type: Transform +- proto: SpawnPointGhostSyndicateListener + entities: + - uid: 801 + components: + - pos: -0.5,1.5 + parent: 1 + type: Transform + - uid: 802 + components: + - pos: -1.5,1.5 + parent: 1 + type: Transform +- proto: StationMapBroken + entities: + - uid: 803 + components: + - pos: 1.5,4.5 + parent: 1 + type: Transform +- proto: SubstationWallBasic + entities: + - uid: 804 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,5.5 + parent: 1 + type: Transform +- proto: SuitStorageEVASyndicate + entities: + - uid: 805 + components: + - pos: 4.5,-7.5 + parent: 1 + type: Transform + - uid: 806 + components: + - pos: 0.5,-7.5 + parent: 1 + type: Transform + - uid: 807 + components: + - pos: 2.5,-7.5 + parent: 1 + type: Transform + - uid: 808 + components: + - pos: -1.5,-7.5 + parent: 1 + type: Transform +- proto: SyndicateMonitoringServer + entities: + - uid: 809 + components: + - pos: 11.5,2.5 + parent: 1 + type: Transform +- proto: TableCarpet + entities: + - uid: 810 + components: + - pos: 7.5,-5.5 + parent: 1 + type: Transform + - uid: 811 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,1.5 + parent: 1 + type: Transform + - uid: 812 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,-4.5 + parent: 1 + type: Transform +- proto: TableGlass + entities: + - uid: 813 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,-2.5 + parent: 1 + type: Transform + - uid: 814 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,-3.5 + parent: 1 + type: Transform + - uid: 815 + components: + - pos: 1.5,-4.5 + parent: 1 + type: Transform +- proto: TablePlasmaGlass + entities: + - uid: 816 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,0.5 + parent: 1 + type: Transform + - uid: 817 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,1.5 + parent: 1 + type: Transform +- proto: TableReinforced + entities: + - uid: 818 + components: + - pos: 8.5,2.5 + parent: 1 + type: Transform + - uid: 819 + components: + - pos: 8.5,1.5 + parent: 1 + type: Transform + - uid: 820 + components: + - rot: 1.5707963267948966 rad + pos: 12.5,2.5 + parent: 1 + type: Transform +- proto: TelecomServerFilled + entities: + - uid: 594 + components: + - pos: 10.5,2.5 + parent: 1 + type: Transform + - containers: + key_slots: !type:Container + showEnts: False + occludes: True + ents: + - 602 + - 601 + - 599 + - 595 + - 600 + - 598 + - 597 + - 596 + - 603 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + type: ContainerContainer +- proto: ToiletEmpty + entities: + - uid: 821 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,-2.5 + parent: 1 + type: Transform +- proto: ToolboxSyndicateFilled + entities: + - uid: 822 + components: + - pos: 4.5174317,5.701203 + parent: 1 + type: Transform + - uid: 823 + components: + - pos: 4.5330567,5.310578 + parent: 1 + type: Transform +- proto: ToyFigurineNukie + entities: + - uid: 824 + components: + - pos: 12.208444,2.8347092 + parent: 1 + type: Transform +- proto: ToyFigurineNukieCommander + entities: + - uid: 825 + components: + - pos: 12.791773,2.838885 + parent: 1 + type: Transform +- proto: ToyFigurineNukieElite + entities: + - uid: 826 + components: + - pos: 12.489692,2.4701266 + parent: 1 + type: Transform +- proto: ToyNuke + entities: + - uid: 827 + components: + - pos: 16.198624,-0.765656 + parent: 1 + type: Transform +- proto: VendingMachineBooze + entities: + - uid: 828 + components: + - pos: 4.5,-4.5 + parent: 1 + type: Transform + - type: Emagged +- proto: VendingMachineGames + entities: + - uid: 829 + components: + - pos: 8.5,-2.5 + parent: 1 + type: Transform + - type: Emagged +- proto: VendingMachineNutri + entities: + - uid: 830 + components: + - pos: 12.5,-2.5 + parent: 1 + type: Transform + - type: Emagged +- proto: VendingMachineSeedsUnlocked + entities: + - uid: 831 + components: + - pos: 11.5,-2.5 + parent: 1 + type: Transform + - type: Emagged +- proto: VendingMachineSyndieDrobe + entities: + - uid: 832 + components: + - pos: -2.5,0.5 + parent: 1 + type: Transform + - type: Emagged +- proto: VendingMachineTankDispenserEVA + entities: + - uid: 833 + components: + - pos: -1.5,3.5 + parent: 1 + type: Transform +- proto: WallPlastitanium + entities: + - uid: 834 + components: + - pos: -0.5,-1.5 + parent: 1 + type: Transform + - uid: 835 + components: + - pos: -2.5,6.5 + parent: 1 + type: Transform + - uid: 836 + components: + - pos: 3.5,-1.5 + parent: 1 + type: Transform + - uid: 837 + components: + - rot: 1.5707963267948966 rad + pos: 14.5,-2.5 + parent: 1 + type: Transform + - uid: 838 + components: + - rot: 1.5707963267948966 rad + pos: 14.5,-1.5 + parent: 1 + type: Transform + - uid: 839 + components: + - pos: 8.5,-1.5 + parent: 1 + type: Transform + - uid: 840 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,1.5 + parent: 1 + type: Transform + - uid: 841 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,0.5 + parent: 1 + type: Transform + - uid: 842 + components: + - pos: 5.5,5.5 + parent: 1 + type: Transform + - uid: 844 + components: + - pos: -1.5,-4.5 + parent: 1 + type: Transform + - uid: 845 + components: + - pos: -2.5,-5.5 + parent: 1 + type: Transform + - uid: 846 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,6.5 + parent: 1 + type: Transform + - uid: 847 + components: + - pos: -0.5,6.5 + parent: 1 + type: Transform + - uid: 848 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,6.5 + parent: 1 + type: Transform + - uid: 849 + components: + - pos: 5.5,-4.5 + parent: 1 + type: Transform + - uid: 850 + components: + - pos: 9.5,-1.5 + parent: 1 + type: Transform + - uid: 851 + components: + - pos: 11.5,-1.5 + parent: 1 + type: Transform + - uid: 852 + components: + - pos: 12.5,-1.5 + parent: 1 + type: Transform + - uid: 853 + components: + - pos: 5.5,-3.5 + parent: 1 + type: Transform + - uid: 854 + components: + - pos: 5.5,-2.5 + parent: 1 + type: Transform + - uid: 855 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,-7.5 + parent: 1 + type: Transform + - uid: 856 + components: + - pos: 7.5,-1.5 + parent: 1 + type: Transform + - uid: 857 + components: + - pos: 13.5,-1.5 + parent: 1 + type: Transform + - uid: 858 + components: + - pos: 13.5,3.5 + parent: 1 + type: Transform + - uid: 859 + components: + - pos: 3.5,-5.5 + parent: 1 + type: Transform + - uid: 860 + components: + - pos: 4.5,-5.5 + parent: 1 + type: Transform + - uid: 861 + components: + - pos: -2.5,4.5 + parent: 1 + type: Transform + - uid: 862 + components: + - pos: 5.5,-5.5 + parent: 1 + type: Transform + - uid: 863 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,-6.5 + parent: 1 + type: Transform + - uid: 864 + components: + - pos: 3.5,-7.5 + parent: 1 + type: Transform + - uid: 865 + components: + - pos: 1.5,-5.5 + parent: 1 + type: Transform + - uid: 866 + components: + - pos: 0.5,-5.5 + parent: 1 + type: Transform + - uid: 867 + components: + - pos: 0.5,-4.5 + parent: 1 + type: Transform + - uid: 868 + components: + - pos: 12.5,3.5 + parent: 1 + type: Transform + - uid: 869 + components: + - pos: -2.5,-4.5 + parent: 1 + type: Transform + - uid: 870 + components: + - pos: -2.5,-2.5 + parent: 1 + type: Transform + - uid: 871 + components: + - pos: -2.5,-8.5 + parent: 1 + type: Transform + - uid: 872 + components: + - pos: -0.5,-7.5 + parent: 1 + type: Transform + - uid: 873 + components: + - pos: -2.5,-6.5 + parent: 1 + type: Transform + - uid: 874 + components: + - pos: -0.5,-4.5 + parent: 1 + type: Transform + - uid: 875 + components: + - pos: 0.5,0.5 + parent: 1 + type: Transform + - uid: 876 + components: + - pos: 0.5,1.5 + parent: 1 + type: Transform + - uid: 877 + components: + - pos: -1.5,2.5 + parent: 1 + type: Transform + - uid: 878 + components: + - pos: 7.5,4.5 + parent: 1 + type: Transform + - uid: 879 + components: + - pos: 0.5,5.5 + parent: 1 + type: Transform + - uid: 880 + components: + - pos: -2.5,2.5 + parent: 1 + type: Transform + - uid: 881 + components: + - pos: -2.5,3.5 + parent: 1 + type: Transform + - uid: 882 + components: + - pos: -2.5,5.5 + parent: 1 + type: Transform + - uid: 883 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,4.5 + parent: 1 + type: Transform + - uid: 884 + components: + - pos: -1.5,-8.5 + parent: 1 + type: Transform + - uid: 885 + components: + - pos: -2.5,-1.5 + parent: 1 + type: Transform + - uid: 886 + components: + - pos: 1.5,-1.5 + parent: 1 + type: Transform + - uid: 887 + components: + - pos: 0.5,-1.5 + parent: 1 + type: Transform + - uid: 888 + components: + - pos: 0.5,-3.5 + parent: 1 + type: Transform + - uid: 889 + components: + - pos: -2.5,-3.5 + parent: 1 + type: Transform + - uid: 890 + components: + - pos: 0.5,-2.5 + parent: 1 + type: Transform + - uid: 891 + components: + - pos: 11.5,3.5 + parent: 1 + type: Transform + - uid: 892 + components: + - pos: 10.5,3.5 + parent: 1 + type: Transform + - uid: 893 + components: + - pos: 9.5,3.5 + parent: 1 + type: Transform + - uid: 894 + components: + - pos: 5.5,-1.5 + parent: 1 + type: Transform + - uid: 895 + components: + - pos: 4.5,-1.5 + parent: 1 + type: Transform + - uid: 896 + components: + - pos: 7.5,2.5 + parent: 1 + type: Transform + - uid: 897 + components: + - pos: 7.5,1.5 + parent: 1 + type: Transform + - uid: 898 + components: + - pos: 7.5,0.5 + parent: 1 + type: Transform + - uid: 899 + components: + - pos: 7.5,3.5 + parent: 1 + type: Transform + - uid: 900 + components: + - pos: 8.5,3.5 + parent: 1 + type: Transform + - uid: 901 + components: + - pos: 5.5,0.5 + parent: 1 + type: Transform + - uid: 902 + components: + - pos: 6.5,0.5 + parent: 1 + type: Transform + - uid: 903 + components: + - pos: -2.5,-7.5 + parent: 1 + type: Transform + - uid: 904 + components: + - pos: -0.5,-8.5 + parent: 1 + type: Transform + - uid: 905 + components: + - pos: 1.5,-7.5 + parent: 1 + type: Transform + - uid: 906 + components: + - pos: -2.5,-0.5 + parent: 1 + type: Transform + - uid: 907 + components: + - pos: 1.5,-8.5 + parent: 1 + type: Transform + - uid: 908 + components: + - pos: 0.5,2.5 + parent: 1 + type: Transform + - uid: 909 + components: + - pos: -0.5,2.5 + parent: 1 + type: Transform + - uid: 910 + components: + - pos: -2.5,1.5 + parent: 1 + type: Transform + - uid: 911 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,4.5 + parent: 1 + type: Transform + - uid: 912 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,4.5 + parent: 1 + type: Transform + - uid: 913 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,1.5 + parent: 1 + type: Transform + - uid: 914 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,4.5 + parent: 1 + type: Transform + - uid: 915 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,3.5 + parent: 1 + type: Transform + - uid: 916 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,4.5 + parent: 1 + type: Transform + - uid: 917 + components: + - pos: -1.5,6.5 + parent: 1 + type: Transform + - uid: 918 + components: + - pos: 0.5,6.5 + parent: 1 + type: Transform + - uid: 919 + components: + - pos: 0.5,-8.5 + parent: 1 + type: Transform + - uid: 920 + components: + - pos: 6.5,4.5 + parent: 1 + type: Transform + - uid: 921 + components: + - pos: 2.5,-8.5 + parent: 1 + type: Transform + - uid: 922 + components: + - pos: 4.5,-8.5 + parent: 1 + type: Transform + - uid: 923 + components: + - pos: 3.5,-8.5 + parent: 1 + type: Transform + - uid: 924 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,-6.5 + parent: 1 + type: Transform + - uid: 925 + components: + - pos: 9.5,-4.5 + parent: 1 + type: Transform + - uid: 926 + components: + - pos: 5.5,6.5 + parent: 1 + type: Transform + - uid: 927 + components: + - pos: 9.5,-2.5 + parent: 1 + type: Transform + - uid: 928 + components: + - pos: 1.5,6.5 + parent: 1 + type: Transform + - uid: 929 + components: + - pos: 5.5,-8.5 + parent: 1 + type: Transform + - uid: 930 + components: + - rot: 1.5707963267948966 rad + pos: 14.5,-3.5 + parent: 1 + type: Transform + - uid: 931 + components: + - rot: 1.5707963267948966 rad + pos: 14.5,-4.5 + parent: 1 + type: Transform + - uid: 932 + components: + - rot: 1.5707963267948966 rad + pos: 14.5,-5.5 + parent: 1 + type: Transform + - uid: 933 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,-5.5 + parent: 1 + type: Transform + - uid: 934 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,-0.5 + parent: 1 + type: Transform +- proto: WarpPoint + entities: + - uid: 935 + components: + - name: Syndicate Listening Post + type: MetaData + - pos: 10.5,0.5 + parent: 1 + type: Transform +- proto: WaterCooler + entities: + - uid: 936 + components: + - pos: 1.5,0.5 + parent: 1 + type: Transform +- proto: WaterTankHighCapacity + entities: + - uid: 937 + components: + - pos: 13.5,-2.5 + parent: 1 + type: Transform +- proto: WeaponShotgunKammerer + entities: + - uid: 372 + components: + - flags: InContainer + type: MetaData + - parent: 356 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 373 + components: + - flags: InContainer + type: MetaData + - parent: 356 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: Windoor + entities: + - uid: 938 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,5.5 + parent: 1 + type: Transform + - uid: 939 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,0.5 + parent: 1 + type: Transform +- proto: WindoorSecure + entities: + - uid: 940 + components: + - rot: 3.141592653589793 rad + pos: -1.5,-7.5 + parent: 1 + type: Transform + - uid: 941 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-7.5 + parent: 1 + type: Transform + - uid: 942 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-7.5 + parent: 1 + type: Transform + - uid: 943 + components: + - rot: 3.141592653589793 rad + pos: 4.5,-7.5 + parent: 1 + type: Transform + - uid: 944 + components: + - pos: -1.5,5.5 + parent: 1 + type: Transform + - uid: 945 + components: + - pos: -0.5,5.5 + parent: 1 + type: Transform +- proto: WoodDoor + entities: + - uid: 946 + components: + - pos: -1.5,-1.5 + parent: 1 + type: Transform + - secondsUntilStateChange: -13072.267 + state: Opening + type: Door +... diff --git a/Resources/Prototypes/DeltaV/Entities/Clothing/Ears/headset_alt.yml b/Resources/Prototypes/DeltaV/Entities/Clothing/Ears/headset_alt.yml deleted file mode 100644 index 969caa67866..00000000000 --- a/Resources/Prototypes/DeltaV/Entities/Clothing/Ears/headset_alt.yml +++ /dev/null @@ -1,15 +0,0 @@ -- type: entity - parent: ClothingHeadsetAlt - id: ClothingHeadsetAltService - name: head of personnel's over-ear headset - components: - - type: ContainerFill - containers: - key_slots: - - EncryptionKeyService - - EncryptionKeyCommand - - EncryptionKeyCommon - - type: Sprite - sprite: DeltaV/Clothing/Ears/Headsets/service.rsi - - type: Clothing - sprite: DeltaV/Clothing/Ears/Headsets/service.rsi diff --git a/Resources/Prototypes/DeltaV/Entities/Clothing/Ears/headsets.yml b/Resources/Prototypes/DeltaV/Entities/Clothing/Ears/headsets.yml index f63b6e4ce07..25c7252987c 100644 --- a/Resources/Prototypes/DeltaV/Entities/Clothing/Ears/headsets.yml +++ b/Resources/Prototypes/DeltaV/Entities/Clothing/Ears/headsets.yml @@ -10,3 +10,32 @@ - EncryptionKeyService - EncryptionKeyCommand - EncryptionKeyCommon + +- type: entity + parent: ClothingHeadsetAlt + id: ClothingHeadsetAltService + name: head of personnel's over-ear headset + components: + - type: ContainerFill + containers: + key_slots: + - EncryptionKeyService + - EncryptionKeyCommand + - EncryptionKeyCommon + - type: Sprite + sprite: DeltaV/Clothing/Ears/Headsets/service.rsi + - type: Clothing + sprite: DeltaV/Clothing/Ears/Headsets/service.rsi + +- type: entity + parent: ClothingHeadsetAltSyndicate + id: ClothingHeadsetAltSyndicateListening + name: blood-red over-ear interception headset + description: An advanced, modular syndicate interception intercom that fits over the head. + components: + - type: ContainerFill + containers: + key_slots: + - EncryptionKeySyndie + - EncryptionKeyStationMaster + diff --git a/Resources/Prototypes/DeltaV/Entities/Markers/Spawners/ghost_roles.yml b/Resources/Prototypes/DeltaV/Entities/Markers/Spawners/ghost_roles.yml index e1f06b82ec0..b43f50890c2 100644 --- a/Resources/Prototypes/DeltaV/Entities/Markers/Spawners/ghost_roles.yml +++ b/Resources/Prototypes/DeltaV/Entities/Markers/Spawners/ghost_roles.yml @@ -15,3 +15,33 @@ - state: green - sprite: Mobs/Species/Human/parts.rsi state: full + +- type: entity # Part of PirateRadioSpawn + noSpawn: true + id: SpawnPointGhostSyndicateListener + name: ghost role spawn point + suffix: syndicate listener + parent: MarkerBase + components: + - type: GhostRole + name: ghost-role-information-listeningop-name + description: ghost-role-information-listeningop-description + rules: ghost-role-information-listeningop-rules + requirements: # Worth considering these numbers for the goal of making sure someone willing to MRP takes this. + - !type:OverallPlaytimeRequirement + time: 259200 # 72 hours + - !type:DepartmentTimeRequirement + department: Security + time: 40000 # 11.5 hours + - !type:DepartmentTimeRequirement + department: Civilian + time: 72000 # 20 hours + - !type:WhitelistRequirement + - type: GhostRoleMobSpawner + prototype: MobHumanSyndicateListener + - type: Sprite + sprite: Markers/jobs.rsi + layers: + - state: green + - sprite: Structures/Wallmounts/signs.rsi + state: radiation \ No newline at end of file diff --git a/Resources/Prototypes/DeltaV/Entities/Markers/Spawners/mobs.yml b/Resources/Prototypes/DeltaV/Entities/Markers/Spawners/mobs.yml index b8e8c9fb267..1b6654fd3b7 100644 --- a/Resources/Prototypes/DeltaV/Entities/Markers/Spawners/mobs.yml +++ b/Resources/Prototypes/DeltaV/Entities/Markers/Spawners/mobs.yml @@ -23,3 +23,16 @@ - type: ConditionalSpawner prototypes: - MobSecDogLaika + +- type: entity + name: Syndicate Guard Spawner + id: SpawnMobRadioGuard + parent: MarkerBase + components: + - type: Sprite + layers: + - state: green + - state: ai + - type: ConditionalSpawner + prototypes: + - MobRadioGuard diff --git a/Resources/Prototypes/DeltaV/Entities/Mobs/NPCs/salvage.yml b/Resources/Prototypes/DeltaV/Entities/Mobs/NPCs/salvage.yml new file mode 100644 index 00000000000..36b0f38cf4d --- /dev/null +++ b/Resources/Prototypes/DeltaV/Entities/Mobs/NPCs/salvage.yml @@ -0,0 +1,39 @@ +- type: entity + name: Syndicate Guard + parent: BaseMobHuman + id: MobRadioGuard + components: + - type: NpcFactionMember + factions: + - Syndicate + - type: Loadout + prototypes: + - RadioGuardGear + - type: InputMover + - type: MobMover + - type: HTN + rootTask: + task: SimpleHumanoidHostileCompound + - type: Respirator #Mobs can't turn on internals by themselves, so we have to simulate them having it on + damage: + types: + Asphyxiation: 0 + damageRecovery: + types: + Asphyxiation: -1.0 + - type: Gun #Mobs currently cannot bolt a gun, so we have to simulate them firing it + fireRate: 2 + soundGunshot: /Audio/Weapons/Guns/Gunshots/pistol.ogg + useKey: false + selectedMode: SemiAuto + availableModes: + - SemiAuto + - type: CombatMode + - type: BasicEntityAmmoProvider + proto: CartridgePistol + capacity: 10 + count: 10 + - type: RechargeBasicEntityAmmo + rechargeCooldown: 1 + rechargeSound: + path: /Audio/Weapons/Guns/MagIn/bullet_insert.ogg diff --git a/Resources/Prototypes/DeltaV/Entities/Mobs/Player/human.yml b/Resources/Prototypes/DeltaV/Entities/Mobs/Player/human.yml new file mode 100644 index 00000000000..d539c58496a --- /dev/null +++ b/Resources/Prototypes/DeltaV/Entities/Mobs/Player/human.yml @@ -0,0 +1,17 @@ +- type: entity # Delta-V : Part of a mid-round PirateRadioSpawn + noSpawn: true + parent: MobHumanSyndicateAgent + id: MobHumanSyndicateListener + name: Syndicate Listener + components: + - type: Loadout + prototypes: [SyndicateListenerGear] + - type: NpcFactionMember + factions: + - Syndicate + - type: AutoTraitor + giveUplink: false + giveObjectives: false + - type: AutoImplant + implants: + - DeathAcidifierImplant diff --git a/Resources/Prototypes/DeltaV/Entities/Mobs/Player/humanoid.yml b/Resources/Prototypes/DeltaV/Entities/Mobs/Player/humanoid.yml new file mode 100644 index 00000000000..9e12dc31c44 --- /dev/null +++ b/Resources/Prototypes/DeltaV/Entities/Mobs/Player/humanoid.yml @@ -0,0 +1,15 @@ +- type: entity # Delta-V part of PirateRadioSpawn + id: RandomHumanoidSpawnerListener + name: Syndicate Listener + components: + - type: Sprite + sprite: Mobs/Species/Human/parts.rsi + state: full + - type: RandomHumanoidSpawner + settings: SyndicateListener + +- type: randomHumanoidSettings + id: SyndicateListener + components: + - type: Loadout + prototypes: [SyndicateListenerGear] \ No newline at end of file diff --git a/Resources/Prototypes/DeltaV/Entities/Structures/Machines/syndicate_monitor_server.yml b/Resources/Prototypes/DeltaV/Entities/Structures/Machines/syndicate_monitor_server.yml new file mode 100644 index 00000000000..bcf2de3ae01 --- /dev/null +++ b/Resources/Prototypes/DeltaV/Entities/Structures/Machines/syndicate_monitor_server.yml @@ -0,0 +1,63 @@ +- type: entity # This is *meant* to make use of the concept that StationLimitedNetwork doesn't allow recievers to reciever across two different grids, however this uh, doesn't seem to be relevant. The Pirate Radio shuttle can still recieve across grids.... + id: SyndicateMonitoringServer + parent: BaseMachinePowered + name: suspicious crew monitoring server + description: Receives and relays the status of all active suit sensors. + components: + - type: Sprite + sprite: Structures/Machines/server.rsi + layers: + - state: server + - state: variant-crew + - type: Construction + graph: Machine + node: machine + containers: + - machine_board + - machine_parts + - type: Machine + board: CrewMonitoringServerMachineCircuitboard + - type: ContainerContainer + containers: + machine_board: !type:Container + machine_parts: !type:Container + - type: CrewMonitoringServer + - type: DeviceNetwork + deviceNetId: Wireless + transmitFrequencyId: CrewMonitor + receiveFrequencyId: SuitSensor + autoConnect: false + - type: WirelessNetworkConnection + range: 2000 + #- type: StationLimitedNetwork + - type: ApcPowerReceiver + powerLoad: 200 + priority: Low + - type: ExtensionCableReceiver + - type: Destructible + thresholds: + - trigger: + !type:DamageTrigger + damage: 600 + behaviors: + - !type:DoActsBehavior + acts: [ "Destruction" ] + - trigger: + !type:DamageTrigger + damage: 300 + behaviors: + - !type:DoActsBehavior + acts: ["Destruction"] + - !type:PlaySoundBehavior + sound: + path: /Audio/Effects/metalbreak.ogg + - !type:SpawnEntitiesBehavior + spawn: + SheetSteel1: + min: 1 + max: 2 + - type: AmbientSound + volume: -5 # Hacked so it's louder? + range: 5 + sound: + path: /Audio/Ambience/Objects/server_fans.ogg diff --git a/Resources/Prototypes/DeltaV/GameRules/events.yml b/Resources/Prototypes/DeltaV/GameRules/events.yml index 382251b2a9b..f12a65ee1e8 100644 --- a/Resources/Prototypes/DeltaV/GameRules/events.yml +++ b/Resources/Prototypes/DeltaV/GameRules/events.yml @@ -45,3 +45,16 @@ entries: - id: MobMothroach prob: 0.05 + +- type: entity # Delta-V : Midround Syndie Listening Station Spawn + id: PirateRadioSpawn + parent: BaseGameRule + noSpawn: true + components: + - type: StationEvent + earliestStart: 20 + weight: 7.5 # Worth some thought as to how frequent this should be... + minimumPlayers: 25 + maxOccurences: 1 + duration: 1 + - type: PirateRadioSpawnRule diff --git a/Resources/Prototypes/DeltaV/Roles/Jobs/Fun/misc_startinggear.yml b/Resources/Prototypes/DeltaV/Roles/Jobs/Fun/misc_startinggear.yml index 830f21afd6c..0ee34c282fd 100644 --- a/Resources/Prototypes/DeltaV/Roles/Jobs/Fun/misc_startinggear.yml +++ b/Resources/Prototypes/DeltaV/Roles/Jobs/Fun/misc_startinggear.yml @@ -52,3 +52,15 @@ id: ResearchIDCard pocket1: Pen pocket2: GlowstickBase + +#Syndicate Pirate Radio Listener +- type: startingGear + id: SyndicateListenerGear + equipment: + jumpsuit: ClothingUniformJumpsuitPyjamaSyndicateBlack + head: ClothingHeadPyjamaSyndicateBlack + ears: ClothingHeadsetAltSyndicateListening + gloves: ClothingHandsGlovesCombat + shoes: ClothingShoesSlippers + id: SyndiPDA + innerClothingSkirt: ClothingUniformJumpsuitPyjamaSyndicatePink \ No newline at end of file diff --git a/Resources/Prototypes/DeltaV/Roles/Jobs/NPC/syndicateNPCs.yml b/Resources/Prototypes/DeltaV/Roles/Jobs/NPC/syndicateNPCs.yml new file mode 100644 index 00000000000..15415894426 --- /dev/null +++ b/Resources/Prototypes/DeltaV/Roles/Jobs/NPC/syndicateNPCs.yml @@ -0,0 +1,12 @@ +- type: startingGear + id: RadioGuardGear + equipment: + jumpsuit: ClothingUniformJumpsuitLawyerBlack + shoes: ClothingShoesBootsLaceup + id: SyndicateIDCard + ears: ClothingHeadsetAltSyndicate + mask: ClothingMaskGasSyndicate + eyes: ClothingEyesHudSyndicate + gloves: ClothingHandsGlovesCombat + outerClothing: ClothingOuterArmorPlateCarrier + pocket1: WeaponPistolViper From 99448ce2a798f29bb7cf107b04d00e2025eee25c Mon Sep 17 00:00:00 2001 From: DeltaV-Bot Date: Sun, 31 Dec 2023 16:48:41 +0000 Subject: [PATCH 6/8] Automatic Changelog Update (#578) --- Resources/Changelog/DeltaVChangelog.yml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/Resources/Changelog/DeltaVChangelog.yml b/Resources/Changelog/DeltaVChangelog.yml index 4b1807dcd5e..07a8208080f 100644 --- a/Resources/Changelog/DeltaVChangelog.yml +++ b/Resources/Changelog/DeltaVChangelog.yml @@ -1284,3 +1284,12 @@ Entries: message: Fixed logistics airlocks looking like engineering airlocks when opened. id: 192 time: '2023-12-31T16:23:10.0000000+00:00' +- author: DangerRevolution and VMSolidus + changes: + - type: Add + message: >- + Rumours say that Syndicate Agents have cracked encoded communications! + Added the Syndicate Listening Post to the Syndicate's arsenal of + espionage! + id: 193 + time: '2023-12-31T16:48:27.0000000+00:00' From 2a16108893d42a5cc2e22e5663cf69072a5fbeb6 Mon Sep 17 00:00:00 2001 From: Debug <49997488+DebugOk@users.noreply.github.com> Date: Sun, 31 Dec 2023 21:38:16 +0100 Subject: [PATCH 7/8] Increase barber scissors' doafter time (#627) * Update barber.yml Signed-off-by: Debug <49997488+DebugOk@users.noreply.github.com> * Update barber.yml Signed-off-by: Debug <49997488+DebugOk@users.noreply.github.com> --------- Signed-off-by: Debug <49997488+DebugOk@users.noreply.github.com> --- .../Prototypes/Entities/Objects/Specific/Service/barber.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Resources/Prototypes/Entities/Objects/Specific/Service/barber.yml b/Resources/Prototypes/Entities/Objects/Specific/Service/barber.yml index e8cb94c5247..83be1354781 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/Service/barber.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/Service/barber.yml @@ -8,6 +8,10 @@ sprite: Objects/Tools/scissors.rsi state: icon - type: MagicMirror + AddSlotTime: 20 + RemoveSlotTime: 20 + SelectSlotTime: 20 + ChangeSlotTime: 20 - type: ActivatableUI key: enum.MagicMirrorUiKey.Key closeOnHandDeselect: true @@ -22,4 +26,4 @@ types: Piercing: 6 soundHit: - path: "/Audio/Weapons/bladeslice.ogg" \ No newline at end of file + path: "/Audio/Weapons/bladeslice.ogg" From df92f0f1f6b188cf2ffc80f0e760706442e0080a Mon Sep 17 00:00:00 2001 From: Debug <49997488+DebugOk@users.noreply.github.com> Date: Sun, 31 Dec 2023 21:42:03 +0100 Subject: [PATCH 8/8] Fix barber scissors prototype You'd expect this to fail a test or something, but oh well Signed-off-by: Debug <49997488+DebugOk@users.noreply.github.com> --- .../Entities/Objects/Specific/Service/barber.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Resources/Prototypes/Entities/Objects/Specific/Service/barber.yml b/Resources/Prototypes/Entities/Objects/Specific/Service/barber.yml index 83be1354781..3f47ad6916b 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/Service/barber.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/Service/barber.yml @@ -8,10 +8,10 @@ sprite: Objects/Tools/scissors.rsi state: icon - type: MagicMirror - AddSlotTime: 20 - RemoveSlotTime: 20 - SelectSlotTime: 20 - ChangeSlotTime: 20 + addSlotTime: 20 + removeSlotTime: 20 + selectSlotTime: 20 + changeSlotTime: 20 - type: ActivatableUI key: enum.MagicMirrorUiKey.Key closeOnHandDeselect: true