diff --git a/Content.Server/Nyanotrasen/Objectives/Components/BecomePsionicConditionComponent.cs b/Content.Server/Nyanotrasen/Objectives/Components/BecomePsionicConditionComponent.cs
index 3b677bab2d4..8f68c169983 100644
--- a/Content.Server/Nyanotrasen/Objectives/Components/BecomePsionicConditionComponent.cs
+++ b/Content.Server/Nyanotrasen/Objectives/Components/BecomePsionicConditionComponent.cs
@@ -3,9 +3,9 @@
namespace Content.Server.Objectives.Components;
///
-/// Requires that the player dies to be complete.
+/// Requires that the player becomes psionic to be complete.
///
[RegisterComponent, Access(typeof(BecomePsionicConditionSystem))]
public sealed partial class BecomePsionicConditionComponent : Component
{
-}
\ No newline at end of file
+}
diff --git a/Content.Server/Nyanotrasen/Objectives/Systems/BecomePsionicConditionSystem.cs b/Content.Server/Nyanotrasen/Objectives/Systems/BecomePsionicConditionSystem.cs
index d090c320a41..7ee5da29c53 100644
--- a/Content.Server/Nyanotrasen/Objectives/Systems/BecomePsionicConditionSystem.cs
+++ b/Content.Server/Nyanotrasen/Objectives/Systems/BecomePsionicConditionSystem.cs
@@ -3,30 +3,24 @@
using Content.Shared.Mind;
using Content.Shared.Objectives.Components;
-namespace Content.Server.Objectives.Systems
+namespace Content.Server.Objectives.Systems;
+
+public sealed class BecomePsionicConditionSystem : EntitySystem
{
- public sealed class BecomePsionicConditionSystem : EntitySystem
+ public override void Initialize()
{
- private EntityQuery _metaQuery;
-
- public override void Initialize()
- {
- base.Initialize();
+ base.Initialize();
- SubscribeLocalEvent(OnGetProgress);
- }
+ SubscribeLocalEvent(OnGetProgress);
+ }
- private void OnGetProgress(EntityUid uid, BecomePsionicConditionComponent comp, ref ObjectiveGetProgressEvent args)
- {
- args.Progress = GetProgress(args.Mind);
- }
+ private void OnGetProgress(Entity ent, ref ObjectiveGetProgressEvent args)
+ {
+ args.Progress = GetProgress(args.Mind);
+ }
- private float GetProgress(MindComponent mind)
- {
- var entMan = IoCManager.Resolve();
- if (HasComp(mind.CurrentEntity))
- return 1;
- return 0;
- }
+ private float GetProgress(MindComponent mind)
+ {
+ return HasComp(mind.OwnedEntity) ? 1 : 0;
}
}
diff --git a/Content.Shared/Objectives/Systems/SharedObjectivesSystem.cs b/Content.Shared/Objectives/Systems/SharedObjectivesSystem.cs
index 2e1bdc43831..07032a00ce9 100644
--- a/Content.Shared/Objectives/Systems/SharedObjectivesSystem.cs
+++ b/Content.Shared/Objectives/Systems/SharedObjectivesSystem.cs
@@ -1,6 +1,7 @@
using Content.Shared.Mind;
using Content.Shared.Objectives;
using Content.Shared.Objectives.Components;
+using Robust.Shared.Prototypes;
using Robust.Shared.Utility;
namespace Content.Shared.Objectives.Systems;
@@ -11,6 +12,7 @@ namespace Content.Shared.Objectives.Systems;
public abstract class SharedObjectivesSystem : EntitySystem
{
[Dependency] private readonly SharedMindSystem _mind = default!;
+ [Dependency] private readonly IPrototypeManager _protoMan = default!;
private EntityQuery _metaQuery;
@@ -55,6 +57,9 @@ public bool CanBeAssigned(EntityUid uid, EntityUid mindId, MindComponent mind, O
///
public EntityUid? TryCreateObjective(EntityUid mindId, MindComponent mind, string proto)
{
+ if (!_protoMan.HasIndex(proto))
+ return null;
+
var uid = Spawn(proto);
if (!TryComp(uid, out var comp))
{
diff --git a/Resources/Changelog/DeltaVChangelog.yml b/Resources/Changelog/DeltaVChangelog.yml
index aa9916c1fed..d57c095ceec 100644
--- a/Resources/Changelog/DeltaVChangelog.yml
+++ b/Resources/Changelog/DeltaVChangelog.yml
@@ -1967,3 +1967,19 @@
id: 299
time: '2024-03-28T18:27:42.0000000+00:00'
url: https://github.com/DeltaV-Station/Delta-v/pull/992
+- author: deltanedas
+ changes:
+ - message: Reworked Shoukou's atmospherics setup. The Gas Recycler is now usable
+ among other things.
+ type: Tweak
+ id: 300
+ time: '2024-04-03T02:10:51.0000000+00:00'
+ url: https://github.com/DeltaV-Station/Delta-v/pull/1049
+- author: rosieposieeee
+ changes:
+ - message: Submarine has, once again, had some minor issues quashed, and small improvements
+ made. Go check out the park!
+ type: Tweak
+ id: 301
+ time: '2024-04-03T19:44:14.0000000+00:00'
+ url: https://github.com/DeltaV-Station/Delta-v/pull/1053
diff --git a/Resources/ConfigPresets/DeltaV/apoapsis.toml b/Resources/ConfigPresets/DeltaV/apoapsis.toml
index 687d7392b21..22984cc7b5b 100644
--- a/Resources/ConfigPresets/DeltaV/apoapsis.toml
+++ b/Resources/ConfigPresets/DeltaV/apoapsis.toml
@@ -1,5 +1,5 @@
[game]
-hostname = "[EN][MRP] Delta-v (Ψ) | Apoapsis"
+hostname = "[EN][MRP] Delta-v (Ψ) | Apoapsis [US East 1]"
soft_max_players = 100
[server]
@@ -15,7 +15,7 @@ min_players = 90
emergency_early_launch_allowed = true
[hub]
-tags = "lang:en-US,region:am_n_e,rp:med"
+tags = "lang:en-US,region:am_n_e,rp:med,no_tag_infer"
[atmos]
monstermos_rip_tiles = false
diff --git a/Resources/ConfigPresets/DeltaV/inclination.toml b/Resources/ConfigPresets/DeltaV/inclination.toml
index c655bb796c0..285b449c62b 100644
--- a/Resources/ConfigPresets/DeltaV/inclination.toml
+++ b/Resources/ConfigPresets/DeltaV/inclination.toml
@@ -1,5 +1,5 @@
[game]
-hostname = "[EN][EU][MRP] Delta-v (Ψ) | Inclination"
+hostname = "[EN][MRP] Delta-v (Ψ) | Inclination [EU West]"
soft_max_players = 50
[server]
@@ -14,4 +14,4 @@ map_enabled = true
enable_during_round = true
[hub]
-tags = "lang:en-US,region:eu_w,rp:med"
+tags = "lang:en-US,region:eu_w,rp:med,no_tag_infer"
diff --git a/Resources/ConfigPresets/DeltaV/periapsis.toml b/Resources/ConfigPresets/DeltaV/periapsis.toml
index eb6b039cc41..9001e5a3c1f 100644
--- a/Resources/ConfigPresets/DeltaV/periapsis.toml
+++ b/Resources/ConfigPresets/DeltaV/periapsis.toml
@@ -1,5 +1,5 @@
[game]
-hostname = "[EN][MRP] Delta-v (Ψ) | Periapsis"
+hostname = "[EN][MRP] Delta-v (Ψ) | Periapsis [US East 2]"
soft_max_players = 50
[server]
@@ -19,4 +19,4 @@ min_players = 25
enable_during_round = true
[hub]
-tags = "lang:en-US,region:am_n_e,rp:med"
+tags = "lang:en-US,region:am_n_e,rp:med,no_tag_infer"
diff --git a/Resources/Credits/GitHub.txt b/Resources/Credits/GitHub.txt
index 3ec1e3e71f3..5bfa588cbb3 100644
--- a/Resources/Credits/GitHub.txt
+++ b/Resources/Credits/GitHub.txt
@@ -1 +1 @@
-0x6273, 2013HORSEMEATSCANDAL, 20kdc, 21Melkuu, 4dplanner, 612git, 778b, Ablankmann, Acruid, actioninja, adamsong, Admiral-Obvious-001, Adrian16199, Aerocrux, Aexxie, africalimedrop, Agoichi, Ahion, AJCM-git, AjexRose, Alekshhh, AlexMorgan3817, AlmondFlour, AlphaQwerty, Altoids1, amylizzle, ancientpower, ArchPigeon, Arendian, arimah, Arteben, AruMoon, as334, AsikKEsel, asperger-sind, avghdev, AzzyIsNotHere, BananaFlambe, BasedUser, beck-thompson, BGare, BingoJohnson-zz, BismarckShuffle, Bixkitts, Blackern5000, Blazeror, Boaz1111, BobdaBiscuit, brainfood1183, Brandon-Huu, Bribrooo, Bright0, brndd, BubblegumBlue, BYONDFuckery, c4llv07e, CakeQ, CaptainSqrBeard, Carbonhell, Carolyn3114, casperr04, CatTheSystem, Centronias, chairbender, Charlese2, Cheackraze, cheesePizza2, Chief-Engineer, chromiumboy, Chronophylos, clement-or, Clyybber, Cojoke-dot, ColdAutumnRain, Colin-Tel, collinlunn, ComicIronic, coolmankid12345, corentt, crazybrain23, creadth, CrigCrag, Crotalus, CrudeWax, CrzyPotato, Cyberboss, d34d10cc, Daemon, daerSeebaer, dahnte, dakamakat, dakimasu, DamianX, DangerRevolution, daniel-cr, Darkenson, DawBla, dch-GH, Deahaka, DEATHB4DEFEAT, DeathCamel58, deathride58, DebugOk, Decappi, deepdarkdepths, Delete69, deltanedas, DeltaV-Bot, DerbyX, DmitriyMX, DoctorBeard, DogZeroX, dontbetank, Doru991, DoubleRiceEddiedd, DoutorWhite, DrMelon, DrSmugleaf, drteaspoon420, DTanxxx, DubiousDoggo, Duddino, Dutch-VanDerLinde, Easypoller, eclips_e, EdenTheLiznerd, EEASAS, Efruit, ElectroSR, elthundercloud, Emisse, EmoGarbage404, Endecc, enumerate0, eoineoineoin, ERORR404V1, Errant-4, estacaoespacialpirata, exincore, exp111, Fahasor, FairlySadPanda, ficcialfaint, Fildrance, FillerVK, Fishfish458, Flareguy, FluffiestFloof, FluidRock, FoLoKe, fooberticus, Fortune117, freeman2651, Fromoriss, FungiFellow, GalacticChimp, gbasood, Geekyhobo, Genkail, Git-Nivrak, github-actions[bot], gituhabu, GNF54, Golinth, GoodWheatley, Gotimanga, graevy, GreyMario, Guess-My-Name, gusxyz, Gyrandola, h3half, Hanzdegloker, Hardly3D, harikattar, Hebiman, Henry12116, HerCoyote23, Hmeister-real, HoofedEar, hord-brayden, hubismal, Hugal31, Hyenh, iacore, IamVelcroboy, icekot8, igorsaux, ike709, Illiux, Ilya246, IlyaElDunaev, Injazz, Insineer, IntegerTempest, Interrobang01, IProduceWidgets, ItsMeThom, j-giebel, Jackal298, Jackrost, jamessimo, janekvap, JerryImMouse, Jessetriesagain, jessicamaybe, Jezithyr, jicksaw, JiimBob, JoeHammad1844, joelhed, JohnGinnane, johnku1, joshepvodka, jproads, Jrpl, juliangiebel, JustArt1m, JustCone14, JustinTether, JustinTrotter, KaiShibaa, kalane15, kalanosh, KEEYNy, Keikiru, Kelrak, kerisargit, keronshb, KIBORG04, Killerqu00, KingFroozy, kira-er, Kit0vras, KittenColony, Kmc2000, Ko4ergaPunk, komunre, koteq, Krunklehorn, Kukutis96513, kxvvv, Lamrr, LankLTE, lapatison, Leander-0, leonardo-dabepis, LetterN, Level10Cybermancer, lever1209, LightVillet, liltenhead, LittleBuilderJane, Lomcastar, LordCarve, LordEclipse, LudwigVonChesterfield, Lukasz825700516, lunarcomets, luringens, lvvova1, lzimann, lzk228, MACMAN2003, Macoron, MagnusCrowe, ManelNavola, Matz05, MehimoNemo, MeltedPixel, MemeProof, Menshin, Mervill, metalgearsloth, mhamsterr, MilenVolf, Minty642, Mirino97, mirrorcult, MishaUnity, MisterMecky, Mith-randalf, Moneyl, Moomoobeef, moony, Morb0, Mr0maks, musicmanvr, Myakot, Myctai, N3X15, Nairodian, Naive817, namespace-Memory, NickPowers43, nikthechampiongr, Nimfar11, Nirnael, nmajask, nok-ko, Nopey, notafet, notquitehadouken, noudoit, noverd, nuke-haus, NULL882, OCOtheOmega, OctoRocket, OldDanceJacket, onoira, Owai-Seek, pali6, Pangogie, patrikturi, PaulRitter, Peptide90, peptron1, Phantom-Lily, PHCodes, PixelTheKermit, PJB3005, Plykiya, pofitlo, pointer-to-null, PolterTzi, PoorMansDreams, potato1234x, ProfanedBane, PrPleGoo, ps3moira, Psychpsyo, psykzz, PuroSlavKing, PursuitInAshes, quatre, QuietlyWhisper, qwerltaz, Radosvik, Radrark, Rainbeon, Rainfey, Rane, ravage123321, rbertoche, Redict, RedlineTriad, RednoWCirabrab, RemberBM, RemieRichards, RemTim, rene-descartes2021, RiceMar1244, RieBi, Rinkashikachi, Rockdtben, rolfero, rosieposieeee, Saakra, Samsterious, SaphireLattice, ScalyChimp, scrato, Scribbles0, Serkket, SethLafuente, ShadowCommander, Shadowtheprotogen546, shampunj, SignalWalker, Simyon264, SirDragooon, Sirionaut, siyengar04, Skarletto, Skrauz, Skyedra, SlamBamActionman, Slava0135, Snowni, snowsignal, SonicHDC, SoulSloth, SpaceManiac, SpeltIncorrectyl, spoogemonster, ssdaniel24, Stealthbomber16, StrawberryMoses, Subversionary, SweptWasTaken, Szunti, TadJohnson00, takemysoult, TaralGit, Tayrtahn, tday93, TekuNut, TemporalOroboros, tentekal, tgrkzus, thatrandomcanadianguy, TheArturZh, theashtronaut, thedraccx, themias, Theomund, theOperand, TheShuEd, TimrodDX, Titian3, tkdrg, tmtmtl30, tom-leys, tomasalves8, Tomeno, tosatur, Tryded, TsjipTsjip, Tunguso4ka, TurboTrackerss14, Tyler-IN, Tyzemol, UbaserB, UKNOWH, UnicornOnLSD, Uriende, UristMcDorf, Vaaankas, Varen, VasilisThePikachu, veliebm, Veritius, Verslebas, VigersRay, Visne, VMSolidus, volundr-, Vordenburg, vulppine, wafehling, waylon531, weaversam8, Willhelm53, wixoaGit, WlarusFromDaSpace, wrexbe, xRiriq, yathxyz, Ygg01, YotaXP, YuriyKiss, zach-hill, Zandario, Zap527, ZelteHonor, zerorulez, zionnBE, zlodo, ZNixian, ZoldorfTheWizard, Zumorica, Zymem
+0x6273, 2013HORSEMEATSCANDAL, 20kdc, 21Melkuu, 4dplanner, 612git, 778b, Ablankmann, Acruid, actioninja, adamsong, Admiral-Obvious-001, Adrian16199, Aerocrux, Aexxie, africalimedrop, Agoichi, Ahion, AJCM-git, AjexRose, Alekshhh, AlexMorgan3817, AlmondFlour, AlphaQwerty, Altoids1, amylizzle, ancientpower, ArchPigeon, Arendian, arimah, Arteben, AruMoon, as334, AsikKEsel, asperger-sind, avghdev, AzzyIsNotHere, BananaFlambe, Baptr0b0t, BasedUser, beck-thompson, BGare, BingoJohnson-zz, BismarckShuffle, Bixkitts, Blackern5000, Blazeror, Boaz1111, BobdaBiscuit, brainfood1183, Brandon-Huu, Bribrooo, Bright0, brndd, BubblegumBlue, BYONDFuckery, c4llv07e, CakeQ, CaptainSqrBeard, Carbonhell, Carolyn3114, casperr04, CatTheSystem, Centronias, chairbender, Charlese2, Cheackraze, cheesePizza2, Chief-Engineer, chromiumboy, Chronophylos, clement-or, Clyybber, Cojoke-dot, ColdAutumnRain, Colin-Tel, collinlunn, ComicIronic, coolmankid12345, corentt, crazybrain23, creadth, CrigCrag, Crotalus, CrudeWax, CrzyPotato, Cyberboss, d34d10cc, Daemon, daerSeebaer, dahnte, dakamakat, dakimasu, DamianX, DangerRevolution, daniel-cr, Darkenson, DawBla, dch-GH, Deahaka, DEATHB4DEFEAT, DeathCamel58, deathride58, DebugOk, Decappi, deepdarkdepths, Delete69, deltanedas, DeltaV-Bot, DerbyX, DmitriyMX, Doctor-Cpu, DoctorBeard, DogZeroX, dontbetank, Doru991, DoubleRiceEddiedd, DoutorWhite, DrMelon, DrSmugleaf, drteaspoon420, DTanxxx, DubiousDoggo, Duddino, Dutch-VanDerLinde, Easypoller, eclips_e, EdenTheLiznerd, EEASAS, Efruit, ElectroSR, elthundercloud, Emisse, EmoGarbage404, Endecc, enumerate0, eoineoineoin, ERORR404V1, Errant-4, estacaoespacialpirata, exincore, exp111, Fahasor, FairlySadPanda, ficcialfaint, Fildrance, FillerVK, Fishfish458, Flareguy, FluffiestFloof, FluidRock, FoLoKe, fooberticus, Fortune117, freeman2651, Fromoriss, FungiFellow, GalacticChimp, gbasood, Geekyhobo, Genkail, Git-Nivrak, github-actions[bot], gituhabu, GNF54, Golinth, GoodWheatley, Gotimanga, graevy, GreyMario, Guess-My-Name, gusxyz, Gyrandola, h3half, Hanzdegloker, Hardly3D, harikattar, Hebiman, Henry12116, HerCoyote23, Hmeister-real, HoofedEar, hord-brayden, hubismal, Hugal31, Hyenh, iacore, IamVelcroboy, icekot8, igorsaux, ike709, Illiux, Ilya246, IlyaElDunaev, Injazz, Insineer, IntegerTempest, Interrobang01, IProduceWidgets, ItsMeThom, j-giebel, Jackal298, Jackrost, jamessimo, janekvap, JerryImMouse, Jessetriesagain, jessicamaybe, Jezithyr, jicksaw, JiimBob, JoeHammad1844, joelhed, JohnGinnane, johnku1, joshepvodka, jproads, Jrpl, juliangiebel, JustArt1m, JustCone14, JustinTether, JustinTrotter, KaiShibaa, kalane15, kalanosh, KEEYNy, Keikiru, Kelrak, kerisargit, keronshb, KIBORG04, Killerqu00, KingFroozy, kira-er, Kit0vras, KittenColony, Kmc2000, Ko4ergaPunk, komunre, koteq, Krunklehorn, kxvvv, Lamrr, LankLTE, lapatison, Leander-0, leonardo-dabepis, LetterN, Level10Cybermancer, lever1209, liltenhead, LittleBuilderJane, Lomcastar, LordCarve, LordEclipse, Lukasz825700516, lunarcomets, luringens, lvvova1, lzimann, lzk228, MACMAN2003, Macoron, MagnusCrowe, ManelNavola, Matz05, MehimoNemo, MeltedPixel, MemeProof, Menshin, Mervill, metalgearsloth, mhamsterr, MilenVolf, Minty642, Mirino97, mirrorcult, MishaUnity, MisterMecky, Mith-randalf, Moneyl, Moomoobeef, moony, Morb0, Mr0maks, musicmanvr, Myakot, Myctai, N3X15, Nairodian, Naive817, namespace-Memory, NickPowers43, nikthechampiongr, Nimfar11, Nirnael, nmajask, nok-ko, Nopey, notafet, notquitehadouken, noudoit, noverd, nuke-haus, NULL882, NullWanderer, OCOtheOmega, OctoRocket, OldDanceJacket, onoira, Owai-Seek, pali6, Pangogie, patrikturi, PaulRitter, Peptide90, peptron1, Phantom-Lily, PHCodes, PixelTheKermit, PJB3005, Plykiya, pofitlo, pointer-to-null, PolterTzi, PoorMansDreams, potato1234x, ProfanedBane, PrPleGoo, ps3moira, Psychpsyo, psykzz, PuroSlavKing, PursuitInAshes, quatre, QuietlyWhisper, qwerltaz, Radosvik, Radrark, Rainbeon, Rainfey, Rane, ravage123321, rbertoche, Redict, RedlineTriad, RednoWCirabrab, RemberBM, RemieRichards, RemTim, rene-descartes2021, RiceMar1244, RieBi, Rinkashikachi, Rockdtben, rolfero, rosieposieeee, Saakra, Samsterious, SaphireLattice, ScalyChimp, scrato, Scribbles0, Serkket, SethLafuente, ShadowCommander, Shadowtheprotogen546, shampunj, SignalWalker, Simyon264, Sirionaut, siyengar04, Skarletto, Skrauz, Skyedra, SlamBamActionman, Slava0135, Snowni, snowsignal, SonicHDC, SoulSloth, SpaceManiac, SpeltIncorrectyl, SphiraI, spoogemonster, ssdaniel24, Stealthbomber16, StrawberryMoses, Subversionary, SweptWasTaken, Szunti, TadJohnson00, takemysoult, TaralGit, Tayrtahn, tday93, TekuNut, TemporalOroboros, tentekal, tgrkzus, thatrandomcanadianguy, TheArturZh, theashtronaut, thedraccx, themias, Theomund, theOperand, TheShuEd, TimrodDX, Titian3, tkdrg, tmtmtl30, tom-leys, tomasalves8, Tomeno, tosatur, Tryded, TsjipTsjip, Tunguso4ka, TurboTrackerss14, Tyler-IN, Tyzemol, UbaserB, UKNOWH, UnicornOnLSD, Uriende, UristMcDorf, Vaaankas, Varen, VasilisThePikachu, veliebm, Veritius, Verslebas, VigersRay, Visne, VMSolidus, volundr-, Vordenburg, vulppine, wafehling, waylon531, weaversam8, Willhelm53, wixoaGit, WlarusFromDaSpace, wrexbe, xRiriq, yathxyz, Ygg01, YotaXP, YuriyKiss, zach-hill, Zandario, Zap527, ZelteHonor, zerorulez, zionnBE, zlodo, ZNixian, ZoldorfTheWizard, Zumorica, Zymem
diff --git a/Resources/Credits/Patrons.yml b/Resources/Credits/Patrons.yml
index ff98e134cec..f93e66e4309 100644
--- a/Resources/Credits/Patrons.yml
+++ b/Resources/Credits/Patrons.yml
@@ -1,58 +1,36 @@
+- Name: "NightBirby"
+ Tier: Central Commander
+- Name: "Kriana"
+ Tier: Captain
- Name: "weirdrock"
Tier: Captain
-- Name: "Drifter Drifter"
+- Name: "Roxy"
Tier: Captain
- Name: "Bikowu"
Tier: Assistant
-- Name: "Hasan al-Binabi"
- Tier: Central Commander
- Name: "lleft The Dragon"
Tier: Central Commander
- Name: "Pandaconda"
Tier: Assistant
- Name: "Lazhannya"
Tier: Captain
-- Name: "Bonktrauma"
- Tier: Captain
-- Name: "Haltell"
- Tier: Captain
-- Name: "Delta.Pizza"
- Tier: Captain
-- Name: "steph kaus"
- Tier: Captain
-- Name: "HyperionGM"
- Tier: Central Commander
-- Name: "MikeAndIkes"
- Tier: Assistant
-- Name: "Ashley"
- Tier: Central Commander
-- Name: "mura"
- Tier: Captain
-- Name: "Adeinitas"
- Tier: Captain
- Name: "Shock"
Tier: Captain
-- Name: "Dead Rabbit"
- Tier: Captain
- Name: "T-Dog"
Tier: Captain
- Name: "oBerry"
Tier: Central Commander
- Name: "Wakefield"
Tier: Captain
-- Name: "Hûvy"
+- Name: "Huvy"
Tier: Assistant
- Name: "TheGungeonologist"
Tier: Central Commander
- Name: "Ethan"
Tier: Captain
-- Name: "TeeJay Neuroth"
- Tier: Captain
-- Name: "Neptunia_Counseling"
+- Name: "Bram van Zijp"
Tier: Central Commander
-- Name: "rosysyntax"
- Tier: Assistant
-- Name: "Kurzaen"
+- Name: "TeeJay"
Tier: Captain
- Name: "tokie"
Tier: Central Commander
diff --git a/Resources/Maps/shoukou.yml b/Resources/Maps/shoukou.yml
index 38e294a0d0a..db873452f9e 100644
--- a/Resources/Maps/shoukou.yml
+++ b/Resources/Maps/shoukou.yml
@@ -28,6 +28,7 @@ tilemap:
57: FloorGreenCircuit
58: FloorGym
59: FloorHull
+ 3: FloorHullReinforced
61: FloorHydro
63: FloorKitchen
64: FloorLaundry
@@ -94,7 +95,7 @@ entities:
version: 6
-2,-1:
ind: -2,-1
- tiles: ewAAAAABfwAAAAAAewAAAAADMAAAAAADewAAAAAAewAAAAADMAAAAAABewAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAewAAAAAAbQAAAAAAewAAAAABewAAAAABewAAAAABewAAAAADewAAAAADewAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAIAAAAAADfwAAAAAAewAAAAADewAAAAADewAAAAADewAAAAAAewAAAAACewAAAAADfwAAAAAAbQAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAbwAAAAABbwAAAAABfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAXgAAAAAAXgAAAAAAXgAAAAADXgAAAAABagAAAAAAYwAAAAADYwAAAAABagAAAAAAagAAAAAAagAAAAAAagAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAaQAAAAADaQAAAAABaQAAAAADXgAAAAADagAAAAAAYwAAAAAAYwAAAAABagAAAAAAfwAAAAAAbQAAAAAAUAAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAagAAAAAAYwAAAAADYwAAAAADagAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAagAAAAAAagAAAAAAagAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAbQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAbQAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAUAAAAAAAPQAAAAAAPQAAAAAAUAAAAAAAfwAAAAAAXgAAAAAAXgAAAAABXgAAAAABXgAAAAAAXgAAAAAAXgAAAAACXgAAAAACXgAAAAABXgAAAAABXgAAAAAAXgAAAAABewAAAAACewAAAAABewAAAAADewAAAAADXgAAAAABXgAAAAADXgAAAAADXgAAAAADXgAAAAADXgAAAAACXgAAAAACMAAAAAACaQAAAAABaQAAAAABMAAAAAAAaQAAAAACaQAAAAACMAAAAAADaQAAAAADaQAAAAADMAAAAAAD
+ tiles: ewAAAAABfwAAAAAAewAAAAADMAAAAAADewAAAAAAewAAAAADMAAAAAABewAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAewAAAAAAbQAAAAAAewAAAAABewAAAAABewAAAAABewAAAAADewAAAAADewAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAIAAAAAADfwAAAAAAewAAAAADewAAAAADewAAAAADewAAAAAAewAAAAACewAAAAADfwAAAAAAbQAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAbwAAAAABbwAAAAABfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAXgAAAAAAXgAAAAAAXgAAAAADXgAAAAABagAAAAAAYwAAAAADYwAAAAABagAAAAAAagAAAAAAagAAAAAAagAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAaQAAAAADaQAAAAABaQAAAAADXgAAAAADagAAAAAAYwAAAAAAYwAAAAABagAAAAAAfwAAAAAAbQAAAAAAUAAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAagAAAAAAYwAAAAADYwAAAAADagAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAagAAAAAAagAAAAAAagAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAbQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAbQAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAUAAAAAAAPQAAAAAAPQAAAAAAUAAAAAAAfwAAAAAAXgAAAAAAXgAAAAABXgAAAAABXgAAAAAAXgAAAAAAXgAAAAACXgAAAAACXgAAAAABXgAAAAABXgAAAAAAXgAAAAABewAAAAACewAAAAABewAAAAADewAAAAADXgAAAAABXgAAAAADXgAAAAADXgAAAAADXgAAAAADXgAAAAACXgAAAAACMAAAAAACaQAAAAABaQAAAAABMAAAAAAAaQAAAAACaQAAAAACMAAAAAADaQAAAAADaQAAAAADMAAAAAAD
version: 6
0,-2:
ind: 0,-2
@@ -130,7 +131,7 @@ entities:
version: 6
-3,-3:
ind: -3,-3
- tiles: fgAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAfwAAAAAAIAAAAAADfwAAAAAAIAAAAAAAfgAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAAAfwAAAAAAIAAAAAADfgAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAAAfwAAAAAAIAAAAAADUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAAAfwAAAAAAIAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAAAfwAAAAAAIAAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAbQAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAADIAAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAACIAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAIAAAAAABIAAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAIAAAAAAAIAAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAIAAAAAAAIAAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAbwAAAAAAfwAAAAAAfwAAAAAAbwAAAAABUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAA
+ tiles: fgAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAfwAAAAAAIAAAAAADfwAAAAAAIAAAAAAAfgAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAAAfwAAAAAAIAAAAAADfgAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAfwAAAAAAIAAAAAAAfwAAAAAAIAAAAAADUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAAAfwAAAAAAIAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAfwAAAAAAIAAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAAAfwAAAAAAIAAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAfwAAAAAAUAAAAAAAbQAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAfwAAAAAAfwAAAAAAIAAAAAADIAAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAACIAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAIAAAAAABIAAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAIAAAAAAAIAAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAIAAAAAAAIAAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAbwAAAAAAfwAAAAAAfwAAAAAAbwAAAAABUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAA
version: 6
0,-3:
ind: 0,-3
@@ -138,19 +139,19 @@ entities:
version: 6
-3,-4:
ind: -3,-4
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAIAAAAAACIAAAAAAAIAAAAAACUAAAAAAAIAAAAAADIAAAAAADIAAAAAADfgAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAADTwAAAAADIAAAAAAAbQAAAAAAIAAAAAACfwAAAAAAIAAAAAAAfgAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAAAIAAAAAAAIAAAAAADUAAAAAAAIAAAAAABfwAAAAAAIAAAAAAB
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAACIAAAAAAAIAAAAAACUAAAAAAAIAAAAAADIAAAAAADIAAAAAADfgAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAADTwAAAAADIAAAAAAAbQAAAAAAIAAAAAACfwAAAAAAIAAAAAAAfgAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAAAIAAAAAAAIAAAAAADUAAAAAAAIAAAAAABfwAAAAAAIAAAAAAB
version: 6
-4,-4:
ind: -4,-4
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAA
version: 6
-4,-3:
ind: -4,-3
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAA
version: 6
-4,-1:
ind: -4,-1
- tiles: AAAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAUAAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAewAAAAAAewAAAAABewAAAAACewAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAewAAAAAAewAAAAADewAAAAABewAAAAACewAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAaQAAAAADXgAAAAAAXgAAAAADXgAAAAADfgAAAAAAAAAAAAAAfgAAAAAAUAAAAAAAewAAAAABewAAAAADewAAAAAAewAAAAACfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAaQAAAAADXgAAAAADXgAAAAABXgAAAAADfgAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAewAAAAADewAAAAACewAAAAACewAAAAABfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAbgAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAbgAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAALwAAAAAALwAAAAAALwAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAbgAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAALwAAAAAALwAAAAAALwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAXgAAAAACXgAAAAACXgAAAAACXgAAAAABfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAUAAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAbQAAAAAAXgAAAAADXgAAAAABXgAAAAADXgAAAAAD
+ tiles: fgAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAUAAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAewAAAAAAewAAAAABewAAAAACewAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAewAAAAAAewAAAAADewAAAAABewAAAAACewAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAaQAAAAADXgAAAAAAXgAAAAADXgAAAAADfgAAAAAAAAAAAAAAfgAAAAAAUAAAAAAAewAAAAABewAAAAADewAAAAAAewAAAAACfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAaQAAAAADXgAAAAADXgAAAAABXgAAAAADfgAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAewAAAAADewAAAAACewAAAAACewAAAAABfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAbgAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAbgAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAALwAAAAAALwAAAAAALwAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAbgAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAALwAAAAAALwAAAAAALwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAXgAAAAACXgAAAAACXgAAAAACXgAAAAABfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAUAAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAbQAAAAAAXgAAAAADXgAAAAABXgAAAAADXgAAAAAD
version: 6
-4,0:
ind: -4,0
@@ -158,7 +159,7 @@ entities:
version: 6
-4,-2:
ind: -4,-2
- tiles: fgAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAATgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAATgAAAAACfgAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAATgAAAAADfgAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAIAAAAAADfgAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAKQAAAAADfgAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAIAAAAAADAAAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAIAAAAAACAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAUAAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAUAAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAUAAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAKQAAAAACKQAAAAAAKQAAAAABKQAAAAAAIAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAKQAAAAACKQAAAAADKQAAAAABKQAAAAABIAAAAAACAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAUAAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAKQAAAAABKQAAAAAAKQAAAAABKQAAAAABIAAAAAAC
+ tiles: fgAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAATgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAATgAAAAACfgAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAATgAAAAADfgAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAIAAAAAADfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAKQAAAAADfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAIAAAAAADfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAIAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAUAAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAUAAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAUAAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAKQAAAAACKQAAAAAAKQAAAAABKQAAAAAAIAAAAAABfgAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAKQAAAAACKQAAAAADKQAAAAABKQAAAAABIAAAAAACfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAUAAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAKQAAAAABKQAAAAAAKQAAAAABKQAAAAABIAAAAAAC
version: 6
1,-3:
ind: 1,-3
@@ -268,6 +269,10 @@ entities:
ind: -2,-5
tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
+ -5,-2:
+ ind: -5,-2
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
- type: Broadphase
- type: Physics
bodyStatus: InAir
@@ -284,12 +289,21 @@ entities:
chunkCollection:
version: 2
nodes:
+ - node:
+ angle: 1.5707963267948966 rad
+ color: '#FFFFFFFF'
+ id: Arrows
+ decals:
+ 877: -41,-42
+ 878: -41,-40
+ 879: -41,-44
+ 880: -41,-46
- node:
color: '#FFFFFFFF'
id: BotRight
decals:
- 347: -39,1
- 348: -39,2
+ 345: -39,1
+ 346: -39,2
- node:
color: '#FFFFFFFF'
id: Box
@@ -307,84 +321,84 @@ entities:
16: -33,-40
17: -34,-40
18: -33,-36
- 541: -53,-31
- 542: -53,-32
- 543: -53,-33
- 544: -53,-34
- 549: -46,-19
+ 539: -53,-31
+ 540: -53,-32
+ 541: -53,-33
+ 542: -53,-34
+ 547: -46,-19
- node:
color: '#FFFFFFFF'
id: BrickTileDarkCornerNe
decals:
144: -8,5
- 694: 18,-18
- 740: 26,-17
- 849: 30,-14
- 850: 34,-18
+ 692: 18,-18
+ 738: 26,-17
+ 847: 30,-14
+ 848: 34,-18
- node:
color: '#FFFFFFFF'
id: BrickTileDarkCornerNw
decals:
143: -9,5
- 700: 17,-18
- 741: 21,-17
+ 698: 17,-18
+ 739: 21,-17
- node:
color: '#FFFFFFFF'
id: BrickTileDarkCornerSe
decals:
145: -8,2
- 701: 18,-20
- 742: 26,-20
+ 699: 18,-20
+ 740: 26,-20
- node:
color: '#FFFFFFFF'
id: BrickTileDarkCornerSw
decals:
146: -9,2
- 323: -42,-27
- 702: 17,-20
- 743: 21,-20
- 848: 30,-18
+ 321: -42,-27
+ 700: 17,-20
+ 741: 21,-20
+ 846: 30,-18
- node:
color: '#FFFFFFFF'
id: BrickTileDarkEndE
decals:
- 874: 27,-14
+ 872: 27,-14
- node:
color: '#FFFFFFFF'
id: BrickTileDarkEndN
decals:
- 804: 25,-9
+ 802: 25,-9
- node:
color: '#FFFFFFFF'
id: BrickTileDarkEndS
decals:
- 805: 34,-19
+ 803: 34,-19
- node:
color: '#FFFFFFFF'
id: BrickTileDarkEndW
decals:
142: -12,4
- 806: 21,-14
- 873: 29,-14
+ 804: 21,-14
+ 871: 29,-14
- node:
color: '#FFFFFFFF'
id: BrickTileDarkInnerNe
decals:
- 837: 25,-14
- 847: 30,-18
+ 835: 25,-14
+ 845: 30,-18
- node:
color: '#FFFFFFFF'
id: BrickTileDarkInnerNw
decals:
155: -9,4
- 838: 25,-14
+ 836: 25,-14
- node:
color: '#FFFFFFFF'
id: BrickTileDarkInnerSw
decals:
154: -9,4
- 842: 30,-14
- 843: 34,-18
+ 840: 30,-14
+ 841: 34,-18
- node:
color: '#FFFFFFFF'
id: BrickTileDarkLineE
@@ -392,116 +406,116 @@ entities:
117: 38,-39
152: -8,3
153: -8,4
- 703: 18,-19
- 744: 26,-19
- 745: 26,-18
- 832: 25,-10
- 834: 25,-11
- 835: 25,-12
- 836: 25,-13
- 844: 30,-15
- 845: 30,-16
- 846: 30,-17
- 851: 21,-4
- 852: 21,-5
- 853: 21,-6
- 854: 21,-7
- 855: 21,-8
- 856: 21,-9
- 857: 21,-10
- 858: 21,-11
+ 701: 18,-19
+ 742: 26,-19
+ 743: 26,-18
+ 830: 25,-10
+ 832: 25,-11
+ 833: 25,-12
+ 834: 25,-13
+ 842: 30,-15
+ 843: 30,-16
+ 844: 30,-17
+ 849: 21,-4
+ 850: 21,-5
+ 851: 21,-6
+ 852: 21,-7
+ 853: 21,-8
+ 854: 21,-9
+ 855: 21,-10
+ 856: 21,-11
- node:
color: '#FFFFFFFF'
id: BrickTileDarkLineN
decals:
150: -11,4
151: -10,4
- 749: 22,-17
- 751: 23,-17
- 752: 24,-17
- 753: 25,-17
- 825: 26,-14
- 826: 31,-18
- 827: 32,-18
- 828: 33,-18
- 839: 22,-14
- 840: 23,-14
- 841: 24,-14
+ 747: 22,-17
+ 749: 23,-17
+ 750: 24,-17
+ 751: 25,-17
+ 823: 26,-14
+ 824: 31,-18
+ 825: 32,-18
+ 826: 33,-18
+ 837: 22,-14
+ 838: 23,-14
+ 839: 24,-14
- node:
color: '#FFFFFFFF'
id: BrickTileDarkLineS
decals:
148: -10,4
149: -11,4
- 326: -41,-27
- 327: -40,-27
- 328: -39,-27
- 329: -38,-27
- 330: -37,-27
- 331: -36,-27
- 332: -35,-27
- 754: 22,-20
- 756: 23,-20
- 759: 24,-20
- 761: 25,-20
- 807: 22,-14
- 808: 23,-14
- 809: 24,-14
- 810: 25,-14
- 811: 26,-14
- 812: 31,-18
- 813: 32,-18
- 814: 33,-18
+ 324: -41,-27
+ 325: -40,-27
+ 326: -39,-27
+ 327: -38,-27
+ 328: -37,-27
+ 329: -36,-27
+ 330: -35,-27
+ 752: 22,-20
+ 754: 23,-20
+ 757: 24,-20
+ 759: 25,-20
+ 805: 22,-14
+ 806: 23,-14
+ 807: 24,-14
+ 808: 25,-14
+ 809: 26,-14
+ 810: 31,-18
+ 811: 32,-18
+ 812: 33,-18
- node:
color: '#FFFFFFFF'
id: BrickTileDarkLineW
decals:
147: -9,3
- 324: -42,-26
- 325: -42,-25
- 705: 17,-19
- 763: 21,-19
- 764: 21,-18
- 816: 25,-13
- 817: 25,-12
- 818: 25,-11
- 819: 25,-10
- 820: 30,-15
- 821: 30,-16
- 822: 30,-17
+ 322: -42,-26
+ 323: -42,-25
+ 703: 17,-19
+ 761: 21,-19
+ 762: 21,-18
+ 814: 25,-13
+ 815: 25,-12
+ 816: 25,-11
+ 817: 25,-10
+ 818: 30,-15
+ 819: 30,-16
+ 820: 30,-17
- node:
color: '#FFFFFFFF'
id: BrickTileSteelCornerNe
decals:
86: -17,-25
- 486: 13,17
- 650: 31,0
+ 484: 13,17
+ 648: 31,0
- node:
color: '#FFFFFFFF'
id: BrickTileSteelCornerNw
decals:
87: -20,-25
- 485: 5,17
- 651: 23,0
+ 483: 5,17
+ 649: 23,0
- node:
color: '#FFFFFFFF'
id: BrickTileSteelCornerSe
decals:
- 497: 13,15
- 652: 31,-5
+ 495: 13,15
+ 650: 31,-5
- node:
color: '#FFFFFFFF'
id: BrickTileSteelCornerSw
decals:
- 496: 5,15
- 653: 23,-5
+ 494: 5,15
+ 651: 23,-5
- node:
color: '#FFFFFFFF'
id: BrickTileSteelEndE
decals:
- 860: 19,-7
- 861: 19,-4
- 862: 19,-10
+ 858: 19,-7
+ 859: 19,-4
+ 860: 19,-10
- node:
color: '#FFFFFFFF'
id: BrickTileSteelEndN
@@ -518,33 +532,33 @@ entities:
color: '#FFFFFFFF'
id: BrickTileSteelInnerNe
decals:
- 322: -49,-28
- 415: -39,-51
+ 320: -49,-28
+ 413: -39,-51
- node:
color: '#FFFFFFFF'
id: BrickTileSteelInnerNw
decals:
- 321: -45,-28
- 414: -37,-51
+ 319: -45,-28
+ 412: -37,-51
- node:
color: '#FFFFFFFF'
id: BrickTileSteelInnerSe
decals:
- 319: -49,-25
- 413: -39,-49
+ 317: -49,-25
+ 411: -39,-49
- node:
color: '#FFFFFFFF'
id: BrickTileSteelInnerSw
decals:
- 320: -45,-25
- 412: -37,-49
+ 318: -45,-25
+ 410: -37,-49
- node:
color: '#FF0000FF'
id: BrickTileSteelLineE
decals:
- 536: -49,-17
- 537: -49,-18
- 538: -49,-19
+ 534: -49,-17
+ 535: -49,-18
+ 536: -49,-19
- node:
color: '#FFFFFFFF'
id: BrickTileSteelLineE
@@ -558,61 +572,61 @@ entities:
104: 41,4
105: 41,5
106: 41,6
- 309: -49,-27
- 310: -49,-26
- 408: -39,-50
- 487: 13,16
- 654: 31,-4
- 655: 31,-3
- 656: 31,-2
- 657: 31,-1
+ 307: -49,-27
+ 308: -49,-26
+ 406: -39,-50
+ 485: 13,16
+ 652: 31,-4
+ 653: 31,-3
+ 654: 31,-2
+ 655: 31,-1
- node:
color: '#FFFFFFFF'
id: BrickTileSteelLineN
decals:
- 311: -48,-28
- 312: -47,-28
- 313: -46,-28
- 343: -40,-3
- 344: -39,-3
- 345: -38,-3
- 409: -38,-51
- 489: 6,17
- 490: 7,17
- 491: 8,17
- 492: 9,17
- 493: 10,17
- 494: 11,17
- 495: 12,17
- 658: 24,0
- 659: 25,0
- 660: 26,0
- 661: 27,0
- 662: 28,0
- 663: 30,0
- 782: 29,0
+ 309: -48,-28
+ 310: -47,-28
+ 311: -46,-28
+ 341: -40,-3
+ 342: -39,-3
+ 343: -38,-3
+ 407: -38,-51
+ 487: 6,17
+ 488: 7,17
+ 489: 8,17
+ 490: 9,17
+ 491: 10,17
+ 492: 11,17
+ 493: 12,17
+ 656: 24,0
+ 657: 25,0
+ 658: 26,0
+ 659: 27,0
+ 660: 28,0
+ 661: 30,0
+ 780: 29,0
- node:
color: '#FFFFFFFF'
id: BrickTileSteelLineS
decals:
- 316: -48,-25
- 317: -47,-25
- 318: -46,-25
- 411: -38,-49
- 498: 6,15
- 499: 7,15
- 500: 8,15
- 501: 9,15
- 502: 10,15
- 503: 11,15
- 504: 12,15
- 664: 24,-5
- 665: 26,-5
- 666: 27,-5
- 667: 28,-5
- 668: 29,-5
- 669: 30,-5
- 781: 25,-5
+ 314: -48,-25
+ 315: -47,-25
+ 316: -46,-25
+ 409: -38,-49
+ 496: 6,15
+ 497: 7,15
+ 498: 8,15
+ 499: 9,15
+ 500: 10,15
+ 501: 11,15
+ 502: 12,15
+ 662: 24,-5
+ 663: 26,-5
+ 664: 27,-5
+ 665: 28,-5
+ 666: 29,-5
+ 667: 30,-5
+ 779: 25,-5
- node:
color: '#FFFFFFFF'
id: BrickTileSteelLineW
@@ -622,339 +636,339 @@ entities:
93: -20,-28
98: -17,-26
99: -17,-27
- 314: -45,-27
- 315: -45,-26
- 410: -37,-50
- 488: 5,16
- 670: 23,-4
- 671: 23,-3
- 672: 23,-2
- 673: 23,-1
- 863: 20,-11
- 864: 20,-10
- 865: 20,-9
- 866: 20,-8
- 867: 20,-7
- 868: 20,-6
- 869: 20,-5
- 870: 20,-4
+ 312: -45,-27
+ 313: -45,-26
+ 408: -37,-50
+ 486: 5,16
+ 668: 23,-4
+ 669: 23,-3
+ 670: 23,-2
+ 671: 23,-1
+ 861: 20,-11
+ 862: 20,-10
+ 863: 20,-9
+ 864: 20,-8
+ 865: 20,-7
+ 866: 20,-6
+ 867: 20,-5
+ 868: 20,-4
- node:
color: '#34BFFF84'
id: BrickTileWhiteCornerNe
decals:
- 524: 19,1
+ 522: 19,1
- node:
color: '#34FFFFFF'
id: BrickTileWhiteCornerNe
decals:
- 555: 1,-40
+ 553: 1,-40
- node:
color: '#7FDFFFFF'
id: BrickTileWhiteCornerNe
decals:
- 565: 8,-40
+ 563: 8,-40
- node:
color: '#FFFFFFFF'
id: BrickTileWhiteCornerNe
decals:
- 359: 6,-33
+ 357: 6,-33
- node:
color: '#34BFFF84'
id: BrickTileWhiteCornerNw
decals:
- 523: 16,1
+ 521: 16,1
- node:
color: '#34FFFFFF'
id: BrickTileWhiteCornerNw
decals:
- 552: -2,-40
+ 550: -2,-40
- node:
color: '#7FDFFFFF'
id: BrickTileWhiteCornerNw
decals:
- 564: 6,-40
+ 562: 6,-40
- node:
color: '#FFFFFFFF'
id: BrickTileWhiteCornerNw
decals:
- 356: 3,-33
+ 354: 3,-33
- node:
color: '#34BFFF84'
id: BrickTileWhiteCornerSe
decals:
- 525: 19,-2
+ 523: 19,-2
- node:
color: '#34FFFFFF'
id: BrickTileWhiteCornerSe
decals:
- 558: 1,-44
+ 556: 1,-44
- node:
color: '#7FDFFFFF'
id: BrickTileWhiteCornerSe
decals:
- 567: 8,-43
+ 565: 8,-43
- node:
color: '#FFFFFFFF'
id: BrickTileWhiteCornerSe
decals:
- 445: 6,-37
+ 443: 6,-37
- node:
color: '#34BFFF84'
id: BrickTileWhiteCornerSw
decals:
- 526: 16,-2
+ 524: 16,-2
- node:
color: '#34FFFFFF'
id: BrickTileWhiteCornerSw
decals:
- 559: -2,-44
+ 557: -2,-44
- node:
color: '#7FDFFFFF'
id: BrickTileWhiteCornerSw
decals:
- 566: 6,-43
+ 564: 6,-43
- node:
color: '#FFFFFFFF'
id: BrickTileWhiteEndE
decals:
- 358: 7,-34
+ 356: 7,-34
- node:
angle: 6.283185307179586 rad
color: '#FFFFFFFF'
id: BrickTileWhiteEndE
decals:
- 517: 13,-38
+ 515: 13,-38
- node:
color: '#FFFFFFFF'
id: BrickTileWhiteEndW
decals:
- 357: 2,-34
- 363: 9,-38
+ 355: 2,-34
+ 361: 9,-38
- node:
color: '#FFFFFFFF'
id: BrickTileWhiteInnerNe
decals:
- 361: 4,-33
- 462: 3,-37
- 463: 6,-34
- 606: 6,-29
+ 359: 4,-33
+ 460: 3,-37
+ 461: 6,-34
+ 604: 6,-29
- node:
color: '#FFFFFFFF'
id: BrickTileWhiteInnerNw
decals:
- 362: 4,-33
- 460: 3,-34
- 461: 6,-37
- 607: 6,-29
+ 360: 4,-33
+ 458: 3,-34
+ 459: 6,-37
+ 605: 6,-29
- node:
color: '#FFFFFFFF'
id: BrickTileWhiteInnerSe
decals:
- 457: 6,-34
- 458: 3,-37
- 459: 3,-34
- 608: 6,-29
+ 455: 6,-34
+ 456: 3,-37
+ 457: 3,-34
+ 606: 6,-29
- node:
color: '#FFFFFFFF'
id: BrickTileWhiteInnerSw
decals:
- 455: 6,-34
- 456: 3,-34
- 609: 6,-29
+ 453: 6,-34
+ 454: 3,-34
+ 607: 6,-29
- node:
color: '#252637FF'
id: BrickTileWhiteLineE
decals:
- 610: 40,-35
- 620: 40,-36
- 621: 40,-34
+ 608: 40,-35
+ 618: 40,-36
+ 619: 40,-34
- node:
color: '#34FFFFFF'
id: BrickTileWhiteLineE
decals:
- 556: 1,-42
- 557: 1,-43
+ 554: 1,-42
+ 555: 1,-43
- node:
color: '#505050FF'
id: BrickTileWhiteLineE
decals:
- 633: 46,-35
- 634: 46,-36
- 635: 46,-37
- 636: 46,-34
- 637: 46,-33
+ 631: 46,-35
+ 632: 46,-36
+ 633: 46,-37
+ 634: 46,-34
+ 635: 46,-33
- node:
color: '#FF000066'
id: BrickTileWhiteLineE
decals:
- 533: 19,0
- 534: 19,-1
+ 531: 19,0
+ 532: 19,-1
- node:
color: '#FFFFFFFF'
id: BrickTileWhiteLineE
decals:
- 439: 3,-36
- 440: 3,-35
- 446: 6,-36
- 447: 6,-35
- 596: 6,-27
- 597: 6,-28
- 598: 6,-30
+ 437: 3,-36
+ 438: 3,-35
+ 444: 6,-36
+ 445: 6,-35
+ 594: 6,-27
+ 595: 6,-28
+ 596: 6,-30
- node:
color: '#252637FF'
id: BrickTileWhiteLineN
decals:
- 612: 40,-34
- 613: 39,-34
- 614: 38,-34
- 615: 37,-34
+ 610: 40,-34
+ 611: 39,-34
+ 612: 38,-34
+ 613: 37,-34
- node:
color: '#34FFFFFF'
id: BrickTileWhiteLineN
decals:
- 553: -1,-40
- 554: 0,-40
+ 551: -1,-40
+ 552: 0,-40
- node:
color: '#505050FF'
id: BrickTileWhiteLineN
decals:
- 638: 46,-33
- 639: 45,-33
- 640: 44,-33
- 641: 43,-33
+ 636: 46,-33
+ 637: 45,-33
+ 638: 44,-33
+ 639: 43,-33
- node:
color: '#FF000066'
id: BrickTileWhiteLineN
decals:
- 527: 17,1
- 528: 18,1
+ 525: 17,1
+ 526: 18,1
- node:
color: '#FFFFFFFF'
id: BrickTileWhiteLineN
decals:
- 360: 5,-33
- 364: 10,-38
- 441: 4,-37
- 442: 5,-37
- 594: 4,-33
- 604: 5,-29
- 605: 7,-29
+ 358: 5,-33
+ 362: 10,-38
+ 439: 4,-37
+ 440: 5,-37
+ 592: 4,-33
+ 602: 5,-29
+ 603: 7,-29
- node:
angle: 6.283185307179586 rad
color: '#FFFFFFFF'
id: BrickTileWhiteLineN
decals:
- 513: 11,-38
- 514: 12,-38
+ 511: 11,-38
+ 512: 12,-38
- node:
color: '#252637FF'
id: BrickTileWhiteLineS
decals:
- 616: 40,-36
- 617: 39,-36
- 618: 38,-36
- 619: 37,-36
+ 614: 40,-36
+ 615: 39,-36
+ 616: 38,-36
+ 617: 37,-36
- node:
color: '#34FFFFFF'
id: BrickTileWhiteLineS
decals:
- 561: -1,-44
- 562: 0,-44
+ 559: -1,-44
+ 560: 0,-44
- node:
color: '#505050FF'
id: BrickTileWhiteLineS
decals:
- 629: 43,-37
- 630: 44,-37
- 631: 45,-37
- 632: 46,-37
+ 627: 43,-37
+ 628: 44,-37
+ 629: 45,-37
+ 630: 46,-37
- node:
color: '#7FDFFFFF'
id: BrickTileWhiteLineS
decals:
- 568: 7,-43
+ 566: 7,-43
- node:
color: '#FF000066'
id: BrickTileWhiteLineS
decals:
- 529: 17,-2
- 530: 18,-2
+ 527: 17,-2
+ 528: 18,-2
- node:
color: '#FFFFFFFF'
id: BrickTileWhiteLineS
decals:
- 365: 10,-38
- 443: 4,-37
- 444: 5,-37
- 448: 5,-34
- 449: 4,-34
- 569: 3,-37
- 602: 7,-29
- 603: 5,-29
+ 363: 10,-38
+ 441: 4,-37
+ 442: 5,-37
+ 446: 5,-34
+ 447: 4,-34
+ 567: 3,-37
+ 600: 7,-29
+ 601: 5,-29
- node:
angle: 6.283185307179586 rad
color: '#FFFFFFFF'
id: BrickTileWhiteLineS
decals:
- 515: 11,-38
- 516: 12,-38
+ 513: 11,-38
+ 514: 12,-38
- node:
color: '#252637FF'
id: BrickTileWhiteLineW
decals:
- 611: 37,-35
- 622: 37,-34
- 623: 37,-36
+ 609: 37,-35
+ 620: 37,-34
+ 621: 37,-36
- node:
color: '#34FFFFFF'
id: BrickTileWhiteLineW
decals:
- 550: -2,-42
- 551: -2,-41
- 560: -2,-43
+ 548: -2,-42
+ 549: -2,-41
+ 558: -2,-43
- node:
color: '#505050FF'
id: BrickTileWhiteLineW
decals:
- 624: 43,-35
- 625: 43,-36
- 626: 43,-34
- 627: 43,-33
- 628: 43,-37
+ 622: 43,-35
+ 623: 43,-36
+ 624: 43,-34
+ 625: 43,-33
+ 626: 43,-37
- node:
color: '#FF000066'
id: BrickTileWhiteLineW
decals:
- 531: 16,-1
- 532: 16,0
+ 529: 16,-1
+ 530: 16,0
- node:
color: '#FFFFFFFF'
id: BrickTileWhiteLineW
decals:
- 450: 6,-36
- 451: 6,-35
- 452: 3,-36
- 453: 3,-35
- 454: 3,-37
- 599: 6,-30
- 600: 6,-28
- 601: 6,-27
+ 448: 6,-36
+ 449: 6,-35
+ 450: 3,-36
+ 451: 3,-35
+ 452: 3,-37
+ 597: 6,-30
+ 598: 6,-28
+ 599: 6,-27
- node:
color: '#FFFFFFFF'
id: BushDOne
decals:
- 572: 38,-22
+ 570: 38,-22
- node:
color: '#FFFFFFFF'
id: Bushe1
decals:
- 382: 7.269473,-2.0562599
+ 380: 7.269473,-2.0562599
- node:
color: '#FFFFFFFF'
id: Bushe2
decals:
- 381: 10.660098,-2.024987
- 573: 39,-22
+ 379: 10.660098,-2.024987
+ 571: 39,-22
- node:
cleanable: True
color: '#FFFFFFFF'
@@ -966,7 +980,7 @@ entities:
color: '#FFFFFFFF'
id: Bushe3
decals:
- 380: 11.050723,-2.1500747
+ 378: 11.050723,-2.1500747
- node:
cleanable: True
color: '#FFFFFFFF'
@@ -978,30 +992,30 @@ entities:
color: '#FFFFFFFF'
id: Bushe4
decals:
- 379: 6.816348,-2.1188037
- 578: 46,-22
+ 377: 6.816348,-2.1188037
+ 576: 46,-22
- node:
color: '#FFFFFFFF'
id: Bushg3
decals:
- 574: 40,-22
+ 572: 40,-22
- node:
color: '#FFFFFFFF'
id: Bushj3
decals:
- 575: 42,-22
+ 573: 42,-22
- node:
color: '#FFFFFFFF'
id: Bushk2
decals:
- 396: 2.7216585,-2.0846055
+ 394: 2.7216585,-2.0846055
- node:
color: '#FFFFFFFF'
id: Bushk3
decals:
- 395: 0.5549917,-2.0533326
- 579: 49,-22
- 586: 40,-26
+ 393: 0.5549917,-2.0533326
+ 577: 49,-22
+ 584: 40,-26
- node:
cleanable: True
color: '#FFFFFFFF'
@@ -1012,37 +1026,37 @@ entities:
color: '#FFFFFFFF'
id: Bushl4
decals:
- 576: 41,-22
- 587: 37,-26
+ 574: 41,-22
+ 585: 37,-26
- node:
color: '#FFFFFFFF'
id: Bushn1
decals:
63: -29.570997,-20.070805
67: -25.456413,-20.206316
- 397: 1.6279085,-2.063757
- 577: 43,-22
+ 395: 1.6279085,-2.063757
+ 575: 43,-22
- node:
color: '#52B4E996'
id: CheckerNESW
decals:
- 416: 2,-32
- 417: 3,-32
- 418: 7,-32
- 419: 7,-33
- 420: 7,-35
- 421: 7,-36
- 422: 2,-36
- 423: 2,-35
- 424: 5,-38
- 464: 2,-37
- 465: 2,-38
- 466: 6,-38
- 467: 7,-38
- 468: 7,-37
- 469: 6,-32
- 470: 5,-32
- 471: 2,-33
+ 414: 2,-32
+ 415: 3,-32
+ 416: 7,-32
+ 417: 7,-33
+ 418: 7,-35
+ 419: 7,-36
+ 420: 2,-36
+ 421: 2,-35
+ 422: 5,-38
+ 462: 2,-37
+ 463: 2,-38
+ 464: 6,-38
+ 465: 7,-38
+ 466: 7,-37
+ 467: 6,-32
+ 468: 5,-32
+ 469: 2,-33
- node:
color: '#9FED5896'
id: CheckerNESW
@@ -1061,55 +1075,55 @@ entities:
color: '#A4C9DAFF'
id: CheckerNESW
decals:
- 595: 4,-32
+ 593: 4,-32
- node:
color: '#951710FF'
id: Delivery
decals:
- 859: 41,-2
+ 857: 41,-2
- node:
color: '#FFFFFFFF'
id: Delivery
decals:
- 511: -13.001509,-32.022694
- 570: -42,-14
- 571: -43,-14
+ 509: -13.001509,-32.022694
+ 568: -42,-14
+ 569: -43,-14
- node:
cleanable: True
color: '#FFFFFFFF'
id: Delivery
decals:
- 505: -13,-33
+ 503: -13,-33
- node:
color: '#FF5C5CFF'
id: DeliveryGreyscale
decals:
- 644: 35,-7
- 645: 35,-8
- 646: 35,-9
- 647: 35,-10
- 674: 29,-11
- 675: 30,-11
- 676: 31,-11
+ 642: 35,-7
+ 643: 35,-8
+ 644: 35,-9
+ 645: 35,-10
+ 672: 29,-11
+ 673: 30,-11
+ 674: 31,-11
- node:
angle: 4.71238898038469 rad
color: '#FFFFFFFF'
id: DeliveryGreyscale
decals:
- 507: -7.990714,-34.033375
- 508: -8.006339,-35.048996
- 509: -7.990714,-36.03337
- 510: -8.006339,-37.017746
+ 505: -7.990714,-34.033375
+ 506: -8.006339,-35.048996
+ 507: -7.990714,-36.03337
+ 508: -8.006339,-37.017746
- node:
color: '#D381C996'
id: DiagonalCheckerAOverlay
decals:
- 265: -31,-11
- 266: -30,-11
- 267: -31,-9
- 268: -30,-9
- 273: -30,-10
- 274: -31,-10
+ 263: -31,-11
+ 264: -30,-11
+ 265: -31,-9
+ 266: -30,-9
+ 271: -30,-10
+ 272: -31,-10
- node:
color: '#DE3A3A96'
id: DiagonalCheckerAOverlay
@@ -1144,114 +1158,114 @@ entities:
id: Dirt
decals:
110: 19,-5
- 253: 4,-16
- 286: -52,-4
- 295: 18.962013,12.027142
+ 251: 4,-16
+ 284: -52,-4
+ 293: 18.962013,12.027142
- node:
cleanable: True
angle: -1.5707963267948966 rad
color: '#FFFFFFFF'
id: DirtHeavy
decals:
- 252: 11,-11
+ 250: 11,-11
- node:
cleanable: True
color: '#FFFFFFFF'
id: DirtHeavy
decals:
109: 16,-8
- 234: 8,3
- 235: 14,17
- 250: -5,0
- 285: -20,-12
- 297: 21,11
- 337: -43,8
+ 232: 8,3
+ 233: 14,17
+ 248: -5,0
+ 283: -20,-12
+ 295: 21,11
+ 335: -43,8
- node:
cleanable: True
color: '#FFFFFFFF'
id: DirtLight
decals:
107: 17,-6
- 230: -38.097836,-16.711924
- 231: -36.792118,-22.963575
- 236: 10,13
- 237: 18,-5
- 238: 15,-14
- 239: 24.508926,-23.4825
- 240: 36.185944,-24.985134
- 247: -23,0
- 248: -30,-1
- 249: -43,-2
- 277: -2,-45
- 278: -4,-42
- 296: 20,11
- 298: 19,-19
- 299: 11,-12
- 302: -2,-23
- 338: -43,10
- 339: -42,8
+ 228: -38.097836,-16.711924
+ 229: -36.792118,-22.963575
+ 234: 10,13
+ 235: 18,-5
+ 236: 15,-14
+ 237: 24.508926,-23.4825
+ 238: 36.185944,-24.985134
+ 245: -23,0
+ 246: -30,-1
+ 247: -43,-2
+ 275: -2,-45
+ 276: -4,-42
+ 294: 20,11
+ 296: 19,-19
+ 297: 11,-12
+ 300: -2,-23
+ 336: -43,10
+ 337: -42,8
- node:
cleanable: True
angle: 0.7853981633974483 rad
color: '#FFFFFFFF'
id: DirtLight
decals:
- 279: 13,-24
- 280: 9,-1
- 281: -10,-13
- 282: -5,-24
- 283: -19,-23
- 284: -35,-23
- 300: 21,-30
+ 277: 13,-24
+ 278: 9,-1
+ 279: -10,-13
+ 280: -5,-24
+ 281: -19,-23
+ 282: -35,-23
+ 298: 21,-30
- node:
cleanable: True
color: '#FFFFFFFF'
id: DirtMedium
decals:
108: 19,-8
- 232: -18,-26
- 233: -6,-5
- 246: -15,-2
- 287: -50,-5
- 301: 9,-25
+ 230: -18,-26
+ 231: -6,-5
+ 244: -15,-2
+ 285: -50,-5
+ 299: 9,-25
- node:
cleanable: True
angle: 1.5707963267948966 rad
color: '#FFFFFFFF'
id: DirtMedium
decals:
- 251: 11,1
+ 249: 11,1
- node:
color: '#FFFFFFFF'
id: Flowersbr1
decals:
- 349: 0.46875298,-52.976757
- 350: 1.250003,-52.945484
- 394: 3.5133247,-2.0533326
- 580: 50,-22
+ 347: 0.46875298,-52.976757
+ 348: 1.250003,-52.945484
+ 392: 3.5133247,-2.0533326
+ 578: 50,-22
- node:
color: '#FFFFFFFF'
id: Flowersbr2
decals:
- 393: 4.2945747,-2.0950284
- 584: 38,-26
+ 391: 4.2945747,-2.0950284
+ 582: 38,-26
- node:
color: '#FFFFFFFF'
id: Flowersbr3
decals:
- 353: 1.9687531,-53.0393
- 354: -0.03124702,-53.01845
- 392: 5.0758247,-2.0950284
+ 351: 1.9687531,-53.0393
+ 352: -0.03124702,-53.01845
+ 390: 5.0758247,-2.0950284
- node:
color: '#FFFFFFFF'
id: Flowerspv1
decals:
- 391: -0.26523253,-2.1367245
+ 389: -0.26523253,-2.1367245
- node:
color: '#FFFFFFFF'
id: Flowerspv2
decals:
- 585: 39,-26
+ 583: 39,-26
- node:
cleanable: True
color: '#FFFFFFFF'
@@ -1262,20 +1276,20 @@ entities:
color: '#FFFFFFFF'
id: Flowerspv3
decals:
- 389: -1.8485659,-1.9803662
- 390: -1.0985659,-2.0950284
+ 387: -1.8485659,-1.9803662
+ 388: -1.0985659,-2.0950284
- node:
color: '#FFFFFFFF'
id: Flowersy1
decals:
65: -25.831413,-20.112501
- 378: 8.925723,-2.1344383
+ 376: 8.925723,-2.1344383
- node:
color: '#FFFFFFFF'
id: Flowersy2
decals:
62: -29.998081,-20.195892
- 583: 45,-22
+ 581: 45,-22
- node:
cleanable: True
color: '#FFFFFFFF'
@@ -1288,7 +1302,7 @@ entities:
id: Flowersy3
decals:
61: -29.102247,-20.133348
- 377: 9.847598,-2.1188037
+ 375: 9.847598,-2.1188037
- node:
cleanable: True
color: '#FFFFFFFF'
@@ -1302,9 +1316,9 @@ entities:
id: Flowersy4
decals:
66: -25.081413,-20.091654
- 376: 7.972598,-2.0875309
- 581: 48,-22
- 582: 44,-22
+ 374: 7.972598,-2.0875309
+ 579: 48,-22
+ 580: 44,-22
- node:
cleanable: True
color: '#FFFFFFFF'
@@ -1316,17 +1330,17 @@ entities:
color: '#52B4E996'
id: FullTileOverlayGreyscale
decals:
- 435: 4,-36
- 436: 5,-36
- 437: 4,-35
- 438: 5,-35
- 472: 1,-38
- 473: 1,-37
+ 433: 4,-36
+ 434: 5,-36
+ 435: 4,-35
+ 436: 5,-35
+ 470: 1,-38
+ 471: 1,-37
- node:
color: '#FFFFFFFF'
id: Grassd2
decals:
- 355: 1.0208364,-52.95591
+ 353: 1.0208364,-52.95591
- node:
cleanable: True
color: '#FFFFFFFF'
@@ -1343,75 +1357,75 @@ entities:
color: '#FFFFFFFF'
id: Grasse3
decals:
- 351: 2.0104196,-52.976757
- 352: -0.020830393,-52.96633
+ 349: 2.0104196,-52.976757
+ 350: -0.020830393,-52.96633
- node:
color: '#52B4E996'
id: HalfTileOverlayGreyscale
decals:
- 427: -1,-36
- 428: 0,-36
- 430: 9,-37
- 431: 10,-37
- 432: 11,-37
- 518: 12,-37
- 519: 13,-37
+ 425: -1,-36
+ 426: 0,-36
+ 428: 9,-37
+ 429: 10,-37
+ 430: 11,-37
+ 516: 12,-37
+ 517: 13,-37
- node:
color: '#9D9D97FF'
id: HalfTileOverlayGreyscale
decals:
- 738: 27,-3
- 739: 28,-3
- 773: 30,-5
+ 736: 27,-3
+ 737: 28,-3
+ 771: 30,-5
- node:
color: '#A4C9DAFF'
id: HalfTileOverlayGreyscale
decals:
- 591: 10,-27
- 592: 11,-27
- 593: 9,-27
+ 589: 10,-27
+ 590: 11,-27
+ 591: 9,-27
- node:
color: '#F9801DBC'
id: HalfTileOverlayGreyscale
decals:
- 370: -1,-27
- 371: 0,-27
- 372: 1,-27
+ 368: -1,-27
+ 369: 0,-27
+ 370: 1,-27
- node:
angle: 6.283185307179586 rad
color: '#34B8FF88'
id: HalfTileOverlayGreyscale180
decals:
- 520: 12,-39
- 521: 11,-39
- 522: 13,-39
+ 518: 12,-39
+ 519: 11,-39
+ 520: 13,-39
- node:
color: '#52B4E996'
id: HalfTileOverlayGreyscale180
decals:
- 433: 10,-39
- 434: 9,-39
+ 431: 10,-39
+ 432: 9,-39
- node:
color: '#9D9D97FF'
id: HalfTileOverlayGreyscale180
decals:
- 768: 27,-3
- 769: 28,-3
- 778: 24,0
+ 766: 27,-3
+ 767: 28,-3
+ 776: 24,0
- node:
color: '#A4C9DAFF'
id: HalfTileOverlayGreyscale180
decals:
- 588: 10,-30
- 589: 9,-30
- 590: 11,-30
+ 586: 10,-30
+ 587: 9,-30
+ 588: 11,-30
- node:
color: '#F9801DBC'
id: HalfTileOverlayGreyscale180
decals:
- 373: -1,-30
- 374: 0,-30
- 375: 1,-30
+ 371: -1,-30
+ 372: 0,-30
+ 373: 1,-30
- node:
color: '#0000009A'
id: HalfTileOverlayGreyscale270
@@ -1423,68 +1437,68 @@ entities:
color: '#52B4E996'
id: HalfTileOverlayGreyscale270
decals:
- 425: -2,-38
- 426: -2,-37
- 474: 9,-35
- 475: 9,-34
- 476: 9,-33
- 477: 9,-32
+ 423: -2,-38
+ 424: -2,-37
+ 472: 9,-35
+ 473: 9,-34
+ 474: 9,-33
+ 475: 9,-32
- node:
color: '#9D9D97FF'
id: HalfTileOverlayGreyscale270
decals:
- 690: 26,-1
- 691: 26,-2
- 692: 26,-3
- 693: 26,-4
- 711: 27,-2
- 755: 29,-4
- 757: 29,-3
+ 688: 26,-1
+ 689: 26,-2
+ 690: 26,-3
+ 691: 26,-4
+ 709: 27,-2
+ 753: 29,-4
+ 755: 29,-3
+ 756: 29,-2
758: 29,-2
- 760: 29,-2
- 762: 29,-1
- 770: 28,-4
+ 760: 29,-1
+ 768: 28,-4
- node:
color: '#D381C996'
id: HalfTileOverlayGreyscale270
decals:
- 260: -36,-9
- 261: -36,-12
- 262: -36,-11
- 263: -36,-10
- 305: -36,-8
+ 258: -36,-9
+ 259: -36,-12
+ 260: -36,-11
+ 261: -36,-10
+ 303: -36,-8
- node:
color: '#F9801DBC'
id: HalfTileOverlayGreyscale270
decals:
- 368: -2,-29
- 369: -2,-28
+ 366: -2,-29
+ 367: -2,-28
- node:
color: '#9D9D97FF'
id: HalfTileOverlayGreyscale90
decals:
- 695: 25,-1
- 696: 25,-2
- 697: 25,-2
- 698: 25,-3
- 699: 25,-4
- 708: 26,-2
- 714: 27,-2
- 746: 28,-3
- 747: 28,-4
- 748: 28,-2
- 750: 28,-1
+ 693: 25,-1
+ 694: 25,-2
+ 695: 25,-2
+ 696: 25,-3
+ 697: 25,-4
+ 706: 26,-2
+ 712: 27,-2
+ 744: 28,-3
+ 745: 28,-4
+ 746: 28,-2
+ 748: 28,-1
- node:
color: '#FFFFFFFF'
id: LoadingArea
decals:
- 540: -21.999445,-42.990807
+ 538: -21.999445,-42.990807
- node:
angle: 3.141592653589793 rad
color: '#FFFFFFFF'
id: LoadingArea
decals:
- 539: -17.999445,-43.022057
+ 537: -17.999445,-43.022057
- node:
color: '#FFFFFFFF'
id: MiniTileDarkLineE
@@ -1505,84 +1519,84 @@ entities:
color: '#9C2020FF'
id: MiniTileDiagonalCheckerBOverlay
decals:
- 684: 17,-18
- 685: 18,-18
- 686: 18,-19
- 687: 17,-19
- 688: 17,-20
- 689: 18,-20
+ 682: 17,-18
+ 683: 18,-18
+ 684: 18,-19
+ 685: 17,-19
+ 686: 17,-20
+ 687: 18,-20
- node:
color: '#951710FF'
id: MiniTileLineOverlayN
decals:
- 679: 29,-7
- 680: 32,-7
- 681: 33,-7
+ 677: 29,-7
+ 678: 32,-7
+ 679: 33,-7
- node:
color: '#951710FF'
id: MiniTileLineOverlayS
decals:
- 649: 33,-10
- 683: 32,-10
- 815: 29,-10
- 823: 30,-10
- 824: 31,-10
+ 647: 33,-10
+ 681: 32,-10
+ 813: 29,-10
+ 821: 30,-10
+ 822: 31,-10
- node:
color: '#951710FF'
id: MiniTileLineOverlayW
decals:
- 648: 29,-9
- 677: 29,-8
- 678: 29,-10
- 682: 29,-7
+ 646: 29,-9
+ 675: 29,-8
+ 676: 29,-10
+ 680: 29,-7
- node:
color: '#FFFFFFFF'
id: MiniTileSteelCornerNe
decals:
- 272: -30,-9
+ 270: -30,-9
- node:
color: '#FFFFFFFF'
id: MiniTileSteelCornerNw
decals:
- 271: -31,-9
+ 269: -31,-9
- node:
color: '#FFFFFFFF'
id: MiniTileSteelCornerSe
decals:
- 270: -30,-11
+ 268: -30,-11
- node:
color: '#FFFFFFFF'
id: MiniTileSteelCornerSw
decals:
- 269: -31,-11
+ 267: -31,-11
- node:
color: '#FFFFFFFF'
id: MiniTileSteelLineE
decals:
- 275: -30,-10
+ 273: -30,-10
- node:
color: '#FFFFFFFF'
id: MiniTileSteelLineW
decals:
- 276: -31,-10
+ 274: -31,-10
- node:
color: '#951710FF'
id: MiniTileWhiteLineE
decals:
- 829: 34,-10
- 830: 34,-9
- 831: 34,-8
- 833: 34,-7
+ 827: 34,-10
+ 828: 34,-9
+ 829: 34,-8
+ 831: 34,-7
- node:
color: '#D381C996'
id: MonoOverlay
decals:
- 254: -36,-20
- 255: -34,-20
- 256: -32,-20
- 257: -36,-18
- 258: -36,-16
- 259: -36,-14
+ 252: -36,-20
+ 253: -34,-20
+ 254: -32,-20
+ 255: -36,-18
+ 256: -36,-16
+ 257: -36,-14
- node:
color: '#DE3A3A96'
id: OffsetCheckerAOverlay
@@ -1602,184 +1616,184 @@ entities:
color: '#9C2020FF'
id: OffsetCheckerBOverlay
decals:
- 712: 21,-17
- 713: 22,-17
- 715: 23,-17
- 716: 24,-17
- 717: 25,-17
- 718: 26,-17
- 719: 26,-18
- 720: 25,-18
- 721: 24,-18
- 722: 23,-18
- 723: 22,-18
- 725: 21,-18
- 726: 21,-19
- 727: 22,-19
- 728: 23,-19
- 729: 24,-19
- 730: 25,-19
- 731: 26,-19
- 732: 26,-20
- 733: 25,-20
- 734: 24,-20
- 735: 23,-20
- 736: 22,-20
- 737: 21,-20
- 783: 21,-14
- 784: 22,-14
- 785: 23,-14
- 786: 24,-14
- 787: 25,-14
- 788: 25,-13
- 789: 25,-12
- 790: 25,-11
- 791: 25,-10
- 792: 25,-9
- 793: 26,-14
- 794: 30,-14
- 795: 30,-15
- 796: 30,-16
- 797: 30,-17
- 798: 30,-18
- 799: 31,-18
- 800: 32,-18
- 801: 33,-18
- 802: 34,-18
- 803: 34,-19
- 871: 29,-14
- 872: 27,-14
+ 710: 21,-17
+ 711: 22,-17
+ 713: 23,-17
+ 714: 24,-17
+ 715: 25,-17
+ 716: 26,-17
+ 717: 26,-18
+ 718: 25,-18
+ 719: 24,-18
+ 720: 23,-18
+ 721: 22,-18
+ 723: 21,-18
+ 724: 21,-19
+ 725: 22,-19
+ 726: 23,-19
+ 727: 24,-19
+ 728: 25,-19
+ 729: 26,-19
+ 730: 26,-20
+ 731: 25,-20
+ 732: 24,-20
+ 733: 23,-20
+ 734: 22,-20
+ 735: 21,-20
+ 781: 21,-14
+ 782: 22,-14
+ 783: 23,-14
+ 784: 24,-14
+ 785: 25,-14
+ 786: 25,-13
+ 787: 25,-12
+ 788: 25,-11
+ 789: 25,-10
+ 790: 25,-9
+ 791: 26,-14
+ 792: 30,-14
+ 793: 30,-15
+ 794: 30,-16
+ 795: 30,-17
+ 796: 30,-18
+ 797: 31,-18
+ 798: 32,-18
+ 799: 33,-18
+ 800: 34,-18
+ 801: 34,-19
+ 869: 29,-14
+ 870: 27,-14
- node:
color: '#FFFFFFFF'
id: OffsetCheckerBOverlay
decals:
- 535: -52,-18
+ 533: -52,-18
- node:
color: '#9D9D97FF'
id: QuarterTileOverlayGreyscale
decals:
- 704: 26,-5
- 767: 29,-5
- 774: 31,-5
+ 702: 26,-5
+ 765: 29,-5
+ 772: 31,-5
- node:
color: '#9D9D97FF'
id: QuarterTileOverlayGreyscale180
decals:
- 706: 25,0
- 710: 26,-1
- 765: 28,0
- 777: 23,0
+ 704: 25,0
+ 708: 26,-1
+ 763: 28,0
+ 775: 23,0
- node:
color: '#9D9D97FF'
id: QuarterTileOverlayGreyscale270
decals:
- 707: 26,0
- 724: 27,-1
- 772: 28,-2
- 780: 29,0
+ 705: 26,0
+ 722: 27,-1
+ 770: 28,-2
+ 778: 29,0
- node:
color: '#9D9D97FF'
id: QuarterTileOverlayGreyscale90
decals:
- 709: 26,-3
- 766: 28,-5
- 771: 27,-4
- 779: 25,-5
+ 707: 26,-3
+ 764: 28,-5
+ 769: 27,-4
+ 777: 25,-5
- node:
color: '#FFFFFFFF'
id: SpaceStationSign1
decals:
- 478: 6,16
+ 476: 6,16
- node:
color: '#FFFFFFFF'
id: SpaceStationSign2
decals:
- 479: 7,16
+ 477: 7,16
- node:
color: '#FFFFFFFF'
id: SpaceStationSign3
decals:
- 480: 8,16
+ 478: 8,16
- node:
color: '#FFFFFFFF'
id: SpaceStationSign4
decals:
- 481: 9,16
+ 479: 9,16
- node:
color: '#FFFFFFFF'
id: SpaceStationSign5
decals:
- 482: 10,16
+ 480: 10,16
- node:
color: '#FFFFFFFF'
id: SpaceStationSign6
decals:
- 483: 11,16
+ 481: 11,16
- node:
color: '#FFFFFFFF'
id: SpaceStationSign7
decals:
- 484: 12,16
+ 482: 12,16
- node:
color: '#FFFFFFFF'
id: StandClear
decals:
- 506: -8.9951935,-32.015106
+ 504: -8.9951935,-32.015106
- node:
color: '#37789B7F'
id: ThreeQuarterTileOverlayGreyscale
decals:
- 878: 18,-1
+ 876: 18,-1
- node:
color: '#52B4E996'
id: ThreeQuarterTileOverlayGreyscale
decals:
- 429: -2,-36
+ 427: -2,-36
- node:
color: '#F9801DBC'
id: ThreeQuarterTileOverlayGreyscale
decals:
- 366: -2,-27
+ 364: -2,-27
- node:
color: '#37789B7F'
id: ThreeQuarterTileOverlayGreyscale180
decals:
- 877: 17,0
+ 875: 17,0
- node:
color: '#37789B7F'
id: ThreeQuarterTileOverlayGreyscale270
decals:
- 876: 18,0
+ 874: 18,0
- node:
color: '#9D9D97FF'
id: ThreeQuarterTileOverlayGreyscale270
decals:
- 775: 30,-4
+ 773: 30,-4
- node:
color: '#F9801DBC'
id: ThreeQuarterTileOverlayGreyscale270
decals:
- 367: -2,-30
+ 365: -2,-30
- node:
color: '#37789B7F'
id: ThreeQuarterTileOverlayGreyscale90
decals:
- 875: 17,-1
+ 873: 17,-1
- node:
color: '#9D9D97FF'
id: ThreeQuarterTileOverlayGreyscale90
decals:
- 776: 24,-1
+ 774: 24,-1
- node:
color: '#FFFFFFFF'
id: WarnBox
decals:
- 346: -39,5
+ 344: -39,5
- node:
color: '#7FFFFFFF'
id: WarnBoxGreyscale
decals:
- 563: 7,-40
+ 561: 7,-40
- node:
cleanable: True
color: '#FFFFFFFF'
@@ -1791,30 +1805,30 @@ entities:
id: WarnCornerSW
decals:
75: -48,-34
- 333: -37,4
+ 331: -37,4
- node:
color: '#FFFFFFFF'
id: WarnCornerSmallGreyscaleSW
decals:
- 342: -35,4
+ 340: -35,4
- node:
color: '#FFFFFFFF'
id: WarnEndS
decals:
- 340: -35,3
+ 338: -35,3
- node:
color: '#FFFFFFFF'
id: WarnLineE
decals:
- 336: -35,5
- 341: -35,4
- 548: -47,-19
+ 334: -35,5
+ 339: -35,4
+ 546: -47,-19
- node:
angle: 1.5707963267948966 rad
color: '#FFFFFFFF'
id: WarnLineE
decals:
- 512: -23.011345,-38.778404
+ 510: -23.011345,-38.778404
- node:
color: '#FFFFFFFF'
id: WarnLineN
@@ -1824,18 +1838,11 @@ entities:
72: -45,-34
73: -46,-34
74: -47,-34
- 334: -36,4
- 402: -37,-48
- 403: -38,-48
- 404: -39,-48
- 547: -46,-18
- - node:
- cleanable: True
- color: '#FFFFFFFF'
- id: WarnLineN
- decals:
- 209: -29.995993,-5.4813967
- 210: -30.011618,-5.684663
+ 332: -36,4
+ 400: -37,-48
+ 401: -38,-48
+ 402: -39,-48
+ 545: -46,-18
- node:
color: '#FFFFFFFF'
id: WarnLineS
@@ -1843,23 +1850,23 @@ entities:
3: -26,-4
4: -26,-5
5: -26,-6
- 335: -37,5
- 398: -32,-51
- 399: -32,-50
- 400: -32,-49
- 401: -32,-48
- 545: -45,-19
+ 333: -37,5
+ 396: -32,-51
+ 397: -32,-50
+ 398: -32,-49
+ 399: -32,-48
+ 543: -45,-19
- node:
color: '#FFFFFFFF'
id: WarnLineW
decals:
68: -31,-7
69: -30,-7
- 264: -32,-7
- 405: -37,-52
- 406: -38,-52
- 407: -39,-52
- 546: -46,-20
+ 262: -32,-7
+ 403: -37,-52
+ 404: -38,-52
+ 405: -39,-52
+ 544: -46,-20
- node:
cleanable: True
color: '#FFFFFFFF'
@@ -1873,35 +1880,35 @@ entities:
59: -29,-20
111: 19,5
204: -28,-24
- 241: -18,-2
- 288: -53,12
+ 239: -18,-2
+ 286: -53,12
- node:
color: '#FFFFFFFF'
id: WoodTrimThinCornerNw
decals:
58: -26,-20
203: -33,-24
- 242: -21,-2
- 292: -54,12
+ 240: -21,-2
+ 290: -54,12
- node:
color: '#FFFFFFFF'
id: WoodTrimThinEndE
decals:
- 643: 26,4
+ 641: 26,4
- node:
color: '#FFFFFFFF'
id: WoodTrimThinEndW
decals:
- 642: 25,4
+ 640: 25,4
- node:
color: '#FFFFFFFF'
id: WoodTrimThinInnerNe
decals:
53: -15,-28
54: -10,-28
- 289: -53,11
- 290: -55,12
- 308: -33,-15
+ 287: -53,11
+ 288: -55,12
+ 306: -33,-15
- node:
color: '#FFFFFFFF'
id: WoodTrimThinInnerNw
@@ -1939,13 +1946,13 @@ entities:
200: -40,-18
201: -40,-17
202: -40,-16
- 307: -33,-14
- 383: -1,3
- 384: -1,4
- 385: -1,5
- 386: -1,6
- 387: -1,7
- 388: -1,8
+ 305: -33,-14
+ 381: -1,3
+ 382: -1,4
+ 383: -1,5
+ 384: -1,6
+ 385: -1,7
+ 386: -1,8
- node:
color: '#FFFFFFFF'
id: WoodTrimThinLineN
@@ -1969,26 +1976,26 @@ entities:
206: -30,-24
207: -31,-24
208: -32,-24
- 211: 2,-12
- 212: 1,-12
- 213: 0,-12
- 214: -1,-12
- 215: -2,-12
- 216: -2,-5
- 217: -1,-5
- 218: 0,-5
- 219: 1,-5
- 220: 2,-5
- 221: 3,-5
- 222: 4,-5
- 223: 5,-5
- 224: 6,-5
- 225: 3,-12
- 226: 4,-12
- 227: 5,-12
- 243: -20,-2
- 244: -19,-2
- 306: -32,-15
+ 209: 2,-12
+ 210: 1,-12
+ 211: 0,-12
+ 212: -1,-12
+ 213: -2,-12
+ 214: -2,-5
+ 215: -1,-5
+ 216: 0,-5
+ 217: 1,-5
+ 218: 2,-5
+ 219: 3,-5
+ 220: 4,-5
+ 221: 5,-5
+ 222: 6,-5
+ 223: 3,-12
+ 224: 4,-12
+ 225: 5,-12
+ 241: -20,-2
+ 242: -19,-2
+ 304: -32,-15
- node:
color: '#FFFFFFFF'
id: WoodTrimThinLineS
@@ -2027,43 +2034,43 @@ entities:
55: -32,3
56: -32,2
57: -32,1
- 293: -54,11
- 294: -54,10
+ 291: -54,11
+ 292: -54,10
- node:
color: '#FFFFFFFF'
id: b
decals:
- 245: 3.065634,-14.026064
+ 243: 3.065634,-14.026064
- node:
cleanable: True
color: '#8932B8FF'
id: bottle
decals:
- 229: -55.860275,-1.0248116
+ 227: -55.860275,-1.0248116
- node:
cleanable: True
color: '#8932B8FF'
id: face
decals:
- 228: -56.28215,-1.1186265
+ 226: -56.28215,-1.1186265
- node:
cleanable: True
color: '#EC0300FF'
id: rune1
decals:
- 303: 27.040031,11.035053
+ 301: 27.040031,11.035053
- node:
cleanable: True
color: '#EC0300FF'
id: rune2
decals:
- 304: 24.998365,11.045477
+ 302: 24.998365,11.045477
- node:
cleanable: True
color: '#18A2D5FF'
id: shop
decals:
- 291: -51.038948,13.269489
+ 289: -51.038948,13.269489
- type: GridAtmosphere
version: 2
data:
@@ -2113,13 +2120,13 @@ entities:
-4,1:
0: 65535
-4,2:
- 0: 61183
+ 0: 61007
-3,0:
0: 65535
-3,1:
- 0: 65535
+ 0: 61439
-3,2:
- 0: 61183
+ 0: 61166
-2,0:
0: 65535
-2,1:
@@ -2367,15 +2374,13 @@ entities:
-2,-9:
0: 65535
-8,-12:
- 0: 65535
+ 0: 30583
-8,-11:
0: 65535
-8,-10:
0: 65535
-8,-9:
0: 65535
- -7,-12:
- 0: 65521
-7,-11:
0: 65535
-7,-10:
@@ -2408,8 +2413,8 @@ entities:
0: 61951
2: 3584
-10,-11:
- 0: 61945
- 3: 6
+ 0: 61937
+ 3: 14
4: 3584
-10,-10:
0: 65521
@@ -2465,7 +2470,7 @@ entities:
-11,-6:
0: 65535
-12,-13:
- 0: 65535
+ 0: 65521
-11,-13:
0: 65535
-10,-13:
@@ -2475,11 +2480,12 @@ entities:
-14,-13:
0: 52468
-13,-13:
- 0: 65534
+ 0: 65520
-14,-12:
- 0: 57292
+ 0: 53196
-14,-11:
- 0: 65535
+ 0: 61182
+ 2: 4352
-13,-12:
0: 65529
2: 6
@@ -2531,7 +2537,7 @@ entities:
-11,1:
0: 65535
-10,1:
- 0: 65535
+ 0: 32767
-12,-4:
0: 65535
-11,-4:
@@ -2544,8 +2550,6 @@ entities:
0: 65535
-1,-12:
0: 65535
- -6,-12:
- 0: 4369
0,-12:
0: 65535
1,-12:
@@ -2593,7 +2597,7 @@ entities:
5,-6:
0: 65535
-8,-13:
- 0: 65535
+ 0: 30583
-12,1:
0: 32767
-13,1:
@@ -2607,14 +2611,11 @@ entities:
4,-4:
0: 65535
4,-3:
- 0: 65023
- 6: 512
+ 0: 65535
4,-2:
- 0: 65503
- 6: 32
+ 0: 65535
4,-1:
- 0: 65533
- 6: 2
+ 0: 65535
5,-4:
0: 65535
5,-3:
@@ -2702,7 +2703,8 @@ entities:
3,3:
0: 65535
-14,-10:
- 0: 65535
+ 2: 273
+ 0: 65262
6,-10:
0: 65535
7,-10:
@@ -2724,7 +2726,7 @@ entities:
8,-9:
0: 65535
9,-10:
- 0: 65535
+ 0: 61951
9,-9:
0: 65535
1,3:
@@ -2798,15 +2800,15 @@ entities:
10,-11:
0: 65535
10,-10:
- 0: 65535
+ 0: 65279
10,-9:
0: 65535
-3,-13:
0: 65523
-2,-13:
- 0: 65535
+ 0: 65534
-2,-14:
- 0: 65535
+ 0: 61166
-1,-14:
0: 65535
-1,-13:
@@ -2820,7 +2822,7 @@ entities:
1,-13:
0: 65535
2,-13:
- 0: 65535
+ 0: 65283
3,-13:
0: 63232
12,-2:
@@ -2836,11 +2838,11 @@ entities:
3,4:
0: 65535
4,-14:
- 0: 65520
+ 0: 62192
4,-13:
0: 62071
5,-14:
- 0: 65398
+ 0: 62006
5,-13:
0: 62071
6,-14:
@@ -2874,13 +2876,13 @@ entities:
-5,3:
0: 20223
-10,2:
- 0: 30591
+ 0: 30583
-10,3:
- 0: 2047
+ 0: 7
-9,2:
- 0: 30511
+ 0: 8751
-9,3:
- 0: 10239
+ 0: 8738
10,-7:
0: 65535
9,2:
@@ -2888,7 +2890,7 @@ entities:
10,2:
0: 21855
9,-12:
- 0: 65535
+ 0: 65527
7,-15:
0: 61440
8,-15:
@@ -2902,15 +2904,15 @@ entities:
-14,1:
0: 65535
-3,3:
- 0: 28398
+ 0: 10990
-2,3:
- 0: 65503
+ 0: 56783
0,3:
0: 65535
-7,3:
0: 39417
-12,2:
- 0: 119
+ 0: 1
-12,3:
0: 34816
-11,3:
@@ -2918,13 +2920,13 @@ entities:
-11,2:
0: 65535
-12,-15:
- 0: 61727
+ 0: 4383
-12,-14:
0: 12561
-11,-15:
- 0: 61455
+ 0: 15
-10,-15:
- 0: 65535
+ 0: 57343
-10,-14:
0: 64861
-9,-15:
@@ -2936,13 +2938,15 @@ entities:
-14,-14:
0: 20224
-13,-14:
- 0: 3848
+ 0: 3840
-15,-12:
0: 3976
-15,-11:
- 0: 65535
+ 0: 240
+ 2: 65280
-15,-10:
- 0: 65535
+ 2: 4095
+ 0: 61440
-15,-9:
0: 65535
-14,-9:
@@ -2990,23 +2994,17 @@ entities:
-13,-8:
0: 65535
-8,-15:
- 0: 65535
+ 0: 30583
-8,-14:
- 0: 65535
- -7,-14:
- 0: 12851
- -7,-13:
- 0: 6615
- -6,-13:
- 0: 4352
+ 0: 30583
4,3:
0: 65534
5,3:
- 0: 65535
+ 0: 49151
6,3:
- 0: 64767
+ 0: 15615
7,3:
- 0: 63351
+ 0: 25975
10,-6:
0: 65535
11,-8:
@@ -3015,8 +3013,6 @@ entities:
0: 65535
11,-6:
0: 65535
- 8,3:
- 0: 4352
9,3:
0: 14
10,3:
@@ -3032,9 +3028,9 @@ entities:
11,-11:
0: 65535
-3,-14:
- 0: 32255
+ 0: 27648
3,-14:
- 0: 50368
+ 0: 128
12,-3:
0: 13119
12,-4:
@@ -3056,7 +3052,7 @@ entities:
13,0:
0: 17749
0,4:
- 0: 39935
+ 0: 34952
5,-15:
0: 49152
6,-15:
@@ -3078,9 +3074,9 @@ entities:
13,-7:
0: 65337
13,-6:
- 0: 65535
+ 0: 24575
13,-5:
- 0: 6109
+ 0: 6101
14,-7:
0: 65525
14,-6:
@@ -3092,7 +3088,7 @@ entities:
-3,4:
0: 15
-2,4:
- 0: 2187
+ 0: 1
-8,4:
0: 15
-7,4:
@@ -3134,29 +3130,21 @@ entities:
-15,-6:
0: 65535
-15,-5:
- 0: 65279
+ 0: 47871
-15,-8:
0: 65535
-1,3:
0: 65535
- 0,5:
- 0: 2201
1,5:
- 0: 4095
+ 0: 15
2,5:
- 0: 2303
+ 0: 14
3,5:
- 0: 4095
- -1,4:
- 0: 65535
- -1,5:
- 0: 255
+ 0: 15
-9,-14:
- 0: 65535
+ 0: 65455
-13,-15:
0: 128
- -7,-15:
- 0: 13107
-5,-9:
0: 65535
-16,-5:
@@ -3175,14 +3163,12 @@ entities:
0: 65535
-5,-11:
0: 65535
- -4,-12:
- 0: 61166
- -4,-13:
- 0: 61166
-16,-11:
- 0: 39323
+ 0: 6547
+ 2: 32768
-16,-10:
- 0: 39321
+ 0: 39185
+ 2: 136
-16,-9:
0: 39321
-16,-8:
@@ -3193,12 +3179,6 @@ entities:
0: 11776
-16,-6:
0: 52906
- -4,-15:
- 0: 57344
- -4,-14:
- 0: 61166
- -3,-15:
- 0: 4096
10,-5:
0: 65535
2,-14:
@@ -3206,9 +3186,7 @@ entities:
11,-5:
0: 63285
4,5:
- 0: 15
- 5,5:
- 0: 3
+ 0: 7
14,-8:
0: 20255
13,-11:
@@ -3272,19 +3250,19 @@ entities:
12,-13:
0: 40733
-10,-16:
- 2: 25804
+ 0: 25804
-9,-16:
- 2: 60159
+ 0: 60159
-8,-16:
- 2: 30583
+ 0: 30583
-9,-17:
- 2: 63624
+ 0: 63624
-9,-18:
- 2: 34944
+ 0: 34944
-8,-18:
- 2: 4368
+ 0: 4368
-8,-17:
- 2: 28945
+ 0: 28945
uniqueMixes:
- volume: 2500
temperature: 293.15
@@ -3376,21 +3354,6 @@ entities:
- 0
- 0
- 0
- - volume: 2500
- temperature: 293.14975
- moles:
- - 20.078888
- - 75.53487
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
chunkSize: 4
- type: OccluderTree
- type: Shuttle
@@ -4391,6 +4354,17 @@ entities:
- 13468
- type: AtmosDevice
joinedGrid: 34
+ - uid: 13836
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -54.5,-36.5
+ parent: 34
+ - type: DeviceList
+ devices:
+ - 13837
+ - type: AtmosDevice
+ joinedGrid: 34
- proto: AirCanister
entities:
- uid: 1799
@@ -4500,16 +4474,6 @@ entities:
parent: 34
- proto: AirlockAtmosphericsLocked
entities:
- - uid: 222
- components:
- - type: Transform
- pos: -49.5,-26.5
- parent: 34
- - uid: 234
- components:
- - type: Transform
- pos: -49.5,-25.5
- parent: 34
- uid: 1778
components:
- type: Transform
@@ -4751,6 +4715,16 @@ entities:
parent: 34
- proto: AirlockEngineeringLocked
entities:
+ - uid: 57
+ components:
+ - type: Transform
+ pos: -49.5,-26.5
+ parent: 34
+ - uid: 66
+ components:
+ - type: Transform
+ pos: -49.5,-25.5
+ parent: 34
- uid: 740
components:
- type: Transform
@@ -4813,128 +4787,194 @@ entities:
- type: Transform
pos: 5.5,-51.5
parent: 34
-- proto: AirlockExternalGlassCargoLocked
+- proto: AirlockExternalGlassAtmosphericsLocked
entities:
- - uid: 1802
+ - uid: 94
components:
- type: Transform
- pos: -23.5,-41.5
+ pos: -52.5,-44.5
parent: 34
- type: DeviceLinkSink
+ invokeCounter: 1
links:
- - 11768
- - 11682
+ - 1429
- type: DeviceLinkSource
linkedPorts:
- 11682:
+ 1429:
- DoorStatus: DoorBolt
- 11768:
+ - uid: 102
+ components:
+ - type: Transform
+ pos: -54.5,-40.5
+ parent: 34
+ - type: DeviceLinkSink
+ invokeCounter: 1
+ links:
+ - 124
+ - type: DeviceLinkSource
+ linkedPorts:
+ 124:
- DoorStatus: DoorBolt
- - uid: 11682
+ - uid: 124
components:
- type: Transform
- pos: -26.5,-42.5
+ pos: -53.5,-37.5
parent: 34
- type: DeviceLinkSink
+ invokeCounter: 1
links:
- - 11911
- - 1802
+ - 102
- type: DeviceLinkSource
linkedPorts:
- 1802:
+ 102:
- DoorStatus: DoorBolt
- 11911:
+ - uid: 1429
+ components:
+ - type: Transform
+ pos: -51.5,-42.5
+ parent: 34
+ - type: DeviceLinkSink
+ invokeCounter: 1
+ links:
+ - 94
+ - type: DeviceLinkSource
+ linkedPorts:
+ 94:
- DoorStatus: DoorBolt
- - uid: 11768
+ - uid: 1438
components:
- type: Transform
- pos: -26.5,-41.5
+ pos: -40.5,-50.5
parent: 34
- type: DeviceLinkSink
+ invokeCounter: 1
links:
- - 11911
- - 1802
+ - 3561
- type: DeviceLinkSource
linkedPorts:
- 11911:
+ 3561:
- DoorStatus: DoorBolt
- 1802:
+ - uid: 3561
+ components:
+ - type: Transform
+ pos: -40.5,-52.5
+ parent: 34
+ - type: DeviceLinkSink
+ invokeCounter: 1
+ links:
+ - 1438
+ - type: DeviceLinkSource
+ linkedPorts:
+ 1438:
- DoorStatus: DoorBolt
- - uid: 11911
+ - uid: 11035
components:
- type: Transform
- pos: -23.5,-42.5
+ pos: -61.5,-24.5
parent: 34
- type: DeviceLinkSink
+ invokeCounter: 1
links:
- - 11768
- - 11682
+ - 11454
- type: DeviceLinkSource
linkedPorts:
- 11682:
+ 11454:
- DoorStatus: DoorBolt
- 11768:
+ - uid: 11454
+ components:
+ - type: Transform
+ pos: -60.5,-25.5
+ parent: 34
+ - type: DeviceLinkSink
+ invokeCounter: 1
+ links:
+ - 11035
+ - type: DeviceLinkSource
+ linkedPorts:
+ 11035:
- DoorStatus: DoorBolt
-- proto: AirlockExternalGlassLocked
+- proto: AirlockExternalGlassCargoLocked
entities:
- - uid: 1120
+ - uid: 1802
components:
- type: Transform
- pos: -54.5,-40.5
+ pos: -23.5,-41.5
parent: 34
- type: DeviceLinkSink
+ invokeCounter: 1
links:
- - 2439
+ - 13832
- type: DeviceLinkSource
linkedPorts:
- 2439:
- - DoorStatus: DoorBolt
- - uid: 1497
+ 13833:
+ - DoorStatus: InputA
+ - uid: 11682
components:
- type: Transform
- pos: -52.5,-44.5
+ pos: -26.5,-42.5
parent: 34
- type: DeviceLinkSink
+ invokeCounter: 1
links:
- - 1498
+ - 13833
- type: DeviceLinkSource
linkedPorts:
- 1498:
- - DoorStatus: DoorBolt
- - uid: 1498
+ 13832:
+ - DoorStatus: InputB
+ - uid: 11768
components:
- type: Transform
- pos: -51.5,-42.5
+ pos: -26.5,-41.5
parent: 34
- type: DeviceLinkSink
+ invokeCounter: 1
links:
- - 1497
+ - 13833
- type: DeviceLinkSource
linkedPorts:
- 1497:
- - DoorStatus: DoorBolt
- - uid: 2439
+ 13832:
+ - DoorStatus: InputA
+ - uid: 11911
components:
- type: Transform
- pos: -53.5,-37.5
+ pos: -23.5,-42.5
parent: 34
- type: DeviceLinkSink
+ invokeCounter: 1
links:
- - 1120
+ - 13832
- type: DeviceLinkSource
linkedPorts:
- 1120:
- - DoorStatus: DoorBolt
+ 13833:
+ - DoorStatus: InputB
+- proto: AirlockExternalGlassLocked
+ entities:
- uid: 5530
components:
- type: Transform
pos: 54.5,-23.5
parent: 34
+ - type: DeviceLinkSink
+ invokeCounter: 1
+ links:
+ - 5531
+ - type: DeviceLinkSource
+ linkedPorts:
+ 5531:
+ - DoorStatus: DoorBolt
- uid: 5531
components:
- type: Transform
pos: 51.5,-23.5
parent: 34
+ - type: DeviceLinkSink
+ invokeCounter: 1
+ links:
+ - 5530
+ - type: DeviceLinkSource
+ linkedPorts:
+ 5530:
+ - DoorStatus: DoorBolt
- uid: 7070
components:
- type: Transform
@@ -5621,6 +5661,9 @@ entities:
- type: Transform
pos: 1.5,-33.5
parent: 34
+ - type: DeviceLinkSink
+ links:
+ - 13840
- uid: 2982
components:
- type: Transform
@@ -6103,6 +6146,14 @@ entities:
- type: DeviceNetwork
deviceLists:
- 13430
+ - uid: 13837
+ components:
+ - type: Transform
+ pos: -57.5,-39.5
+ parent: 34
+ - type: DeviceNetwork
+ deviceLists:
+ - 13836
- proto: AltarSpawner
entities:
- uid: 38
@@ -6372,6 +6423,10 @@ entities:
rot: 3.141592653589793 rad
pos: -2.5,-2.5
parent: 34
+ - type: Apc
+ hasAccess: True
+ lastExternalState: Good
+ lastChargeState: Full
- uid: 7427
components:
- type: MetaData
@@ -6634,6 +6689,81 @@ entities:
parent: 34
- proto: AtmosFixBlockerMarker
entities:
+ - uid: 95
+ components:
+ - type: Transform
+ pos: -60.5,-39.5
+ parent: 34
+ - uid: 121
+ components:
+ - type: Transform
+ pos: -55.5,-38.5
+ parent: 34
+ - uid: 123
+ components:
+ - type: Transform
+ pos: -59.5,-41.5
+ parent: 34
+ - uid: 1211
+ components:
+ - type: Transform
+ pos: -59.5,-39.5
+ parent: 34
+ - uid: 1217
+ components:
+ - type: Transform
+ pos: -57.5,-39.5
+ parent: 34
+ - uid: 1218
+ components:
+ - type: Transform
+ pos: -57.5,-40.5
+ parent: 34
+ - uid: 1219
+ components:
+ - type: Transform
+ pos: -57.5,-38.5
+ parent: 34
+ - uid: 1257
+ components:
+ - type: Transform
+ pos: -58.5,-37.5
+ parent: 34
+ - uid: 1266
+ components:
+ - type: Transform
+ pos: -56.5,-41.5
+ parent: 34
+ - uid: 1407
+ components:
+ - type: Transform
+ pos: -55.5,-39.5
+ parent: 34
+ - uid: 1446
+ components:
+ - type: Transform
+ pos: -59.5,-38.5
+ parent: 34
+ - uid: 1448
+ components:
+ - type: Transform
+ pos: -59.5,-37.5
+ parent: 34
+ - uid: 1450
+ components:
+ - type: Transform
+ pos: -58.5,-39.5
+ parent: 34
+ - uid: 1451
+ components:
+ - type: Transform
+ pos: -58.5,-40.5
+ parent: 34
+ - uid: 1459
+ components:
+ - type: Transform
+ pos: -58.5,-38.5
+ parent: 34
- uid: 1551
components:
- type: Transform
@@ -6659,6 +6789,26 @@ entities:
- type: Transform
pos: -38.5,-45.5
parent: 34
+ - uid: 1558
+ components:
+ - type: Transform
+ pos: -55.5,-41.5
+ parent: 34
+ - uid: 1561
+ components:
+ - type: Transform
+ pos: -55.5,-37.5
+ parent: 34
+ - uid: 1562
+ components:
+ - type: Transform
+ pos: -55.5,-40.5
+ parent: 34
+ - uid: 1572
+ components:
+ - type: Transform
+ pos: -59.5,-40.5
+ parent: 34
- uid: 1574
components:
- type: Transform
@@ -6669,6 +6819,51 @@ entities:
- type: Transform
pos: -50.5,-38.5
parent: 34
+ - uid: 1578
+ components:
+ - type: Transform
+ pos: -56.5,-38.5
+ parent: 34
+ - uid: 1691
+ components:
+ - type: Transform
+ pos: -60.5,-40.5
+ parent: 34
+ - uid: 1724
+ components:
+ - type: Transform
+ pos: -56.5,-37.5
+ parent: 34
+ - uid: 1725
+ components:
+ - type: Transform
+ pos: -58.5,-41.5
+ parent: 34
+ - uid: 1726
+ components:
+ - type: Transform
+ pos: -57.5,-37.5
+ parent: 34
+ - uid: 1776
+ components:
+ - type: Transform
+ pos: -56.5,-39.5
+ parent: 34
+ - uid: 2429
+ components:
+ - type: Transform
+ pos: -56.5,-40.5
+ parent: 34
+ - uid: 3790
+ components:
+ - type: Transform
+ pos: -57.5,-41.5
+ parent: 34
+ - uid: 3794
+ components:
+ - type: Transform
+ pos: -60.5,-38.5
+ parent: 34
- proto: AtmosFixFreezerMarker
entities:
- uid: 10639
@@ -6762,6 +6957,11 @@ entities:
- type: Transform
pos: -37.5,-43.5
parent: 34
+ - uid: 7997
+ components:
+ - type: Transform
+ pos: -36.5,-43.5
+ parent: 34
- proto: Autolathe
entities:
- uid: 2518
@@ -6903,10 +7103,11 @@ entities:
parent: 34
- proto: BaseGasCondenser
entities:
- - uid: 13444
+ - uid: 70
components:
- type: Transform
- pos: -45.5,-37.5
+ rot: -1.5707963267948966 rad
+ pos: 2.5,-27.5
parent: 34
- type: AtmosDevice
joinedGrid: 34
@@ -7425,7 +7626,7 @@ entities:
parent: 34
- type: DeviceLinkSink
links:
- - 12307
+ - 234
- uid: 12300
components:
- type: Transform
@@ -7433,7 +7634,7 @@ entities:
parent: 34
- type: DeviceLinkSink
links:
- - 12307
+ - 234
- uid: 12306
components:
- type: Transform
@@ -7441,7 +7642,7 @@ entities:
parent: 34
- type: DeviceLinkSink
links:
- - 12307
+ - 234
- proto: BlueLightTube
entities:
- uid: 5065
@@ -7876,6 +8077,48 @@ entities:
- type: Transform
pos: -49.28929,-18.668879
parent: 34
+- proto: ButtonFrameCaution
+ entities:
+ - uid: 8111
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -60.5,-34.5
+ parent: 34
+- proto: ButtonFrameCautionSecurity
+ entities:
+ - uid: 1215
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -60.5,-35.5
+ parent: 34
+- proto: ButtonFrameExit
+ entities:
+ - uid: 13839
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 1.5,-32.5
+ parent: 34
+- proto: ButtonFrameJanitor
+ entities:
+ - uid: 13841
+ components:
+ - type: Transform
+ pos: 5.5,-25.5
+ parent: 34
+ - uid: 13844
+ components:
+ - type: Transform
+ pos: -39.5,-24.5
+ parent: 34
+ - uid: 13846
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -30.5,-19.5
+ parent: 34
- proto: CableApcExtension
entities:
- uid: 2
@@ -8038,6 +8281,11 @@ entities:
- type: Transform
pos: -37.5,-16.5
parent: 34
+ - uid: 926
+ components:
+ - type: Transform
+ pos: -64.5,-25.5
+ parent: 34
- uid: 934
components:
- type: Transform
@@ -8058,6 +8306,11 @@ entities:
- type: Transform
pos: -21.5,-42.5
parent: 34
+ - uid: 954
+ components:
+ - type: Transform
+ pos: -44.5,-48.5
+ parent: 34
- uid: 959
components:
- type: Transform
@@ -8323,6 +8576,11 @@ entities:
- type: Transform
pos: -13.5,-38.5
parent: 34
+ - uid: 1566
+ components:
+ - type: Transform
+ pos: -50.5,-42.5
+ parent: 34
- uid: 1581
components:
- type: Transform
@@ -8418,11 +8676,6 @@ entities:
- type: Transform
pos: -49.5,-42.5
parent: 34
- - uid: 1671
- components:
- - type: Transform
- pos: -50.5,-42.5
- parent: 34
- uid: 1672
components:
- type: Transform
@@ -8518,21 +8771,11 @@ entities:
- type: Transform
pos: -44.5,-45.5
parent: 34
- - uid: 1691
- components:
- - type: Transform
- pos: -44.5,-46.5
- parent: 34
- uid: 1692
components:
- type: Transform
pos: -44.5,-47.5
parent: 34
- - uid: 1693
- components:
- - type: Transform
- pos: -44.5,-48.5
- parent: 34
- uid: 1694
components:
- type: Transform
@@ -8663,6 +8906,11 @@ entities:
- type: Transform
pos: -37.5,-40.5
parent: 34
+ - uid: 1721
+ components:
+ - type: Transform
+ pos: -44.5,-46.5
+ parent: 34
- uid: 1727
components:
- type: Transform
@@ -16710,6 +16958,16 @@ entities:
- type: Transform
pos: -32.5,-59.5
parent: 34
+ - uid: 12630
+ components:
+ - type: Transform
+ pos: -58.5,-25.5
+ parent: 34
+ - uid: 12631
+ components:
+ - type: Transform
+ pos: -59.5,-25.5
+ parent: 34
- uid: 12646
components:
- type: Transform
@@ -16735,6 +16993,86 @@ entities:
- type: Transform
pos: -45.5,-35.5
parent: 34
+ - uid: 12651
+ components:
+ - type: Transform
+ pos: -60.5,-25.5
+ parent: 34
+ - uid: 12652
+ components:
+ - type: Transform
+ pos: -61.5,-25.5
+ parent: 34
+ - uid: 12653
+ components:
+ - type: Transform
+ pos: -61.5,-24.5
+ parent: 34
+ - uid: 12654
+ components:
+ - type: Transform
+ pos: -61.5,-23.5
+ parent: 34
+ - uid: 12660
+ components:
+ - type: Transform
+ pos: -62.5,-23.5
+ parent: 34
+ - uid: 12662
+ components:
+ - type: Transform
+ pos: -63.5,-23.5
+ parent: 34
+ - uid: 12667
+ components:
+ - type: Transform
+ pos: -63.5,-25.5
+ parent: 34
+ - uid: 12669
+ components:
+ - type: Transform
+ pos: -65.5,-25.5
+ parent: 34
+ - uid: 12670
+ components:
+ - type: Transform
+ pos: -65.5,-24.5
+ parent: 34
+ - uid: 12671
+ components:
+ - type: Transform
+ pos: -65.5,-23.5
+ parent: 34
+ - uid: 12674
+ components:
+ - type: Transform
+ pos: -65.5,-22.5
+ parent: 34
+ - uid: 12675
+ components:
+ - type: Transform
+ pos: -65.5,-21.5
+ parent: 34
+ - uid: 12676
+ components:
+ - type: Transform
+ pos: -65.5,-20.5
+ parent: 34
+ - uid: 12681
+ components:
+ - type: Transform
+ pos: -65.5,-19.5
+ parent: 34
+ - uid: 12682
+ components:
+ - type: Transform
+ pos: -65.5,-18.5
+ parent: 34
+ - uid: 12683
+ components:
+ - type: Transform
+ pos: -64.5,-18.5
+ parent: 34
- uid: 12685
components:
- type: Transform
@@ -16745,6 +17083,21 @@ entities:
- type: Transform
pos: -30.5,-56.5
parent: 34
+ - uid: 12694
+ components:
+ - type: Transform
+ pos: -63.5,-18.5
+ parent: 34
+ - uid: 12695
+ components:
+ - type: Transform
+ pos: -63.5,-17.5
+ parent: 34
+ - uid: 12696
+ components:
+ - type: Transform
+ pos: -63.5,-16.5
+ parent: 34
- uid: 12718
components:
- type: Transform
@@ -16765,6 +17118,11 @@ entities:
- type: Transform
pos: 14.5,-37.5
parent: 34
+ - uid: 12736
+ components:
+ - type: Transform
+ pos: -63.5,-15.5
+ parent: 34
- uid: 12741
components:
- type: Transform
@@ -16875,6 +17233,11 @@ entities:
- type: Transform
pos: -58.5,-39.5
parent: 34
+ - uid: 12791
+ components:
+ - type: Transform
+ pos: -59.5,-18.5
+ parent: 34
- uid: 12806
components:
- type: Transform
@@ -17070,6 +17433,11 @@ entities:
- type: Transform
pos: 10.5,5.5
parent: 34
+ - uid: 13003
+ components:
+ - type: Transform
+ pos: -58.5,-17.5
+ parent: 34
- uid: 13112
components:
- type: Transform
@@ -17210,6 +17578,11 @@ entities:
- type: Transform
pos: 66.5,-23.5
parent: 34
+ - uid: 13444
+ components:
+ - type: Transform
+ pos: -58.5,-16.5
+ parent: 34
- uid: 13461
components:
- type: Transform
@@ -17500,8 +17873,58 @@ entities:
- type: Transform
pos: -31.5,-69.5
parent: 34
+ - uid: 13788
+ components:
+ - type: Transform
+ pos: -59.5,-16.5
+ parent: 34
+ - uid: 13789
+ components:
+ - type: Transform
+ pos: -60.5,-16.5
+ parent: 34
+ - uid: 13790
+ components:
+ - type: Transform
+ pos: -61.5,-16.5
+ parent: 34
+ - uid: 13791
+ components:
+ - type: Transform
+ pos: -61.5,-15.5
+ parent: 34
+ - uid: 13792
+ components:
+ - type: Transform
+ pos: -62.5,-15.5
+ parent: 34
+ - uid: 13793
+ components:
+ - type: Transform
+ pos: -60.5,-17.5
+ parent: 34
+ - uid: 13834
+ components:
+ - type: Transform
+ pos: -41.5,-50.5
+ parent: 34
+ - uid: 13835
+ components:
+ - type: Transform
+ pos: -41.5,-49.5
+ parent: 34
+ - uid: 13845
+ components:
+ - type: Transform
+ pos: -44.5,-49.5
+ parent: 34
- proto: CableApcStack1
entities:
+ - uid: 823
+ components:
+ - type: Transform
+ pos: -63.396404,-24.635366
+ parent: 34
- uid: 5561
components:
- type: Transform
@@ -17531,6 +17954,21 @@ entities:
- type: Transform
pos: 16.5,-43.5
parent: 34
+ - uid: 677
+ components:
+ - type: Transform
+ pos: -51.5,-32.5
+ parent: 34
+ - uid: 970
+ components:
+ - type: Transform
+ pos: -51.5,-33.5
+ parent: 34
+ - uid: 977
+ components:
+ - type: Transform
+ pos: -48.5,-26.5
+ parent: 34
- uid: 1049
components:
- type: Transform
@@ -17546,6 +17984,11 @@ entities:
- type: Transform
pos: -19.5,-29.5
parent: 34
+ - uid: 1120
+ components:
+ - type: Transform
+ pos: -47.5,-26.5
+ parent: 34
- uid: 1122
components:
- type: Transform
@@ -17641,6 +18084,21 @@ entities:
- type: Transform
pos: -33.5,-33.5
parent: 34
+ - uid: 1185
+ components:
+ - type: Transform
+ pos: -50.5,-27.5
+ parent: 34
+ - uid: 1192
+ components:
+ - type: Transform
+ pos: -51.5,-31.5
+ parent: 34
+ - uid: 1197
+ components:
+ - type: Transform
+ pos: -50.5,-28.5
+ parent: 34
- uid: 1226
components:
- type: Transform
@@ -17649,7 +18107,7 @@ entities:
- uid: 1227
components:
- type: Transform
- pos: -35.5,-30.5
+ pos: -49.5,-26.5
parent: 34
- uid: 1279
components:
@@ -17661,6 +18119,11 @@ entities:
- type: Transform
pos: -18.5,-29.5
parent: 34
+ - uid: 1426
+ components:
+ - type: Transform
+ pos: -50.5,-26.5
+ parent: 34
- uid: 1602
components:
- type: Transform
@@ -17681,11 +18144,6 @@ entities:
- type: Transform
pos: -37.5,-23.5
parent: 34
- - uid: 1645
- components:
- - type: Transform
- pos: -35.5,-31.5
- parent: 34
- uid: 1842
components:
- type: Transform
@@ -20341,11 +20799,6 @@ entities:
- type: Transform
pos: -50.5,-30.5
parent: 34
- - uid: 11030
- components:
- - type: Transform
- pos: -50.5,-31.5
- parent: 34
- uid: 11226
components:
- type: Transform
@@ -20366,11 +20819,6 @@ entities:
- type: Transform
pos: -52.5,-21.5
parent: 34
- - uid: 11515
- components:
- - type: Transform
- pos: -50.5,-32.5
- parent: 34
- uid: 11516
components:
- type: Transform
@@ -20486,11 +20934,6 @@ entities:
- type: Transform
pos: -35.5,-33.5
parent: 34
- - uid: 12736
- components:
- - type: Transform
- pos: -35.5,-32.5
- parent: 34
- uid: 12737
components:
- type: Transform
@@ -20511,6 +20954,56 @@ entities:
- type: Transform
pos: 66.5,-24.5
parent: 34
+ - uid: 13802
+ components:
+ - type: Transform
+ pos: -46.5,-26.5
+ parent: 34
+ - uid: 13803
+ components:
+ - type: Transform
+ pos: -45.5,-26.5
+ parent: 34
+ - uid: 13804
+ components:
+ - type: Transform
+ pos: -44.5,-26.5
+ parent: 34
+ - uid: 13805
+ components:
+ - type: Transform
+ pos: -43.5,-26.5
+ parent: 34
+ - uid: 13806
+ components:
+ - type: Transform
+ pos: -42.5,-26.5
+ parent: 34
+ - uid: 13807
+ components:
+ - type: Transform
+ pos: -41.5,-26.5
+ parent: 34
+ - uid: 13808
+ components:
+ - type: Transform
+ pos: -40.5,-26.5
+ parent: 34
+ - uid: 13809
+ components:
+ - type: Transform
+ pos: -39.5,-26.5
+ parent: 34
+ - uid: 13810
+ components:
+ - type: Transform
+ pos: -38.5,-26.5
+ parent: 34
+ - uid: 13811
+ components:
+ - type: Transform
+ pos: -34.5,-33.5
+ parent: 34
- proto: CableHVStack
entities:
- uid: 5064
@@ -24553,16 +25046,6 @@ entities:
- type: Transform
pos: 6.5,-53.5
parent: 34
- - uid: 57
- components:
- - type: Transform
- pos: -41.5,-37.5
- parent: 34
- - uid: 66
- components:
- - type: Transform
- pos: -40.5,-36.5
- parent: 34
- uid: 76
components:
- type: Transform
@@ -24573,16 +25056,6 @@ entities:
- type: Transform
pos: -3.5,-53.5
parent: 34
- - uid: 104
- components:
- - type: Transform
- pos: -42.5,-39.5
- parent: 34
- - uid: 105
- components:
- - type: Transform
- pos: -42.5,-38.5
- parent: 34
- uid: 114
components:
- type: Transform
@@ -24593,16 +25066,6 @@ entities:
- type: Transform
pos: -29.5,-57.5
parent: 34
- - uid: 121
- components:
- - type: Transform
- pos: -42.5,-37.5
- parent: 34
- - uid: 123
- components:
- - type: Transform
- pos: -40.5,-37.5
- parent: 34
- uid: 396
components:
- type: Transform
@@ -24680,11 +25143,6 @@ entities:
- type: Transform
pos: -25.5,-8.5
parent: 34
- - uid: 961
- components:
- - type: Transform
- pos: -30.5,-5.5
- parent: 34
- uid: 1031
components:
- type: Transform
@@ -24748,141 +25206,16 @@ entities:
rot: -1.5707963267948966 rad
pos: 17.5,-33.5
parent: 34
- - uid: 1459
- components:
- - type: Transform
- pos: -41.5,-40.5
- parent: 34
- - uid: 1607
- components:
- - type: Transform
- pos: -43.5,-34.5
- parent: 34
- - uid: 1610
- components:
- - type: Transform
- pos: -48.5,-42.5
- parent: 34
- - uid: 1611
- components:
- - type: Transform
- pos: -49.5,-42.5
- parent: 34
- - uid: 1612
- components:
- - type: Transform
- pos: -50.5,-42.5
- parent: 34
- - uid: 1615
- components:
- - type: Transform
- pos: -45.5,-42.5
- parent: 34
- - uid: 1616
- components:
- - type: Transform
- pos: -44.5,-42.5
- parent: 34
- - uid: 1620
- components:
- - type: Transform
- pos: -44.5,-43.5
- parent: 34
- - uid: 1621
- components:
- - type: Transform
- pos: -44.5,-44.5
- parent: 34
- - uid: 1622
- components:
- - type: Transform
- pos: -44.5,-45.5
- parent: 34
- - uid: 1623
- components:
- - type: Transform
- pos: -44.5,-46.5
- parent: 34
- - uid: 1624
- components:
- - type: Transform
- pos: -44.5,-47.5
- parent: 34
- - uid: 1625
- components:
- - type: Transform
- pos: -44.5,-48.5
- parent: 34
- - uid: 1626
- components:
- - type: Transform
- pos: -44.5,-49.5
- parent: 34
- - uid: 1635
- components:
- - type: Transform
- pos: -43.5,-42.5
- parent: 34
- - uid: 1636
- components:
- - type: Transform
- pos: -42.5,-43.5
- parent: 34
- - uid: 1637
- components:
- - type: Transform
- pos: -42.5,-44.5
- parent: 34
- - uid: 1638
- components:
- - type: Transform
- pos: -42.5,-45.5
- parent: 34
- - uid: 1639
- components:
- - type: Transform
- pos: -42.5,-46.5
- parent: 34
- uid: 1640
components:
- type: Transform
pos: -52.5,-42.5
parent: 34
- - uid: 1650
- components:
- - type: Transform
- pos: -43.5,-48.5
- parent: 34
- - uid: 1651
- components:
- - type: Transform
- pos: -42.5,-48.5
- parent: 34
- - uid: 1652
- components:
- - type: Transform
- pos: -43.5,-46.5
- parent: 34
- uid: 1658
components:
- type: Transform
pos: -52.5,-43.5
parent: 34
- - uid: 1724
- components:
- - type: Transform
- pos: -41.5,-44.5
- parent: 34
- - uid: 1725
- components:
- - type: Transform
- pos: -41.5,-46.5
- parent: 34
- - uid: 1726
- components:
- - type: Transform
- pos: -41.5,-42.5
- parent: 34
- uid: 1750
components:
- type: Transform
@@ -24943,11 +25276,6 @@ entities:
- type: Transform
pos: -37.5,-30.5
parent: 34
- - uid: 1776
- components:
- - type: Transform
- pos: -42.5,-41.5
- parent: 34
- uid: 1834
components:
- type: Transform
@@ -24973,16 +25301,6 @@ entities:
- type: Transform
pos: -45.5,-31.5
parent: 34
- - uid: 1860
- components:
- - type: Transform
- pos: -42.5,-40.5
- parent: 34
- - uid: 1861
- components:
- - type: Transform
- pos: -43.5,-40.5
- parent: 34
- uid: 1894
components:
- type: Transform
@@ -25541,31 +25859,6 @@ entities:
- type: Transform
pos: -35.5,-37.5
parent: 34
- - uid: 3786
- components:
- - type: Transform
- pos: -40.5,-35.5
- parent: 34
- - uid: 3787
- components:
- - type: Transform
- pos: -41.5,-35.5
- parent: 34
- - uid: 3788
- components:
- - type: Transform
- pos: -42.5,-35.5
- parent: 34
- - uid: 3789
- components:
- - type: Transform
- pos: -42.5,-36.5
- parent: 34
- - uid: 3790
- components:
- - type: Transform
- pos: -42.5,-34.5
- parent: 34
- uid: 3801
components:
- type: Transform
@@ -25820,12 +26113,6 @@ entities:
- type: Transform
pos: 10.5,10.5
parent: 34
- - uid: 5247
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -41.5,-43.5
- parent: 34
- uid: 5284
components:
- type: Transform
@@ -26741,6 +27028,11 @@ entities:
- type: Transform
pos: -17.5,-13.5
parent: 34
+ - uid: 7774
+ components:
+ - type: Transform
+ pos: -40.5,-51.5
+ parent: 34
- uid: 7775
components:
- type: Transform
@@ -27104,18 +27396,6 @@ entities:
rot: -1.5707963267948966 rad
pos: 4.5,-45.5
parent: 34
- - uid: 10520
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -45.5,-34.5
- parent: 34
- - uid: 10521
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -46.5,-34.5
- parent: 34
- uid: 10721
components:
- type: Transform
@@ -27126,24 +27406,6 @@ entities:
- type: Transform
pos: -15.5,-30.5
parent: 34
- - uid: 11031
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -48.5,-34.5
- parent: 34
- - uid: 11033
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -44.5,-34.5
- parent: 34
- - uid: 11035
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -47.5,-34.5
- parent: 34
- uid: 11235
components:
- type: Transform
@@ -27171,12 +27433,6 @@ entities:
- type: Transform
pos: -54.5,-18.5
parent: 34
- - uid: 11769
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -52.5,-35.5
- parent: 34
- uid: 11842
components:
- type: Transform
@@ -27388,26 +27644,6 @@ entities:
- type: Transform
pos: -51.5,-33.5
parent: 34
- - uid: 12596
- components:
- - type: Transform
- pos: -51.5,-34.5
- parent: 34
- - uid: 12597
- components:
- - type: Transform
- pos: -51.5,-35.5
- parent: 34
- - uid: 12599
- components:
- - type: Transform
- pos: -53.5,-35.5
- parent: 34
- - uid: 12600
- components:
- - type: Transform
- pos: -53.5,-36.5
- parent: 34
- uid: 12605
components:
- type: Transform
@@ -27489,16 +27725,6 @@ entities:
- type: Transform
pos: -31.5,-65.5
parent: 34
- - uid: 12740
- components:
- - type: Transform
- pos: -47.5,-42.5
- parent: 34
- - uid: 12791
- components:
- - type: Transform
- pos: -46.5,-42.5
- parent: 34
- uid: 12972
components:
- type: Transform
@@ -30601,14 +30827,6 @@ entities:
- type: Transform
pos: -15.5,-40.5
parent: 34
-- proto: ComputerShuttleSalvage
- entities:
- - uid: 1052
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -30.5,-55.5
- parent: 34
- proto: ComputerSolarControl
entities:
- uid: 5421
@@ -34471,10 +34689,10 @@ entities:
parent: 34
- proto: DogBed
entities:
- - uid: 1041
+ - uid: 927
components:
- type: Transform
- pos: -31.5,-6.5
+ pos: -31.5,-8.5
parent: 34
- uid: 1847
components:
@@ -36828,12 +37046,6 @@ entities:
rot: 3.141592653589793 rad
pos: -8.5,-45.5
parent: 34
- - uid: 10558
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -50.5,-42.5
- parent: 34
- proto: FirelockGlass
entities:
- uid: 78
@@ -38208,80 +38420,20 @@ entities:
- type: Transform
pos: 50.685936,-27.551607
parent: 34
-- proto: GasFilter
- entities:
- - uid: 1653
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -44.5,-35.5
- parent: 34
- - type: AtmosDevice
- joinedGrid: 34
- - type: AtmosPipeColor
- color: '#3AB334FF'
- - uid: 2456
- components:
- - type: MetaData
- desc: This filters gases into the recycler loop. Generally speaking, you should set this to carbon dioxide.
- name: recycler input filter
- - type: Transform
- pos: -41.5,-36.5
- parent: 34
- - type: AtmosDevice
- joinedGrid: 34
- - type: AtmosPipeColor
- color: '#00FF00FF'
- proto: GasFilterFlipped
entities:
- - uid: 1154
+ - uid: 1641
components:
- - type: MetaData
- name: nitrogen filter
- type: Transform
- rot: 3.141592653589793 rad
- pos: -41.5,-39.5
+ rot: 1.5707963267948966 rad
+ pos: -46.5,-36.5
parent: 34
+ - type: GasFilter
+ transferRate: 50
- type: AtmosDevice
joinedGrid: 34
- type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 1219
- components:
- - type: MetaData
- name: oxygen filter
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -41.5,-41.5
- parent: 34
- - type: AtmosDevice
- joinedGrid: 34
- - uid: 1265
- components:
- - type: MetaData
- name: storage filter
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -41.5,-45.5
- parent: 34
- - type: AtmosDevice
- joinedGrid: 34
- - uid: 1546
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -48.5,-41.5
- parent: 34
- - type: AtmosDevice
- joinedGrid: 34
- - uid: 1547
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -47.5,-41.5
- parent: 34
- - type: AtmosDevice
- joinedGrid: 34
+ color: '#444444FF'
- uid: 2983
components:
- type: MetaData
@@ -38330,73 +38482,38 @@ entities:
joinedGrid: 34
- proto: GasMixer
entities:
- - uid: 970
+ - uid: 2406
components:
- - type: MetaData
- name: breathable air mixer
- type: Transform
rot: 3.141592653589793 rad
- pos: -44.5,-40.5
+ pos: -42.5,-40.5
parent: 34
- type: GasMixer
- inletTwoConcentration: 0.79
- inletOneConcentration: 0.21
+ inletTwoConcentration: 0.78
+ inletOneConcentration: 0.22
targetPressure: 4500
- type: AtmosDevice
joinedGrid: 34
- type: AtmosPipeColor
color: '#0000FFFF'
- - uid: 8111
- components:
- - type: Transform
- pos: -56.5,-35.5
- parent: 34
- - type: AtmosDevice
- joinedGrid: 34
- proto: GasMixerFlipped
entities:
- - uid: 971
+ - uid: 1622
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -43.5,-43.5
+ pos: -57.5,-33.5
parent: 34
+ - type: GasMixer
+ inletTwoConcentration: 0.97
+ inletOneConcentration: 0.03
+ targetPressure: 4500
- type: AtmosDevice
joinedGrid: 34
- type: AtmosPipeColor
- color: '#FF00FFFF'
- - uid: 1434
- components:
- - type: MetaData
- name: plasma mixer
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -43.5,-44.5
- parent: 34
- - type: AtmosDevice
- joinedGrid: 34
- - uid: 1440
- components:
- - type: MetaData
- name: storage mixer
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -43.5,-45.5
- parent: 34
- - type: AtmosDevice
- joinedGrid: 34
+ color: '#947507FF'
- proto: GasOutletInjector
entities:
- - uid: 925
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -27.5,-3.5
- parent: 34
- - type: AtmosDevice
- joinedGrid: 34
- - type: AtmosPipeColor
- color: '#0088F8FF'
- uid: 1216
components:
- type: Transform
@@ -38421,44 +38538,34 @@ entities:
parent: 34
- type: AtmosDevice
joinedGrid: 34
- - uid: 1536
+ - uid: 1442
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -49.5,-47.5
+ rot: -1.5707963267948966 rad
+ pos: -38.5,-43.5
parent: 34
- type: AtmosDevice
joinedGrid: 34
- - uid: 12603
+ - uid: 1525
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -59.5,-38.5
+ pos: -57.5,-39.5
parent: 34
- type: AtmosDevice
joinedGrid: 34
- type: AtmosPipeColor
- color: '#03FCD3FF'
- - uid: 12660
+ color: '#947507FF'
+ - uid: 1536
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -56.5,-37.5
+ pos: -49.5,-47.5
parent: 34
- type: AtmosDevice
joinedGrid: 34
- - type: AtmosPipeColor
- color: '#947507FF'
- proto: GasPassiveGate
entities:
- - uid: 1566
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -43.5,-49.5
- parent: 34
- - type: AtmosDevice
- joinedGrid: 34
- uid: 8366
components:
- type: Transform
@@ -38468,40 +38575,27 @@ entities:
joinedGrid: 34
- type: AtmosPipeColor
color: '#FF1212FF'
- - uid: 8595
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -10.5,-5.5
- parent: 34
- - type: AtmosDevice
- joinedGrid: 34
- - type: AtmosPipeColor
- color: '#0335FCFF'
- proto: GasPassiveVent
entities:
- - uid: 926
+ - uid: 938
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -27.5,-4.5
+ rot: 1.5707963267948966 rad
+ pos: -12.5,-4.5
parent: 34
- type: AtmosDevice
joinedGrid: 34
- - uid: 927
+ - uid: 971
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -27.5,-5.5
+ pos: -36.5,-43.5
parent: 34
- type: AtmosDevice
joinedGrid: 34
- - type: AtmosPipeColor
- color: '#FFFF00FF'
- - uid: 1217
+ - uid: 1052
components:
- type: Transform
- pos: -38.5,-43.5
+ pos: -27.5,-4.5
parent: 34
- type: AtmosDevice
joinedGrid: 34
@@ -38519,6 +38613,8 @@ entities:
parent: 34
- type: AtmosDevice
joinedGrid: 34
+ - type: AtmosPipeColor
+ color: '#00FFFFFF'
- uid: 1406
components:
- type: Transform
@@ -38550,90 +38646,63 @@ entities:
parent: 34
- type: AtmosDevice
joinedGrid: 34
- - uid: 3331
- components:
- - type: Transform
- pos: -31.5,5.5
- parent: 34
- - type: AtmosDevice
- joinedGrid: 34
- - type: AtmosPipeColor
- color: '#FFFF00FF'
- - uid: 12653
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -56.5,-39.5
- parent: 34
- - type: AtmosDevice
- joinedGrid: 34
- - type: AtmosPipeColor
- color: '#FF1212FF'
- - uid: 12654
+- proto: GasPipeBend
+ entities:
+ - uid: 104
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -56.5,-38.5
+ rot: -1.5707963267948966 rad
+ pos: -36.5,-44.5
parent: 34
- - type: AtmosDevice
- joinedGrid: 34
- - type: AtmosPipeColor
- color: '#FF1212FF'
-- proto: GasPipeBend
- entities:
- - uid: 63
+ - uid: 929
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -44.5,-37.5
+ rot: -1.5707963267948966 rad
+ pos: -27.5,-5.5
parent: 34
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 95
+ - uid: 939
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -42.5,-36.5
+ pos: -30.5,-3.5
parent: 34
- type: AtmosPipeColor
- color: '#00FF00FF'
- - uid: 107
+ color: '#0335FCFF'
+ - uid: 942
components:
- type: Transform
- pos: -42.5,-34.5
+ pos: -44.5,-51.5
parent: 34
- - type: AtmosPipeColor
- color: '#00FF00FF'
- - uid: 939
+ - uid: 1175
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -30.5,-3.5
+ rot: 1.5707963267948966 rad
+ pos: -47.5,-34.5
parent: 34
- type: AtmosPipeColor
- color: '#0335FCFF'
- - uid: 942
+ color: '#444444FF'
+ - uid: 1176
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -31.5,-5.5
+ pos: -52.5,-35.5
parent: 34
- type: AtmosPipeColor
- color: '#FFFF00FF'
- - uid: 972
+ color: '#444444FF'
+ - uid: 1209
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -43.5,-38.5
+ pos: -45.5,-34.5
parent: 34
- type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 1257
+ color: '#444444FF'
+ - uid: 1265
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -38.5,-44.5
+ pos: -53.5,-35.5
parent: 34
+ - type: AtmosPipeColor
+ color: '#444444FF'
- uid: 1420
components:
- type: Transform
@@ -38646,102 +38715,85 @@ entities:
rot: -1.5707963267948966 rad
pos: -36.5,-42.5
parent: 34
+ - type: AtmosPipeColor
+ color: '#00FFFFFF'
- uid: 1423
components:
- type: Transform
rot: -1.5707963267948966 rad
pos: -36.5,-40.5
parent: 34
- - uid: 1435
- components:
- - type: Transform
- pos: -42.5,-45.5
- parent: 34
- uid: 1436
components:
- type: Transform
- pos: -42.5,-41.5
+ rot: -1.5707963267948966 rad
+ pos: -45.5,-36.5
parent: 34
- type: AtmosPipeColor
- color: '#00FFFFFF'
- - uid: 1438
+ color: '#444444FF'
+ - uid: 1449
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -44.5,-41.5
+ pos: -53.5,-36.5
parent: 34
- type: AtmosPipeColor
- color: '#00FFFFFF'
- - uid: 1442
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -42.5,-46.5
- parent: 34
- - uid: 1448
+ color: '#444444FF'
+ - uid: 1526
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -43.5,-47.5
- parent: 34
- - uid: 1451
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -41.5,-49.5
+ pos: -58.5,-40.5
parent: 34
- - uid: 1514
+ - type: AtmosPipeColor
+ color: '#444444FF'
+ - uid: 1546
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -44.5,-46.5
+ pos: -62.5,-23.5
parent: 34
- - uid: 1519
+ - type: AtmosPipeColor
+ color: '#03FCD3FF'
+ - uid: 1567
components:
- type: Transform
- pos: -44.5,-42.5
+ pos: -52.5,-34.5
parent: 34
- - uid: 1541
+ - type: AtmosPipeColor
+ color: '#444444FF'
+ - uid: 1611
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -49.5,-42.5
- parent: 34
- - uid: 1565
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -45.5,-49.5
- parent: 34
- - uid: 1572
- components:
- - type: Transform
- pos: -43.5,-35.5
+ pos: -56.5,-35.5
parent: 34
- type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 1578
+ color: '#444444FF'
+ - uid: 1624
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -41.5,-35.5
+ pos: -58.5,-34.5
parent: 34
- type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 1634
+ color: '#444444FF'
+ - uid: 1633
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -42.5,-43.5
+ rot: 1.5707963267948966 rad
+ pos: -42.5,-37.5
parent: 34
- type: AtmosPipeColor
- color: '#00FFFFFF'
- - uid: 2020
+ color: '#0000FFFF'
+ - uid: 1646
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -12.5,-4.5
+ rot: 3.141592653589793 rad
+ pos: -59.5,-41.5
parent: 34
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
- uid: 2023
components:
- type: Transform
@@ -38750,6 +38802,14 @@ entities:
parent: 34
- type: AtmosPipeColor
color: '#FF1212FF'
+ - uid: 2062
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -56.5,-40.5
+ parent: 34
+ - type: AtmosPipeColor
+ color: '#444444FF'
- uid: 2346
components:
- type: Transform
@@ -38788,20 +38848,14 @@ entities:
parent: 34
- type: AtmosPipeColor
color: '#0335FCFF'
- - uid: 2415
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -45.5,-36.5
- parent: 34
- - type: AtmosPipeColor
- color: '#3AB334FF'
- - uid: 2427
+ - uid: 2416
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -46.5,-38.5
+ pos: -55.5,-41.5
parent: 34
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
- uid: 2530
components:
- type: Transform
@@ -38854,22 +38908,41 @@ entities:
parent: 34
- type: AtmosPipeColor
color: '#FF1212FF'
+ - uid: 3323
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -31.5,-5.5
+ parent: 34
+ - uid: 3327
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -31.5,-6.5
+ parent: 34
+ - uid: 3331
+ components:
+ - type: Transform
+ pos: -10.5,-5.5
+ parent: 34
+ - type: AtmosPipeColor
+ color: '#0335FCFF'
- uid: 3376
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -46.5,-34.5
+ pos: -55.5,-33.5
parent: 34
- type: AtmosPipeColor
- color: '#3AB334FF'
- - uid: 3794
+ color: '#FF0000FF'
+ - uid: 3788
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -44.5,-36.5
+ pos: -54.5,-33.5
parent: 34
- type: AtmosPipeColor
- color: '#3AB334FF'
+ color: '#FF0000FF'
- uid: 3875
components:
- type: Transform
@@ -38930,6 +39003,29 @@ entities:
parent: 34
- type: AtmosPipeColor
color: '#0335FCFF'
+ - uid: 6365
+ components:
+ - type: Transform
+ pos: -57.5,-19.5
+ parent: 34
+ - type: AtmosPipeColor
+ color: '#03FCD3FF'
+ - uid: 6368
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -59.5,-30.5
+ parent: 34
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+ - uid: 6391
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -62.5,-19.5
+ parent: 34
+ - type: AtmosPipeColor
+ color: '#03FCD3FF'
- uid: 6505
components:
- type: Transform
@@ -39048,14 +39144,6 @@ entities:
parent: 34
- type: AtmosPipeColor
color: '#0335FCFF'
- - uid: 8430
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -59.5,-27.5
- parent: 34
- - type: AtmosPipeColor
- color: '#03FCD3FF'
- uid: 8434
components:
- type: Transform
@@ -39072,6 +39160,12 @@ entities:
parent: 34
- type: AtmosPipeColor
color: '#0335FCFF'
+ - uid: 8595
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -45.5,-55.5
+ parent: 34
- uid: 8598
components:
- type: Transform
@@ -39484,6 +39578,14 @@ entities:
parent: 34
- type: AtmosPipeColor
color: '#FF1212FF'
+ - uid: 11033
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -58.5,-23.5
+ parent: 34
+ - type: AtmosPipeColor
+ color: '#03FCD3FF'
- uid: 11059
components:
- type: Transform
@@ -39545,52 +39647,20 @@ entities:
parent: 34
- type: AtmosPipeColor
color: '#03FCD3FF'
- - uid: 11445
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -57.5,-39.5
- parent: 34
- - type: AtmosPipeColor
- color: '#FF1212FF'
- - uid: 11453
- components:
- - type: Transform
- pos: -57.5,-20.5
- parent: 34
- - type: AtmosPipeColor
- color: '#03FCD3FF'
- - uid: 11454
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -59.5,-20.5
- parent: 34
- - type: AtmosPipeColor
- color: '#03FCD3FF'
- - uid: 11542
+ - uid: 11448
components:
- type: Transform
- pos: -57.5,-25.5
+ pos: -54.5,-24.5
parent: 34
- type: AtmosPipeColor
color: '#03FCD3FF'
- - uid: 11576
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -58.5,-32.5
- parent: 34
- - type: AtmosPipeColor
- color: '#FF1212FF'
- - uid: 11580
+ - uid: 11472
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -59.5,-25.5
+ pos: -29.5,-3.5
parent: 34
- type: AtmosPipeColor
- color: '#03FCD3FF'
+ color: '#0335FCFF'
- uid: 11633
components:
- type: Transform
@@ -39599,18 +39669,6 @@ entities:
parent: 34
- type: AtmosPipeColor
color: '#0335FCFF'
- - uid: 11705
- components:
- - type: Transform
- pos: -54.5,-24.5
- parent: 34
- - type: AtmosPipeColor
- color: '#03FCD3FF'
- - uid: 11834
- components:
- - type: Transform
- pos: -45.5,-41.5
- parent: 34
- uid: 11840
components:
- type: Transform
@@ -39635,14 +39693,14 @@ entities:
parent: 34
- type: AtmosPipeColor
color: '#03FCD3FF'
- - uid: 11921
+ - uid: 11890
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -58.5,-39.5
+ pos: -59.5,-28.5
parent: 34
- type: AtmosPipeColor
- color: '#FF1212FF'
+ color: '#03FCD3FF'
- uid: 12115
components:
- type: Transform
@@ -39689,21 +39747,6 @@ entities:
parent: 34
- type: AtmosPipeColor
color: '#0335FCFF'
- - uid: 12611
- components:
- - type: Transform
- pos: -53.5,-31.5
- parent: 34
- - type: AtmosPipeColor
- color: '#FF1212FF'
- - uid: 12652
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -55.5,-39.5
- parent: 34
- - type: AtmosPipeColor
- color: '#FF1212FF'
- uid: 12663
components:
- type: Transform
@@ -39711,22 +39754,6 @@ entities:
parent: 34
- type: AtmosPipeColor
color: '#FF0000FF'
- - uid: 12669
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -55.5,-34.5
- parent: 34
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 12670
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -54.5,-34.5
- parent: 34
- - type: AtmosPipeColor
- color: '#FF0000FF'
- uid: 12848
components:
- type: Transform
@@ -39806,8 +39833,50 @@ entities:
parent: 34
- type: AtmosPipeColor
color: '#0335FCFF'
+ - uid: 13797
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -43.5,-55.5
+ parent: 34
+ - uid: 13813
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -46.5,-37.5
+ parent: 34
+ - uid: 13814
+ components:
+ - type: Transform
+ pos: -45.5,-37.5
+ parent: 34
+ - uid: 13838
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -10.5,-4.5
+ parent: 34
- proto: GasPipeFourway
entities:
+ - uid: 107
+ components:
+ - type: Transform
+ pos: -47.5,-36.5
+ parent: 34
+ - type: AtmosPipeColor
+ color: '#444444FF'
+ - uid: 932
+ components:
+ - type: Transform
+ pos: -29.5,-5.5
+ parent: 34
+ - uid: 941
+ components:
+ - type: Transform
+ pos: -47.5,-38.5
+ parent: 34
+ - type: AtmosPipeColor
+ color: '#444444FF'
- uid: 1325
components:
- type: Transform
@@ -39815,6 +39884,13 @@ entities:
parent: 34
- type: AtmosPipeColor
color: '#FF1212FF'
+ - uid: 2093
+ components:
+ - type: Transform
+ pos: -42.5,-42.5
+ parent: 34
+ - type: AtmosPipeColor
+ color: '#00FFFFFF'
- uid: 2981
components:
- type: Transform
@@ -39871,13 +39947,6 @@ entities:
parent: 34
- type: AtmosPipeColor
color: '#FF1212FF'
- - uid: 6344
- components:
- - type: Transform
- pos: -57.5,-27.5
- parent: 34
- - type: AtmosPipeColor
- color: '#03FCD3FF'
- uid: 7206
components:
- type: Transform
@@ -39962,13 +40031,13 @@ entities:
parent: 34
- type: AtmosPipeColor
color: '#FF1212FF'
- - uid: 11884
+ - uid: 10477
components:
- type: Transform
- pos: -57.5,-32.5
+ pos: -59.5,-23.5
parent: 34
- type: AtmosPipeColor
- color: '#FF1212FF'
+ color: '#03FCD3FF'
- uid: 12492
components:
- type: Transform
@@ -39992,67 +40061,36 @@ entities:
parent: 34
- type: AtmosPipeColor
color: '#FF1212FF'
- - uid: 70
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -56.5,-24.5
- parent: 34
- - type: AtmosPipeColor
- color: '#03FCD3FF'
- - uid: 94
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -43.5,-37.5
- parent: 34
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 96
- components:
- - type: Transform
- pos: -42.5,-35.5
- parent: 34
- - type: AtmosPipeColor
- color: '#00FF00FF'
- - uid: 102
+ - uid: 103
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -42.5,-37.5
+ pos: -41.5,-37.5
parent: 34
- type: AtmosPipeColor
color: '#0000FFFF'
- - uid: 103
+ - uid: 105
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -41.5,-37.5
+ pos: -37.5,-44.5
parent: 34
- - type: AtmosPipeColor
- color: '#0000FFFF'
- - uid: 124
+ - uid: 106
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -42.5,-38.5
+ pos: -38.5,-44.5
parent: 34
- - type: AtmosPipeColor
- color: '#FF0000FF'
- uid: 132
components:
- type: Transform
- pos: -43.5,-36.5
+ pos: -45.5,-44.5
parent: 34
- - type: AtmosPipeColor
- color: '#FF0000FF'
- uid: 135
components:
- type: Transform
- pos: -43.5,-37.5
+ pos: -45.5,-45.5
parent: 34
- - type: AtmosPipeColor
- color: '#FF0000FF'
- uid: 198
components:
- type: Transform
@@ -40189,14 +40227,6 @@ entities:
parent: 34
- type: AtmosPipeColor
color: '#FF1212FF'
- - uid: 919
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -58.5,-25.5
- parent: 34
- - type: AtmosPipeColor
- color: '#03FCD3FF'
- uid: 924
components:
- type: Transform
@@ -40209,46 +40239,26 @@ entities:
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -28.5,-4.5
- parent: 34
- - uid: 929
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -28.5,-5.5
+ pos: -11.5,-5.5
parent: 34
- type: AtmosPipeColor
- color: '#FFFF00FF'
- - uid: 941
+ color: '#0335FCFF'
+ - uid: 933
components:
- type: Transform
- pos: -31.5,-3.5
+ pos: -45.5,-50.5
parent: 34
- - type: AtmosPipeColor
- color: '#FFFF00FF'
- - uid: 944
+ - uid: 972
components:
- type: Transform
- pos: -31.5,-4.5
+ pos: -45.5,-46.5
parent: 34
- - type: AtmosPipeColor
- color: '#FFFF00FF'
- - uid: 945
+ - uid: 1041
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -30.5,-5.5
- parent: 34
- - type: AtmosPipeColor
- color: '#FFFF00FF'
- - uid: 977
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -44.5,-39.5
+ pos: -28.5,-5.5
parent: 34
- - type: AtmosPipeColor
- color: '#0000FFFF'
- uid: 1079
components:
- type: Transform
@@ -40262,55 +40272,12 @@ entities:
rot: -1.5707963267948966 rad
pos: -39.5,-41.5
parent: 34
- - uid: 1175
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -40.5,-39.5
- parent: 34
- - uid: 1176
- components:
- - type: Transform
- pos: -41.5,-42.5
- parent: 34
- - uid: 1185
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -40.5,-35.5
- parent: 34
- - type: AtmosPipeColor
- color: '#FF0000FF'
- uid: 1193
components:
- type: Transform
rot: -1.5707963267948966 rad
pos: -39.5,-39.5
parent: 34
- - uid: 1197
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -43.5,-41.5
- parent: 34
- - type: AtmosPipeColor
- color: '#FF00FFFF'
- - uid: 1209
- components:
- - type: Transform
- pos: -41.5,-40.5
- parent: 34
- - uid: 1211
- components:
- - type: Transform
- pos: -41.5,-43.5
- parent: 34
- - uid: 1218
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -40.5,-41.5
- parent: 34
- uid: 1223
components:
- type: Transform
@@ -40341,11 +40308,6 @@ entities:
parent: 34
- type: AtmosPipeColor
color: '#0335FCFF'
- - uid: 1407
- components:
- - type: Transform
- pos: -41.5,-44.5
- parent: 34
- uid: 1408
components:
- type: Transform
@@ -40376,18 +40338,24 @@ entities:
rot: -1.5707963267948966 rad
pos: -39.5,-42.5
parent: 34
+ - type: AtmosPipeColor
+ color: '#00FFFFFF'
- uid: 1415
components:
- type: Transform
rot: -1.5707963267948966 rad
pos: -38.5,-42.5
parent: 34
+ - type: AtmosPipeColor
+ color: '#00FFFFFF'
- uid: 1416
components:
- type: Transform
rot: -1.5707963267948966 rad
pos: -37.5,-42.5
parent: 34
+ - type: AtmosPipeColor
+ color: '#00FFFFFF'
- uid: 1417
components:
- type: Transform
@@ -40406,114 +40374,127 @@ entities:
rot: -1.5707963267948966 rad
pos: -39.5,-40.5
parent: 34
- - uid: 1428
+ - uid: 1430
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -41.5,-40.5
+ pos: -45.5,-43.5
parent: 34
- - type: AtmosPipeColor
- color: '#FF00FFFF'
- - uid: 1429
+ - uid: 1433
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -42.5,-40.5
+ pos: -42.5,-39.5
parent: 34
- type: AtmosPipeColor
- color: '#FF00FFFF'
- - uid: 1430
+ color: '#0000FFFF'
+ - uid: 1435
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -41.5,-42.5
+ rot: 1.5707963267948966 rad
+ pos: -56.5,-34.5
parent: 34
- type: AtmosPipeColor
- color: '#00FFFFFF'
- - uid: 1433
+ color: '#444444FF'
+ - uid: 1437
components:
- type: Transform
- pos: -43.5,-42.5
+ pos: -45.5,-38.5
parent: 34
- - type: AtmosPipeColor
- color: '#FF00FFFF'
- - uid: 1437
+ - uid: 1440
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -43.5,-41.5
+ pos: -59.5,-36.5
parent: 34
- - type: AtmosPipeColor
- color: '#00FFFFFF'
- uid: 1441
components:
- type: Transform
- pos: -41.5,-46.5
+ rot: 1.5707963267948966 rad
+ pos: -54.5,-34.5
parent: 34
+ - type: AtmosPipeColor
+ color: '#444444FF'
- uid: 1443
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -41.5,-46.5
+ rot: 1.5707963267948966 rad
+ pos: -50.5,-35.5
parent: 34
+ - type: AtmosPipeColor
+ color: '#444444FF'
- uid: 1444
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -41.5,-44.5
+ rot: 1.5707963267948966 rad
+ pos: -50.5,-36.5
parent: 34
- - uid: 1445
+ - type: AtmosPipeColor
+ color: '#444444FF'
+ - uid: 1447
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -42.5,-44.5
+ pos: -39.5,-43.5
parent: 34
- uid: 1452
components:
- type: Transform
pos: -42.5,-50.5
parent: 34
- - uid: 1516
+ - uid: 1497
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -44.5,-45.5
+ pos: -45.5,-42.5
parent: 34
- - uid: 1517
+ - uid: 1498
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -44.5,-44.5
+ pos: -45.5,-40.5
parent: 34
- - uid: 1518
+ - uid: 1515
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -44.5,-43.5
+ rot: 1.5707963267948966 rad
+ pos: -54.5,-35.5
parent: 34
- - uid: 1522
+ - type: AtmosPipeColor
+ color: '#444444FF'
+ - uid: 1516
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -45.5,-42.5
+ pos: -57.5,-30.5
parent: 34
- - uid: 1523
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+ - uid: 1518
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -46.5,-42.5
+ pos: -59.5,-33.5
parent: 34
- - uid: 1525
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+ - uid: 1519
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -48.5,-42.5
+ rot: 1.5707963267948966 rad
+ pos: -55.5,-35.5
parent: 34
+ - type: AtmosPipeColor
+ color: '#444444FF'
+ - uid: 1523
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -51.5,-35.5
+ parent: 34
+ - type: AtmosPipeColor
+ color: '#444444FF'
- uid: 1527
components:
- type: Transform
- pos: -50.5,-42.5
+ pos: -57.5,-34.5
parent: 34
+ - type: AtmosPipeColor
+ color: '#947507FF'
- uid: 1528
components:
- type: Transform
@@ -40547,71 +40528,127 @@ entities:
rot: 3.141592653589793 rad
pos: -49.5,-46.5
parent: 34
- - uid: 1548
+ - uid: 1542
+ components:
+ - type: Transform
+ pos: -59.5,-34.5
+ parent: 34
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+ - uid: 1545
+ components:
+ - type: Transform
+ pos: -45.5,-41.5
+ parent: 34
+ - uid: 1547
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -49.5,-41.5
+ pos: -58.5,-30.5
parent: 34
- - uid: 1558
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+ - uid: 1563
components:
- type: Transform
- pos: -45.5,-42.5
+ rot: 3.141592653589793 rad
+ pos: -59.5,-25.5
parent: 34
- - uid: 1560
+ - type: AtmosPipeColor
+ color: '#03FCD3FF'
+ - uid: 1587
components:
- type: Transform
- pos: -45.5,-44.5
+ pos: -55.5,-36.5
parent: 34
- - uid: 1561
+ - uid: 1607
components:
- type: Transform
- pos: -45.5,-45.5
+ pos: -58.5,-36.5
parent: 34
- - uid: 1562
+ - uid: 1610
components:
- type: Transform
- pos: -45.5,-46.5
+ rot: 1.5707963267948966 rad
+ pos: -51.5,-36.5
parent: 34
- - uid: 1563
+ - type: AtmosPipeColor
+ color: '#444444FF'
+ - uid: 1616
components:
- type: Transform
- pos: -45.5,-47.5
+ pos: -59.5,-31.5
parent: 34
- - uid: 1564
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+ - uid: 1623
components:
- type: Transform
- pos: -45.5,-48.5
+ rot: -1.5707963267948966 rad
+ pos: -57.5,-40.5
parent: 34
- - uid: 1567
+ - type: AtmosPipeColor
+ color: '#444444FF'
+ - uid: 1625
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -57.5,-37.5
+ parent: 34
+ - type: AtmosPipeColor
+ color: '#947507FF'
+ - uid: 1632
+ components:
+ - type: Transform
+ pos: -42.5,-38.5
+ parent: 34
+ - type: AtmosPipeColor
+ color: '#0000FFFF'
+ - uid: 1634
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -44.5,-49.5
+ pos: -55.5,-34.5
parent: 34
- - uid: 1580
+ - type: AtmosPipeColor
+ color: '#444444FF'
+ - uid: 1635
components:
- type: Transform
- pos: -41.5,-37.5
+ pos: -57.5,-36.5
+ parent: 34
+ - type: AtmosPipeColor
+ color: '#947507FF'
+ - uid: 1652
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -57.5,-41.5
parent: 34
- type: AtmosPipeColor
color: '#FF0000FF'
- - uid: 1587
+ - uid: 1653
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -43.5,-34.5
+ pos: -55.5,-40.5
parent: 34
- type: AtmosPipeColor
- color: '#00FF00FF'
- - uid: 1627
+ color: '#FF0000FF'
+ - uid: 1671
+ components:
+ - type: Transform
+ pos: -55.5,-38.5
+ parent: 34
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+ - uid: 1860
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -46.5,-36.5
+ pos: -59.5,-40.5
parent: 34
- type: AtmosPipeColor
- color: '#3AB334FF'
+ color: '#FF0000FF'
- uid: 1913
components:
- type: Transform
@@ -40780,18 +40817,35 @@ entities:
parent: 34
- type: AtmosPipeColor
color: '#0335FCFF'
- - uid: 2429
+ - uid: 2413
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -54.5,-32.5
+ parent: 34
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+ - uid: 2415
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -48.5,-38.5
+ pos: -53.5,-34.5
+ parent: 34
+ - type: AtmosPipeColor
+ color: '#444444FF'
+ - uid: 2439
+ components:
+ - type: Transform
+ pos: -43.5,-50.5
parent: 34
- uid: 2496
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -47.5,-42.5
+ rot: 1.5707963267948966 rad
+ pos: -57.5,-34.5
parent: 34
+ - type: AtmosPipeColor
+ color: '#444444FF'
- uid: 2550
components:
- type: Transform
@@ -40901,62 +40955,14 @@ entities:
parent: 34
- type: AtmosPipeColor
color: '#FF1212FF'
- - uid: 3323
- components:
- - type: Transform
- pos: -31.5,-2.5
- parent: 34
- - type: AtmosPipeColor
- color: '#FFFF00FF'
- - uid: 3324
- components:
- - type: Transform
- pos: -31.5,-1.5
- parent: 34
- - type: AtmosPipeColor
- color: '#FFFF00FF'
- uid: 3325
components:
- type: Transform
- pos: -31.5,-0.5
- parent: 34
- - type: AtmosPipeColor
- color: '#FFFF00FF'
- - uid: 3326
- components:
- - type: Transform
- pos: -31.5,0.5
- parent: 34
- - type: AtmosPipeColor
- color: '#FFFF00FF'
- - uid: 3327
- components:
- - type: Transform
- pos: -31.5,1.5
- parent: 34
- - type: AtmosPipeColor
- color: '#FFFF00FF'
- - uid: 3328
- components:
- - type: Transform
- pos: -31.5,2.5
- parent: 34
- - type: AtmosPipeColor
- color: '#FFFF00FF'
- - uid: 3329
- components:
- - type: Transform
- pos: -31.5,3.5
- parent: 34
- - type: AtmosPipeColor
- color: '#FFFF00FF'
- - uid: 3330
- components:
- - type: Transform
- pos: -31.5,4.5
+ rot: 3.141592653589793 rad
+ pos: -29.5,-8.5
parent: 34
- type: AtmosPipeColor
- color: '#FFFF00FF'
+ color: '#F84000FF'
- uid: 3377
components:
- type: Transform
@@ -41133,6 +41139,21 @@ entities:
parent: 34
- type: AtmosPipeColor
color: '#0335FCFF'
+ - uid: 4075
+ components:
+ - type: Transform
+ pos: -58.5,-38.5
+ parent: 34
+ - type: AtmosPipeColor
+ color: '#444444FF'
+ - uid: 4076
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -55.5,-34.5
+ parent: 34
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
- uid: 4171
components:
- type: Transform
@@ -41478,6 +41499,14 @@ entities:
parent: 34
- type: AtmosPipeColor
color: '#FF1212FF'
+ - uid: 5247
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -57.5,-38.5
+ parent: 34
+ - type: AtmosPipeColor
+ color: '#947507FF'
- uid: 5674
components:
- type: Transform
@@ -41664,13 +41693,26 @@ entities:
parent: 34
- type: AtmosPipeColor
color: '#0335FCFF'
- - uid: 6368
+ - uid: 6344
components:
- type: Transform
- pos: -59.5,-28.5
+ rot: 3.141592653589793 rad
+ pos: -59.5,-38.5
parent: 34
- type: AtmosPipeColor
- color: '#03FCD3FF'
+ color: '#FF0000FF'
+ - uid: 6363
+ components:
+ - type: Transform
+ pos: -45.5,-39.5
+ parent: 34
+ - uid: 6375
+ components:
+ - type: Transform
+ pos: -42.5,-41.5
+ parent: 34
+ - type: AtmosPipeColor
+ color: '#00FFFFFF'
- uid: 6397
components:
- type: Transform
@@ -42749,29 +42791,36 @@ entities:
parent: 34
- type: AtmosPipeColor
color: '#0335FCFF'
- - uid: 7774
+ - uid: 7815
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -59.5,-22.5
+ pos: -56.5,-38.5
parent: 34
- type: AtmosPipeColor
- color: '#03FCD3FF'
- - uid: 7815
+ color: '#444444FF'
+ - uid: 7820
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -58.5,-27.5
+ pos: -41.5,-42.5
parent: 34
- type: AtmosPipeColor
- color: '#03FCD3FF'
+ color: '#00FFFFFF'
+ - uid: 7821
+ components:
+ - type: Transform
+ pos: -56.5,-36.5
+ parent: 34
+ - type: AtmosPipeColor
+ color: '#444444FF'
- uid: 7823
components:
- type: Transform
- pos: -58.5,-37.5
+ rot: 1.5707963267948966 rad
+ pos: -52.5,-36.5
parent: 34
- type: AtmosPipeColor
- color: '#FF1212FF'
+ color: '#444444FF'
- uid: 7869
components:
- type: Transform
@@ -50359,14 +50408,6 @@ entities:
parent: 34
- type: AtmosPipeColor
color: '#0335FCFF'
- - uid: 10477
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -59.5,-23.5
- parent: 34
- - type: AtmosPipeColor
- color: '#03FCD3FF'
- uid: 10491
components:
- type: Transform
@@ -50395,6 +50436,11 @@ entities:
parent: 34
- type: AtmosPipeColor
color: '#FF1212FF'
+ - uid: 10521
+ components:
+ - type: Transform
+ pos: -45.5,-48.5
+ parent: 34
- uid: 10575
components:
- type: Transform
@@ -50972,19 +51018,6 @@ entities:
parent: 34
- type: AtmosPipeColor
color: '#0335FCFF'
- - uid: 11406
- components:
- - type: Transform
- pos: -57.5,-37.5
- parent: 34
- - type: AtmosPipeColor
- color: '#FF1212FF'
- - uid: 11407
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -46.5,-41.5
- parent: 34
- uid: 11439
components:
- type: Transform
@@ -50993,13 +51026,6 @@ entities:
parent: 34
- type: AtmosPipeColor
color: '#0335FCFF'
- - uid: 11448
- components:
- - type: Transform
- pos: -58.5,-36.5
- parent: 34
- - type: AtmosPipeColor
- color: '#FF1212FF'
- uid: 11449
components:
- type: Transform
@@ -51008,12 +51034,6 @@ entities:
parent: 34
- type: AtmosPipeColor
color: '#0335FCFF'
- - uid: 11461
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -47.5,-38.5
- parent: 34
- uid: 11464
components:
- type: Transform
@@ -51022,6 +51042,11 @@ entities:
parent: 34
- type: AtmosPipeColor
color: '#0335FCFF'
+ - uid: 11470
+ components:
+ - type: Transform
+ pos: -43.5,-49.5
+ parent: 34
- uid: 11471
components:
- type: Transform
@@ -51109,13 +51134,6 @@ entities:
parent: 34
- type: AtmosPipeColor
color: '#0335FCFF'
- - uid: 11531
- components:
- - type: Transform
- pos: -58.5,-34.5
- parent: 34
- - type: AtmosPipeColor
- color: '#FF1212FF'
- uid: 11532
components:
- type: Transform
@@ -51140,13 +51158,6 @@ entities:
parent: 34
- type: AtmosPipeColor
color: '#FF1212FF'
- - uid: 11540
- components:
- - type: Transform
- pos: -58.5,-33.5
- parent: 34
- - type: AtmosPipeColor
- color: '#FF1212FF'
- uid: 11544
components:
- type: Transform
@@ -51155,14 +51166,6 @@ entities:
parent: 34
- type: AtmosPipeColor
color: '#FF1212FF'
- - uid: 11546
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -55.5,-24.5
- parent: 34
- - type: AtmosPipeColor
- color: '#03FCD3FF'
- uid: 11547
components:
- type: Transform
@@ -51198,14 +51201,14 @@ entities:
- uid: 11603
components:
- type: Transform
- pos: -59.5,-30.5
+ pos: -57.5,-21.5
parent: 34
- type: AtmosPipeColor
color: '#03FCD3FF'
- uid: 11608
components:
- type: Transform
- pos: -59.5,-31.5
+ pos: -57.5,-20.5
parent: 34
- type: AtmosPipeColor
color: '#03FCD3FF'
@@ -51305,14 +51308,6 @@ entities:
parent: 34
- type: AtmosPipeColor
color: '#0335FCFF'
- - uid: 11829
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -44.5,-38.5
- parent: 34
- - type: AtmosPipeColor
- color: '#0335FCFF'
- uid: 11841
components:
- type: Transform
@@ -51472,6 +51467,14 @@ entities:
parent: 34
- type: AtmosPipeColor
color: '#0335FCFF'
+ - uid: 11884
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -59.5,-27.5
+ parent: 34
+ - type: AtmosPipeColor
+ color: '#03FCD3FF'
- uid: 11888
components:
- type: Transform
@@ -51483,7 +51486,8 @@ entities:
- uid: 11897
components:
- type: Transform
- pos: -59.5,-29.5
+ rot: 3.141592653589793 rad
+ pos: -59.5,-26.5
parent: 34
- type: AtmosPipeColor
color: '#03FCD3FF'
@@ -51502,6 +51506,22 @@ entities:
parent: 34
- type: AtmosPipeColor
color: '#0335FCFF'
+ - uid: 11916
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -58.5,-28.5
+ parent: 34
+ - type: AtmosPipeColor
+ color: '#03FCD3FF'
+ - uid: 11921
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -57.5,-28.5
+ parent: 34
+ - type: AtmosPipeColor
+ color: '#03FCD3FF'
- uid: 11987
components:
- type: Transform
@@ -51551,6 +51571,14 @@ entities:
parent: 34
- type: AtmosPipeColor
color: '#FF1212FF'
+ - uid: 11995
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -56.5,-28.5
+ parent: 34
+ - type: AtmosPipeColor
+ color: '#03FCD3FF'
- uid: 12062
components:
- type: Transform
@@ -51655,14 +51683,20 @@ entities:
parent: 34
- type: AtmosPipeColor
color: '#FF1212FF'
- - uid: 12181
+ - uid: 12167
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -29.5,-9.5
+ pos: -55.5,-24.5
parent: 34
- type: AtmosPipeColor
- color: '#F84000FF'
+ color: '#03FCD3FF'
+ - uid: 12181
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -43.5,-53.5
+ parent: 34
- uid: 12190
components:
- type: Transform
@@ -51779,13 +51813,14 @@ entities:
parent: 34
- type: AtmosPipeColor
color: '#0335FCFF'
- - uid: 12315
+ - uid: 12307
components:
- type: Transform
- pos: -57.5,-35.5
+ rot: 3.141592653589793 rad
+ pos: -54.5,-25.5
parent: 34
- type: AtmosPipeColor
- color: '#FF1212FF'
+ color: '#03FCD3FF'
- uid: 12341
components:
- type: Transform
@@ -51814,27 +51849,6 @@ entities:
parent: 34
- type: AtmosPipeColor
color: '#0335FCFF'
- - uid: 12347
- components:
- - type: Transform
- pos: -57.5,-36.5
- parent: 34
- - type: AtmosPipeColor
- color: '#FF1212FF'
- - uid: 12348
- components:
- - type: Transform
- pos: -57.5,-34.5
- parent: 34
- - type: AtmosPipeColor
- color: '#FF1212FF'
- - uid: 12349
- components:
- - type: Transform
- pos: -57.5,-33.5
- parent: 34
- - type: AtmosPipeColor
- color: '#FF1212FF'
- uid: 12363
components:
- type: Transform
@@ -51843,14 +51857,6 @@ entities:
parent: 34
- type: AtmosPipeColor
color: '#FF1212FF'
- - uid: 12367
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -58.5,-20.5
- parent: 34
- - type: AtmosPipeColor
- color: '#03FCD3FF'
- uid: 12383
components:
- type: Transform
@@ -51906,102 +51912,12 @@ entities:
parent: 34
- type: AtmosPipeColor
color: '#FF1212FF'
- - uid: 12519
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -59.5,-37.5
- parent: 34
- - type: AtmosPipeColor
- color: '#03FCD3FF'
- - uid: 12522
- components:
- - type: Transform
- pos: -55.5,-37.5
- parent: 34
- - type: AtmosPipeColor
- color: '#FF1212FF'
- - uid: 12563
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -59.5,-36.5
- parent: 34
- - type: AtmosPipeColor
- color: '#03FCD3FF'
- - uid: 12565
- components:
- - type: Transform
- pos: -55.5,-36.5
- parent: 34
- - type: AtmosPipeColor
- color: '#FF1212FF'
- - uid: 12662
- components:
- - type: Transform
- pos: -56.5,-36.5
- parent: 34
- - uid: 12667
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -55.5,-32.5
- parent: 34
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 12668
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -56.5,-32.5
- parent: 34
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 12671
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -54.5,-33.5
- parent: 34
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 12682
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -54.5,-26.5
- parent: 34
- - type: AtmosPipeColor
- color: '#03FCD3FF'
- - uid: 12683
+ - uid: 12665
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -54.5,-25.5
- parent: 34
- - type: AtmosPipeColor
- color: '#03FCD3FF'
- - uid: 12694
- components:
- - type: Transform
- pos: -59.5,-32.5
- parent: 34
- - type: AtmosPipeColor
- color: '#03FCD3FF'
- - uid: 12695
- components:
- - type: Transform
- pos: -59.5,-33.5
+ pos: -43.5,-52.5
parent: 34
- - type: AtmosPipeColor
- color: '#03FCD3FF'
- - uid: 12696
- components:
- - type: Transform
- pos: -59.5,-34.5
- parent: 34
- - type: AtmosPipeColor
- color: '#03FCD3FF'
- uid: 12702
components:
- type: Transform
@@ -52592,16 +52508,67 @@ entities:
parent: 34
- type: AtmosPipeColor
color: '#FF1212FF'
+ - uid: 13800
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -49.5,-36.5
+ parent: 34
+ - type: AtmosPipeColor
+ color: '#444444FF'
+ - uid: 13801
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -49.5,-35.5
+ parent: 34
+ - type: AtmosPipeColor
+ color: '#444444FF'
+ - uid: 13812
+ components:
+ - type: Transform
+ pos: -45.5,-47.5
+ parent: 34
+ - uid: 13816
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -43.5,-54.5
+ parent: 34
+ - uid: 13820
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -43.5,-46.5
+ parent: 34
+ - uid: 13821
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -43.5,-47.5
+ parent: 34
+ - uid: 13822
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -43.5,-48.5
+ parent: 34
+ - uid: 13842
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -43.5,-51.5
+ parent: 34
- proto: GasPipeTJunction
entities:
- - uid: 106
+ - uid: 96
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -41.5,-38.5
+ pos: -47.5,-35.5
parent: 34
- type: AtmosPipeColor
- color: '#FF0000FF'
+ color: '#444444FF'
- uid: 806
components:
- type: Transform
@@ -52618,11 +52585,11 @@ entities:
parent: 34
- type: AtmosPipeColor
color: '#0335FCFF'
- - uid: 823
+ - uid: 945
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -10.5,-4.5
+ rot: 3.141592653589793 rad
+ pos: -44.5,-55.5
parent: 34
- uid: 956
components:
@@ -52639,13 +52606,6 @@ entities:
parent: 34
- type: AtmosPipeColor
color: '#0335FCFF'
- - uid: 1192
- components:
- - type: Transform
- pos: -43.5,-40.5
- parent: 34
- - type: AtmosPipeColor
- color: '#FF00FFFF'
- uid: 1233
components:
- type: Transform
@@ -52677,45 +52637,47 @@ entities:
parent: 34
- type: AtmosPipeColor
color: '#0335FCFF'
- - uid: 1431
+ - uid: 1434
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -42.5,-42.5
+ rot: -1.5707963267948966 rad
+ pos: -54.5,-26.5
parent: 34
- type: AtmosPipeColor
- color: '#00FFFFFF'
- - uid: 1446
+ color: '#03FCD3FF'
+ - uid: 1628
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -41.5,-47.5
- parent: 34
- - uid: 1450
- components:
- - type: Transform
- pos: -42.5,-49.5
+ pos: -29.5,-6.5
parent: 34
- - uid: 1515
+ - uid: 1650
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -43.5,-46.5
+ pos: -57.5,-32.5
parent: 34
- - uid: 1526
+ - uid: 1651
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -50.5,-41.5
+ pos: -59.5,-32.5
parent: 34
- - uid: 1646
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+ - uid: 1693
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -46.5,-35.5
+ pos: -41.5,-40.5
parent: 34
- type: AtmosPipeColor
- color: '#3AB334FF'
+ color: '#FF00FFFF'
+ - uid: 1795
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -45.5,-51.5
+ parent: 34
- uid: 2330
components:
- type: Transform
@@ -52763,13 +52725,6 @@ entities:
parent: 34
- type: AtmosPipeColor
color: '#0335FCFF'
- - uid: 2413
- components:
- - type: Transform
- pos: -45.5,-34.5
- parent: 34
- - type: AtmosPipeColor
- color: '#3AB334FF'
- uid: 2541
components:
- type: Transform
@@ -52855,13 +52810,14 @@ entities:
parent: 34
- type: AtmosPipeColor
color: '#FF1212FF'
- - uid: 3378
+ - uid: 3328
components:
- type: Transform
- pos: -44.5,-34.5
+ rot: 3.141592653589793 rad
+ pos: -29.5,-9.5
parent: 34
- type: AtmosPipeColor
- color: '#3AB334FF'
+ color: '#F84000FF'
- uid: 3460
components:
- type: Transform
@@ -53047,6 +53003,13 @@ entities:
parent: 34
- type: AtmosPipeColor
color: '#0335FCFF'
+ - uid: 6364
+ components:
+ - type: Transform
+ pos: -58.5,-19.5
+ parent: 34
+ - type: AtmosPipeColor
+ color: '#03FCD3FF'
- uid: 6398
components:
- type: Transform
@@ -53244,12 +53207,6 @@ entities:
parent: 34
- type: AtmosPipeColor
color: '#FF1212FF'
- - uid: 7765
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -45.5,-39.5
- parent: 34
- uid: 7767
components:
- type: Transform
@@ -53428,14 +53385,6 @@ entities:
parent: 34
- type: AtmosPipeColor
color: '#0335FCFF'
- - uid: 8470
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -57.5,-28.5
- parent: 34
- - type: AtmosPipeColor
- color: '#03FCD3FF'
- uid: 8472
components:
- type: Transform
@@ -53629,14 +53578,6 @@ entities:
parent: 34
- type: AtmosPipeColor
color: '#0335FCFF'
- - uid: 8754
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -57.5,-30.5
- parent: 34
- - type: AtmosPipeColor
- color: '#FF1212FF'
- uid: 8759
components:
- type: Transform
@@ -54600,6 +54541,14 @@ entities:
parent: 34
- type: AtmosPipeColor
color: '#FF1212FF'
+ - uid: 10520
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -60.5,-23.5
+ parent: 34
+ - type: AtmosPipeColor
+ color: '#03FCD3FF'
- uid: 10717
components:
- type: Transform
@@ -54640,6 +54589,21 @@ entities:
parent: 34
- type: AtmosPipeColor
color: '#FF1212FF'
+ - uid: 11031
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -61.5,-23.5
+ parent: 34
+ - type: AtmosPipeColor
+ color: '#03FCD3FF'
+ - uid: 11034
+ components:
+ - type: Transform
+ pos: -60.5,-19.5
+ parent: 34
+ - type: AtmosPipeColor
+ color: '#03FCD3FF'
- uid: 11058
components:
- type: Transform
@@ -54686,6 +54650,20 @@ entities:
parent: 34
- type: AtmosPipeColor
color: '#FF1212FF'
+ - uid: 11406
+ components:
+ - type: Transform
+ pos: -61.5,-19.5
+ parent: 34
+ - type: AtmosPipeColor
+ color: '#03FCD3FF'
+ - uid: 11407
+ components:
+ - type: Transform
+ pos: -59.5,-19.5
+ parent: 34
+ - type: AtmosPipeColor
+ color: '#03FCD3FF'
- uid: 11514
components:
- type: Transform
@@ -54764,83 +54742,56 @@ entities:
parent: 34
- type: AtmosPipeColor
color: '#FF1212FF'
- - uid: 12491
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -54.5,-31.5
- parent: 34
- - type: AtmosPipeColor
- color: '#FF1212FF'
- - uid: 12498
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -55.5,-27.5
- parent: 34
- - type: AtmosPipeColor
- color: '#03FCD3FF'
- - uid: 12651
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -55.5,-38.5
- parent: 34
- - type: AtmosPipeColor
- color: '#FF1212FF'
- - uid: 12665
+ - uid: 13483
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -54.5,-32.5
+ pos: 38.5,-18.5
parent: 34
- type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 12681
+ color: '#0335FCFF'
+ - uid: 13484
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -54.5,-27.5
+ pos: 39.5,-16.5
parent: 34
- type: AtmosPipeColor
- color: '#03FCD3FF'
- - uid: 13483
+ color: '#FF1212FF'
+ - uid: 13818
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 38.5,-18.5
+ pos: -43.5,-45.5
parent: 34
- - type: AtmosPipeColor
- color: '#0335FCFF'
- - uid: 13484
+ - uid: 13819
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 39.5,-16.5
+ pos: -43.5,-44.5
parent: 34
- - type: AtmosPipeColor
- color: '#FF1212FF'
- proto: GasPort
entities:
- - uid: 938
+ - uid: 1514
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -30.5,-4.5
+ pos: -57.5,-31.5
parent: 34
- type: AtmosDevice
joinedGrid: 34
- - uid: 1542
+ - uid: 1564
components:
- type: Transform
- pos: -47.5,-40.5
+ rot: 1.5707963267948966 rad
+ pos: -56.5,-26.5
parent: 34
- type: AtmosDevice
joinedGrid: 34
- - uid: 1545
+ - uid: 1580
components:
- type: Transform
- pos: -48.5,-40.5
+ rot: -1.5707963267948966 rad
+ pos: -56.5,-33.5
parent: 34
- type: AtmosDevice
joinedGrid: 34
@@ -54864,27 +54815,27 @@ entities:
joinedGrid: 34
- type: AtmosPipeColor
color: '#F84000FF'
- - uid: 2416
+ - uid: 3326
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -45.5,-40.5
+ rot: 1.5707963267948966 rad
+ pos: -31.5,-6.5
parent: 34
- type: AtmosDevice
joinedGrid: 34
- - uid: 3290
+ - uid: 3415
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -46.5,-39.5
+ rot: 3.141592653589793 rad
+ pos: -1.5,-42.5
parent: 34
- type: AtmosDevice
joinedGrid: 34
- - uid: 3415
+ - uid: 3787
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -1.5,-42.5
+ rot: 1.5707963267948966 rad
+ pos: 1.5,-27.5
parent: 34
- type: AtmosDevice
joinedGrid: 34
@@ -54908,40 +54859,6 @@ entities:
joinedGrid: 34
- type: AtmosPipeColor
color: '#FF1212FF'
- - uid: 11487
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -57.5,-35.5
- parent: 34
- - type: AtmosDevice
- joinedGrid: 34
- - uid: 11890
- components:
- - type: Transform
- pos: -56.5,-34.5
- parent: 34
- - type: AtmosDevice
- joinedGrid: 34
- - uid: 12501
- components:
- - type: Transform
- pos: -55.5,-25.5
- parent: 34
- - type: AtmosDevice
- joinedGrid: 34
- - type: AtmosPipeColor
- color: '#03FCD3FF'
- - uid: 12609
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -53.5,-33.5
- parent: 34
- - type: AtmosDevice
- joinedGrid: 34
- - type: AtmosPipeColor
- color: '#FF1212FF'
- proto: GasPressurePump
entities:
- uid: 64
@@ -54964,31 +54881,22 @@ entities:
joinedGrid: 34
- type: AtmosPipeColor
color: '#0335FCFF'
- - uid: 931
+ - uid: 222
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -29.5,-3.5
- parent: 34
- - type: AtmosDevice
- joinedGrid: 34
- - type: AtmosPipeColor
- color: '#0335FCFF'
- - uid: 932
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -29.5,-4.5
+ pos: -55.5,-26.5
parent: 34
- type: GasPressurePump
targetPressure: 4500
- type: AtmosDevice
joinedGrid: 34
- - uid: 1266
+ - type: AtmosPipeColor
+ color: '#03FCD3FF'
+ - uid: 1154
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -40.5,-45.5
+ pos: -42.5,-49.5
parent: 34
- type: GasPressurePump
targetPressure: 4500
@@ -55016,34 +54924,31 @@ entities:
targetPressure: 4500
- type: AtmosDevice
joinedGrid: 34
- - uid: 1426
+ - uid: 1427
components:
- type: MetaData
- name: oxygen pump
+ name: nitrogen pump
- type: Transform
rot: -1.5707963267948966 rad
- pos: -40.5,-42.5
+ pos: -40.5,-40.5
parent: 34
- type: GasPressurePump
targetPressure: 4500
- type: AtmosDevice
joinedGrid: 34
- type: AtmosPipeColor
- color: '#00FFFFFF'
- - uid: 1427
+ color: '#FF00FFFF'
+ - uid: 1428
components:
- type: MetaData
- name: nitrogen pump
+ name: distro pump
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -40.5,-40.5
+ pos: -29.5,-4.5
parent: 34
- - type: GasPressurePump
- targetPressure: 4500
- type: AtmosDevice
joinedGrid: 34
- type: AtmosPipeColor
- color: '#FF00FFFF'
+ color: '#0335FCFF'
- uid: 1535
components:
- type: Transform
@@ -55063,223 +54968,327 @@ entities:
targetPressure: 4500
- type: AtmosDevice
joinedGrid: 34
- - uid: 2062
+ - uid: 1620
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -45.5,-38.5
+ pos: -55.5,-35.5
parent: 34
+ - type: GasPressurePump
+ targetPressure: 4500
- type: AtmosDevice
joinedGrid: 34
- - uid: 7847
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+ - uid: 1621
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -1.5,-41.5
+ pos: -59.5,-35.5
parent: 34
+ - type: GasPressurePump
+ targetPressure: 4500
- type: AtmosDevice
joinedGrid: 34
- - uid: 11916
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+ - uid: 1627
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -46.5,-37.5
+ pos: -57.5,-35.5
parent: 34
+ - type: GasPressurePump
+ targetPressure: 4500
- type: AtmosDevice
joinedGrid: 34
- - uid: 12497
+ - type: AtmosPipeColor
+ color: '#947507FF'
+ - uid: 1636
components:
- type: Transform
- pos: -55.5,-26.5
+ rot: 3.141592653589793 rad
+ pos: -58.5,-35.5
parent: 34
+ - type: GasPressurePump
+ targetPressure: 4500
- type: AtmosDevice
joinedGrid: 34
- type: AtmosPipeColor
- color: '#03FCD3FF'
- - uid: 12606
+ color: '#444444FF'
+ - uid: 1796
+ components:
+ - type: MetaData
+ name: gas input pump
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -30.5,-5.5
+ parent: 34
+ - type: AtmosDevice
+ joinedGrid: 34
+ - uid: 1861
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -53.5,-32.5
+ pos: -54.5,-31.5
parent: 34
+ - type: GasPressurePump
+ targetPressure: 4500
- type: AtmosDevice
joinedGrid: 34
- type: AtmosPipeColor
- color: '#FF1212FF'
-- proto: GasRecycler
- entities:
- - uid: 3795
+ color: '#FF0000FF'
+ - uid: 2020
components:
+ - type: MetaData
+ name: gas output pump
- type: Transform
- pos: -45.5,-35.5
+ rot: 1.5707963267948966 rad
+ pos: -30.5,-6.5
parent: 34
- type: AtmosDevice
joinedGrid: 34
- - type: AtmosPipeColor
- color: '#3AB334FF'
-- proto: GasThermoMachineFreezer
- entities:
- - uid: 824
+ - uid: 2124
components:
+ - type: MetaData
+ name: waste pump
- type: Transform
- pos: -10.5,-3.5
+ pos: -29.5,-7.5
parent: 34
- - type: GasThermoMachine
- targetTemperature: 0
- type: AtmosDevice
joinedGrid: 34
- - uid: 1544
+ - type: AtmosPipeColor
+ color: '#F84000FF'
+ - uid: 2426
components:
- type: Transform
- pos: -50.5,-40.5
+ rot: -1.5707963267948966 rad
+ pos: -40.5,-42.5
parent: 34
+ - type: GasPressurePump
+ targetPressure: 4500
- type: AtmosDevice
joinedGrid: 34
- - uid: 4105
+ - type: AtmosPipeColor
+ color: '#00FFFFFF'
+ - uid: 2427
components:
- type: Transform
- pos: -1.5,-39.5
+ rot: -1.5707963267948966 rad
+ pos: -58.5,-32.5
parent: 34
+ - type: GasPressurePump
+ targetPressure: 225
- type: AtmosDevice
joinedGrid: 34
- - uid: 6377
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+ - uid: 2456
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -42.5,-42.5
+ pos: -48.5,-38.5
parent: 34
- - type: AtmosPipeColor
- color: '#03FCD3FF'
+ - type: GasPressurePump
+ targetPressure: 4500
- type: AtmosDevice
joinedGrid: 34
-- proto: GasThermoMachineHeater
- entities:
- - uid: 11463
+ - type: AtmosPipeColor
+ color: '#444444FF'
+ - uid: 3290
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -47.5,-35.5
+ pos: -48.5,-35.5
parent: 34
- - type: AtmosPipeColor
- color: '#3AB334FF'
+ - type: GasPressurePump
+ targetPressure: 4500
- type: AtmosDevice
joinedGrid: 34
-- proto: GasValve
- entities:
- - uid: 930
+ - type: AtmosPipeColor
+ color: '#444444FF'
+ - uid: 6377
components:
- - type: MetaData
- desc: This valve separates the chamber from space. Opening it will cause gas in the chamber to flow into space quickly.
- name: depressurization valve
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -29.5,-5.5
+ rot: 3.141592653589793 rad
+ pos: -54.5,-27.5
parent: 34
- - type: GasValve
- open: False
+ - type: GasPressurePump
+ targetPressure: 4500
- type: AtmosDevice
joinedGrid: 34
- type: AtmosPipeColor
- color: '#FFFF00FF'
- - uid: 1447
+ color: '#03FCD3FF'
+ - uid: 7765
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -42.5,-47.5
+ pos: -56.5,-30.5
parent: 34
- - type: GasValve
- open: False
+ - type: GasPressurePump
+ targetPressure: 4500
- type: AtmosDevice
joinedGrid: 34
- - uid: 7997
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+ - uid: 7847
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -45.5,-43.5
+ pos: -1.5,-41.5
parent: 34
- - type: GasValve
- open: False
- type: AtmosDevice
joinedGrid: 34
- - uid: 12518
+ - uid: 8754
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -55.5,-35.5
+ pos: -43.5,-43.5
parent: 34
- - type: GasValve
- open: False
- type: AtmosDevice
joinedGrid: 34
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 12562
+ - uid: 10558
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -59.5,-35.5
+ pos: -44.5,-54.5
parent: 34
- - type: GasValve
- open: False
+ - type: GasPressurePump
+ targetPressure: 4500
+ - type: AtmosDevice
+ joinedGrid: 34
+ - uid: 11030
+ components:
+ - type: Transform
+ pos: -62.5,-22.5
+ parent: 34
+ - type: GasPressurePump
+ targetPressure: 4500
- type: AtmosDevice
joinedGrid: 34
- type: AtmosPipeColor
color: '#03FCD3FF'
- - uid: 12572
+ - uid: 11446
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -56.5,-27.5
+ pos: -45.5,-54.5
+ parent: 34
+ - type: GasPressurePump
+ targetPressure: 4500
+ - type: AtmosDevice
+ joinedGrid: 34
+ - uid: 11453
+ components:
+ - type: Transform
+ pos: -61.5,-22.5
parent: 34
- - type: GasValve
- open: False
+ - type: GasPressurePump
+ targetPressure: 4500
- type: AtmosDevice
joinedGrid: 34
- type: AtmosPipeColor
color: '#03FCD3FF'
- - uid: 12674
+ - uid: 11461
components:
- type: Transform
- pos: -57.5,-31.5
+ pos: -60.5,-22.5
parent: 34
- - type: GasValve
- open: False
+ - type: GasPressurePump
+ targetPressure: 4500
- type: AtmosDevice
joinedGrid: 34
- type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 12675
+ color: '#03FCD3FF'
+ - uid: 11463
components:
- type: Transform
- pos: -57.5,-29.5
+ pos: -59.5,-22.5
parent: 34
- - type: GasValve
- open: False
+ - type: GasPressurePump
+ targetPressure: 4500
- type: AtmosDevice
joinedGrid: 34
- type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 12676
+ color: '#03FCD3FF'
+ - uid: 11540
components:
- type: Transform
- pos: -57.5,-26.5
+ pos: -58.5,-22.5
parent: 34
- - type: GasValve
- open: False
+ - type: GasPressurePump
+ targetPressure: 4500
- type: AtmosDevice
joinedGrid: 34
- type: AtmosPipeColor
color: '#03FCD3FF'
-- proto: GasVentPump
+- proto: GasRecycler
entities:
- - uid: 352
+ - uid: 3795
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -12.5,-5.5
+ pos: -45.5,-35.5
parent: 34
- type: AtmosDevice
joinedGrid: 34
+ - type: AtmosPipeColor
+ color: '#444444FF'
+- proto: GasThermoMachineFreezer
+ entities:
+ - uid: 1544
+ components:
+ - type: Transform
+ pos: -50.5,-40.5
+ parent: 34
+ - type: AtmosDevice
+ joinedGrid: 34
+ - uid: 4105
+ components:
+ - type: Transform
+ pos: -1.5,-39.5
+ parent: 34
+ - type: AtmosDevice
+ joinedGrid: 34
+- proto: GasThermoMachineFreezerEnabled
+ entities:
+ - uid: 824
+ components:
+ - type: Transform
+ pos: -10.5,-3.5
+ parent: 34
+ - type: GasThermoMachine
+ targetTemperature: 150
+ - type: AtmosDevice
+ joinedGrid: 34
+ - uid: 12611
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -44.5,-44.5
+ parent: 34
+ - type: GasThermoMachine
+ targetTemperature: 295.15
+ - type: AtmosDevice
+ joinedGrid: 34
+- proto: GasThermoMachineHeater
+ entities:
+ - uid: 919
+ components:
+ - type: Transform
+ pos: -49.5,-40.5
+ parent: 34
+ - type: AtmosDevice
+ joinedGrid: 34
+- proto: GasThermoMachineHeaterEnabled
+ entities:
+ - uid: 13817
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -44.5,-45.5
+ parent: 34
+ - type: GasThermoMachine
+ targetTemperature: 290.15
+ - type: AtmosDevice
+ joinedGrid: 34
+- proto: GasVentPump
+ entities:
- uid: 771
components:
- type: Transform
@@ -56566,6 +56575,16 @@ entities:
joinedGrid: 34
- type: AtmosPipeColor
color: '#0335FCFF'
+ - uid: 12668
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -12.5,-5.5
+ parent: 34
+ - type: AtmosDevice
+ joinedGrid: 34
+ - type: AtmosPipeColor
+ color: '#0335FCFF'
- uid: 12843
components:
- type: Transform
@@ -58202,42 +58221,132 @@ entities:
color: '#FF1212FF'
- proto: GasVolumePump
entities:
- - uid: 1449
+ - uid: 63
components:
- type: Transform
- pos: -41.5,-48.5
+ pos: -59.5,-20.5
parent: 34
+ - type: GasVolumePump
+ transferRate: 40
- type: AtmosDevice
joinedGrid: 34
- - uid: 4075
+ - type: AtmosPipeColor
+ color: '#03FCD3FF'
+ - uid: 944
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -56.5,-28.5
+ pos: -44.5,-52.5
+ parent: 34
+ - type: GasVolumePump
+ transferRate: 100
+ - type: AtmosDevice
+ joinedGrid: 34
+ - uid: 961
+ components:
+ - type: Transform
+ pos: -45.5,-52.5
+ parent: 34
+ - type: GasVolumePump
+ transferRate: 100
+ - type: AtmosDevice
+ joinedGrid: 34
+ - uid: 1565
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -56.5,-24.5
parent: 34
- type: AtmosDevice
joinedGrid: 34
- type: AtmosPipeColor
color: '#03FCD3FF'
- - uid: 4076
+ - uid: 1637
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -56.5,-30.5
+ pos: -48.5,-36.5
parent: 34
+ - type: GasVolumePump
+ transferRate: 15
- type: AtmosDevice
joinedGrid: 34
- type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 7821
+ color: '#444444FF'
+ - uid: 11487
components:
- type: Transform
- pos: -58.5,-35.5
+ pos: -60.5,-20.5
parent: 34
+ - type: GasVolumePump
+ transferRate: 40
- type: AtmosDevice
joinedGrid: 34
- type: AtmosPipeColor
- color: '#FF1212FF'
+ color: '#03FCD3FF'
+ - uid: 11531
+ components:
+ - type: Transform
+ pos: -62.5,-20.5
+ parent: 34
+ - type: GasVolumePump
+ transferRate: 40
+ - type: AtmosDevice
+ joinedGrid: 34
+ - type: AtmosPipeColor
+ color: '#03FCD3FF'
+ - uid: 11546
+ components:
+ - type: Transform
+ pos: -61.5,-20.5
+ parent: 34
+ - type: GasVolumePump
+ transferRate: 40
+ - type: AtmosDevice
+ joinedGrid: 34
+ - type: AtmosPipeColor
+ color: '#03FCD3FF'
+ - uid: 11580
+ components:
+ - type: Transform
+ pos: -58.5,-20.5
+ parent: 34
+ - type: GasVolumePump
+ transferRate: 40
+ - type: AtmosDevice
+ joinedGrid: 34
+ - type: AtmosPipeColor
+ color: '#03FCD3FF'
+ - uid: 13795
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -46.5,-34.5
+ parent: 34
+ - type: GasVolumePump
+ transferRate: 50
+ - type: AtmosDevice
+ joinedGrid: 34
+ - type: AtmosPipeColor
+ color: '#444444FF'
+ - uid: 13796
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -47.5,-37.5
+ parent: 34
+ - type: GasVolumePump
+ transferRate: 1
+ - type: AtmosDevice
+ joinedGrid: 34
+ - type: AtmosPipeColor
+ color: '#444444FF'
+ - uid: 13830
+ components:
+ - type: Transform
+ pos: -45.5,-49.5
+ parent: 34
+ - type: AtmosDevice
+ joinedGrid: 34
- proto: Gauze
entities:
- uid: 1371
@@ -58460,6 +58569,11 @@ entities:
- type: Transform
pos: -11.5,-3.5
parent: 34
+ - uid: 352
+ components:
+ - type: Transform
+ pos: -45.5,-50.5
+ parent: 34
- uid: 353
components:
- type: Transform
@@ -58925,11 +59039,6 @@ entities:
- type: Transform
pos: -42.5,-50.5
parent: 34
- - uid: 1632
- components:
- - type: Transform
- pos: -41.5,-50.5
- parent: 34
- uid: 1770
components:
- type: Transform
@@ -59070,11 +59179,6 @@ entities:
- type: Transform
pos: -45.5,-2.5
parent: 34
- - uid: 2124
- components:
- - type: Transform
- pos: -60.5,-19.5
- parent: 34
- uid: 2137
components:
- type: Transform
@@ -59135,11 +59239,6 @@ entities:
- type: Transform
pos: 48.5,-33.5
parent: 34
- - uid: 2426
- components:
- - type: Transform
- pos: -59.5,-18.5
- parent: 34
- uid: 2476
components:
- type: Transform
@@ -60607,21 +60706,6 @@ entities:
- type: Transform
pos: -48.5,-53.5
parent: 34
- - uid: 6363
- components:
- - type: Transform
- pos: -47.5,-53.5
- parent: 34
- - uid: 6364
- components:
- - type: Transform
- pos: -47.5,-52.5
- parent: 34
- - uid: 6365
- components:
- - type: Transform
- pos: -46.5,-52.5
- parent: 34
- uid: 6367
components:
- type: Transform
@@ -61216,7 +61300,8 @@ entities:
- uid: 11002
components:
- type: Transform
- pos: -61.5,-20.5
+ rot: 1.5707963267948966 rad
+ pos: -49.5,-54.5
parent: 34
- uid: 11024
components:
@@ -61247,17 +61332,25 @@ entities:
- uid: 11488
components:
- type: Transform
- pos: -58.5,-18.5
+ rot: -1.5707963267948966 rad
+ pos: -49.5,-35.5
+ parent: 34
+ - uid: 11515
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -49.5,-36.5
parent: 34
- uid: 11550
components:
- type: Transform
pos: 45.5,-5.5
parent: 34
- - uid: 11687
+ - uid: 11576
components:
- type: Transform
- pos: -57.5,-18.5
+ rot: 3.141592653589793 rad
+ pos: -65.5,-17.5
parent: 34
- uid: 11711
components:
@@ -61464,6 +61557,30 @@ entities:
- type: Transform
pos: -7.5,12.5
parent: 34
+ - uid: 12315
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -57.5,-24.5
+ parent: 34
+ - uid: 12319
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -58.5,-24.5
+ parent: 34
+ - uid: 12347
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -59.5,-24.5
+ parent: 34
+ - uid: 12348
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -57.5,-23.5
+ parent: 34
- uid: 12350
components:
- type: Transform
@@ -61529,26 +61646,64 @@ entities:
- type: Transform
pos: -34.5,-64.5
parent: 34
- - uid: 12481
+ - uid: 12488
components:
- type: Transform
- pos: -62.5,-22.5
+ pos: -24.5,-32.5
parent: 34
- - uid: 12482
+ - uid: 12491
components:
- type: Transform
- pos: -62.5,-24.5
+ rot: 3.141592653589793 rad
+ pos: -65.5,-18.5
parent: 34
- - uid: 12488
+ - uid: 12498
components:
- type: Transform
- pos: -24.5,-32.5
+ rot: 3.141592653589793 rad
+ pos: -65.5,-20.5
+ parent: 34
+ - uid: 12501
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -65.5,-21.5
+ parent: 34
+ - uid: 12518
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -65.5,-22.5
+ parent: 34
+ - uid: 12519
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -65.5,-23.5
+ parent: 34
+ - uid: 12522
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -65.5,-24.5
+ parent: 34
+ - uid: 12543
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -65.5,-25.5
parent: 34
- uid: 12561
components:
- type: Transform
pos: -35.5,-64.5
parent: 34
+ - uid: 12562
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -65.5,-26.5
+ parent: 34
- uid: 12567
components:
- type: Transform
@@ -61569,6 +61724,42 @@ entities:
- type: Transform
pos: -37.5,-62.5
parent: 34
+ - uid: 12572
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -57.5,-18.5
+ parent: 34
+ - uid: 12597
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -58.5,-18.5
+ parent: 34
+ - uid: 12599
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -59.5,-18.5
+ parent: 34
+ - uid: 12600
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -63.5,-17.5
+ parent: 34
+ - uid: 12603
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -63.5,-16.5
+ parent: 34
+ - uid: 12606
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -63.5,-15.5
+ parent: 34
- uid: 12613
components:
- type: Transform
@@ -61996,6 +62187,18 @@ entities:
- type: Transform
pos: 42.5,7.5
parent: 34
+ - uid: 13823
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -49.5,-55.5
+ parent: 34
+ - uid: 13824
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -49.5,-56.5
+ parent: 34
- proto: GrilleBroken
entities:
- uid: 6299
@@ -62027,6 +62230,30 @@ entities:
rot: 1.5707963267948966 rad
pos: -42.5,-59.5
parent: 34
+ - uid: 12563
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -65.5,-27.5
+ parent: 34
+ - uid: 12565
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -64.5,-25.5
+ parent: 34
+ - uid: 12596
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -64.5,-18.5
+ parent: 34
+ - uid: 12609
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -63.5,-18.5
+ parent: 34
- uid: 12624
components:
- type: Transform
@@ -62055,23 +62282,24 @@ entities:
rot: 3.141592653589793 rad
pos: -63.5,-27.5
parent: 34
- - uid: 12630
+ - uid: 12633
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -62.5,-23.5
+ pos: -63.5,-9.5
parent: 34
- - uid: 12631
+ - uid: 13825
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -62.5,-21.5
+ pos: -47.5,-57.5
parent: 34
- - uid: 12633
+- proto: GrilleSpawner
+ entities:
+ - uid: 12497
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -63.5,-9.5
+ pos: -65.5,-19.5
parent: 34
- proto: GunSafe
entities:
@@ -62194,44 +62422,151 @@ entities:
parent: 34
- proto: HeatExchanger
entities:
- - uid: 677
+ - uid: 1517
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -59.5,-21.5
+ pos: -56.5,-37.5
parent: 34
- type: AtmosDevice
joinedGrid: 34
- type: AtmosPipeColor
- color: '#03FCD3FF'
- - uid: 11429
+ color: '#444444FF'
+ - uid: 1522
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -56.5,-41.5
+ parent: 34
+ - type: AtmosDevice
+ joinedGrid: 34
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+ - uid: 1541
+ components:
+ - type: Transform
+ pos: -59.5,-37.5
+ parent: 34
+ - type: AtmosDevice
+ joinedGrid: 34
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+ - uid: 1612
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -57.5,-21.5
+ pos: -55.5,-37.5
parent: 34
- type: AtmosDevice
joinedGrid: 34
- type: AtmosPipeColor
- color: '#03FCD3FF'
- - uid: 11446
+ color: '#FF0000FF'
+ - uid: 1615
components:
- type: Transform
- pos: -58.5,-38.5
+ rot: 3.141592653589793 rad
+ pos: -55.5,-39.5
parent: 34
- type: AtmosDevice
joinedGrid: 34
- type: AtmosPipeColor
- color: '#FF1212FF'
- - uid: 11995
+ color: '#FF0000FF'
+ - uid: 1626
components:
- type: Transform
- pos: -57.5,-38.5
+ rot: 3.141592653589793 rad
+ pos: -56.5,-39.5
parent: 34
- type: AtmosDevice
joinedGrid: 34
- type: AtmosPipeColor
- color: '#FF1212FF'
+ color: '#444444FF'
+ - uid: 1638
+ components:
+ - type: Transform
+ pos: -58.5,-39.5
+ parent: 34
+ - type: AtmosDevice
+ joinedGrid: 34
+ - type: AtmosPipeColor
+ color: '#444444FF'
+ - uid: 1639
+ components:
+ - type: Transform
+ pos: -59.5,-39.5
+ parent: 34
+ - type: AtmosDevice
+ joinedGrid: 34
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+ - uid: 3329
+ components:
+ - type: Transform
+ pos: -45.5,-53.5
+ parent: 34
+ - type: AtmosDevice
+ joinedGrid: 34
+ - uid: 3330
+ components:
+ - type: Transform
+ pos: -44.5,-53.5
+ parent: 34
+ - type: AtmosDevice
+ joinedGrid: 34
+ - uid: 3378
+ components:
+ - type: Transform
+ pos: -58.5,-37.5
+ parent: 34
+ - type: AtmosDevice
+ joinedGrid: 34
+ - type: AtmosPipeColor
+ color: '#444444FF'
+ - uid: 3789
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -58.5,-41.5
+ parent: 34
+ - type: AtmosDevice
+ joinedGrid: 34
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+ - uid: 11687
+ components:
+ - type: Transform
+ pos: -62.5,-21.5
+ parent: 34
+ - type: AtmosDevice
+ joinedGrid: 34
+ - uid: 11705
+ components:
+ - type: Transform
+ pos: -61.5,-21.5
+ parent: 34
+ - type: AtmosDevice
+ joinedGrid: 34
+ - uid: 11769
+ components:
+ - type: Transform
+ pos: -60.5,-21.5
+ parent: 34
+ - type: AtmosDevice
+ joinedGrid: 34
+ - uid: 11829
+ components:
+ - type: Transform
+ pos: -59.5,-21.5
+ parent: 34
+ - type: AtmosDevice
+ joinedGrid: 34
+ - uid: 11834
+ components:
+ - type: Transform
+ pos: -58.5,-21.5
+ parent: 34
+ - type: AtmosDevice
+ joinedGrid: 34
- proto: HighSecCommandLocked
entities:
- uid: 1073
@@ -62413,7 +62748,7 @@ entities:
parent: 34
- type: DeviceLinkSink
links:
- - 12319
+ - 8430
- proto: IngotGold
entities:
- uid: 11679
@@ -62876,6 +63211,36 @@ entities:
rot: -1.5707963267948966 rad
pos: -9.5,-52.5
parent: 34
+- proto: LockableButtonAtmospherics
+ entities:
+ - uid: 234
+ components:
+ - type: MetaData
+ name: blast doors button
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -60.5,-34.5
+ parent: 34
+ - type: DeviceLinkSource
+ linkedPorts:
+ 12306:
+ - Pressed: Toggle
+ 12300:
+ - Pressed: Toggle
+ 12295:
+ - Pressed: Toggle
+ - uid: 8430
+ components:
+ - type: MetaData
+ name: igniter button
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -60.5,-35.5
+ parent: 34
+ - type: DeviceLinkSource
+ linkedPorts:
+ 12320:
+ - Pressed: Trigger
- proto: LockerAtmosphericsFilled
entities:
- uid: 1857
@@ -63233,6 +63598,49 @@ entities:
- type: Transform
pos: -18.5,-14.5
parent: 34
+- proto: LogicGate
+ entities:
+ - uid: 13832
+ components:
+ - type: Transform
+ anchored: True
+ pos: -25.5,-41.5
+ parent: 34
+ - type: DeviceLinkSink
+ invokeCounter: 2
+ links:
+ - 11768
+ - 11682
+ - type: DeviceLinkSource
+ linkedPorts:
+ 1802:
+ - Output: DoorBolt
+ 11911:
+ - Output: DoorBolt
+ - type: Physics
+ canCollide: False
+ bodyType: Static
+ - uid: 13833
+ components:
+ - type: Transform
+ anchored: True
+ rot: 3.141592653589793 rad
+ pos: -24.5,-41.5
+ parent: 34
+ - type: DeviceLinkSink
+ invokeCounter: 2
+ links:
+ - 1802
+ - 11911
+ - type: DeviceLinkSource
+ linkedPorts:
+ 11768:
+ - Output: DoorBolt
+ 11682:
+ - Output: DoorBolt
+ - type: Physics
+ canCollide: False
+ bodyType: Static
- proto: MachineAnomalyGenerator
entities:
- uid: 5913
@@ -63323,11 +63731,6 @@ entities:
- type: Transform
pos: 49.5,-43.5
parent: 34
- - uid: 3561
- components:
- - type: Transform
- pos: -47.5,-51.5
- parent: 34
- uid: 4197
components:
- type: Transform
@@ -64469,6 +64872,34 @@ entities:
- type: Transform
pos: 44.501106,-35.079414
parent: 34
+ - uid: 13826
+ components:
+ - type: MetaData
+ name: gas recycler notice
+ - type: Transform
+ pos: -46.389156,-35.841656
+ parent: 34
+ - type: Paper
+ stampState: paper_stamp-centcom
+ stampedBy:
+ - stampedColor: '#006600FF'
+ stampedName: stamp-component-stamped-name-centcom
+ - stampedColor: '#C69B17FF'
+ stampedName: stamp-component-stamped-name-ce
+ content: >-
+ This is a notice issued to Shōkō's Atmospherics staff.
+
+
+ Our gas giant has no usable oxygen gas, therefore it must be recycled from carbon dioxide. This installation uses heat from the TEG's burn chamber to heat up the CO2 in a controlled manner, using small volume pump adjustments.
+
+
+ The recycler pumps should all be at ideal starting values, but should be adjusted regularly to keep pressure and temperature within working parameters. Going over 4.5Mpa will prevent heating or result in a complete stall, so manage pressure with utmost care.
+
+
+ The recycled oxygen is pumped into a high-efficiency radiator array south of here. All pumps are at ideal settings, turn them on and it will cool the oxygen from thousands of degrees to around room temperature. The thermomachines inside will do the final adjustments.
+
+
+ Once you have safe oxygen it can be either used directly in distribution or injected into the oxygen reserve. Please note that this voids the reserve's warranty and NanoTrasen is not responsible for any atmospheric disasters including, but not limited to: the crew's skin melting off, lethal overpressurization, complete atmospheric shutdown or sudden death.
- proto: PaperBin20
entities:
- uid: 9966
@@ -64519,17 +64950,6 @@ entities:
- type: Transform
pos: -55.5,-10.5
parent: 34
-- proto: PartRodMetal
- entities:
- - uid: 11034
- components:
- - type: Transform
- pos: -58.602688,-22.4019
- parent: 34
- - type: Stack
- count: 4
- - type: Item
- size: 4
- proto: Pen
entities:
- uid: 2619
@@ -64562,6 +64982,13 @@ entities:
parent: 34
- type: AtmosDevice
joinedGrid: 34
+ - uid: 13794
+ components:
+ - type: Transform
+ pos: -57.5,-31.5
+ parent: 34
+ - type: AtmosDevice
+ joinedGrid: 34
- proto: PlasmaReinforcedWindowDirectional
entities:
- uid: 13338
@@ -65610,12 +66037,6 @@ entities:
rot: 3.141592653589793 rad
pos: -31.5,-40.5
parent: 34
- - uid: 1215
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -37.5,-43.5
- parent: 34
- uid: 1335
components:
- type: Transform
@@ -66166,6 +66587,12 @@ entities:
rot: 1.5707963267948966 rad
pos: 23.5,-11.5
parent: 34
+ - uid: 8470
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -36.5,-43.5
+ parent: 34
- uid: 8609
components:
- type: Transform
@@ -66658,6 +67085,11 @@ entities:
- type: Transform
pos: -31.5,-70.5
parent: 34
+ - uid: 12740
+ components:
+ - type: Transform
+ pos: -62.5,-18.5
+ parent: 34
- uid: 12784
components:
- type: Transform
@@ -67041,6 +67473,17 @@ entities:
rot: 1.5707963267948966 rad
pos: 40.5,-9.5
parent: 34
+ - uid: 13831
+ components:
+ - type: Transform
+ pos: 53.5,-23.5
+ parent: 34
+ - uid: 13843
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -61.5,-25.5
+ parent: 34
- proto: PoweredSmallLightMaintenanceRed
entities:
- uid: 2160
@@ -68781,16 +69224,6 @@ entities:
- type: Transform
pos: -34.5,16.5
parent: 34
- - uid: 6375
- components:
- - type: Transform
- pos: -59.5,-19.5
- parent: 34
- - uid: 6391
- components:
- - type: Transform
- pos: -62.5,-25.5
- parent: 34
- uid: 6426
components:
- type: Transform
@@ -68841,11 +69274,6 @@ entities:
- type: Transform
pos: 30.5,17.5
parent: 34
- - uid: 7234
- components:
- - type: Transform
- pos: -61.5,-21.5
- parent: 34
- uid: 7991
components:
- type: Transform
@@ -68866,11 +69294,6 @@ entities:
- type: Transform
pos: -47.5,-55.5
parent: 34
- - uid: 12167
- components:
- - type: Transform
- pos: -60.5,-20.5
- parent: 34
- uid: 12621
components:
- type: Transform
@@ -69400,11 +69823,6 @@ entities:
- type: Transform
pos: -47.5,-44.5
parent: 34
- - uid: 1641
- components:
- - type: Transform
- pos: -41.5,-50.5
- parent: 34
- uid: 1642
components:
- type: Transform
@@ -70622,6 +71040,12 @@ entities:
- type: Transform
pos: -16.5,-43.5
parent: 34
+ - uid: 12349
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -59.5,-24.5
+ parent: 34
- uid: 12353
components:
- type: Transform
@@ -70632,6 +71056,12 @@ entities:
- type: Transform
pos: -5.5,-51.5
parent: 34
+ - uid: 12367
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -58.5,-24.5
+ parent: 34
- uid: 12411
components:
- type: Transform
@@ -70657,6 +71087,18 @@ entities:
- type: Transform
pos: 40.5,-2.5
parent: 34
+ - uid: 12481
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -57.5,-24.5
+ parent: 34
+ - uid: 12482
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -57.5,-23.5
+ parent: 34
- uid: 12500
components:
- type: Transform
@@ -70796,17 +71238,23 @@ entities:
- type: Transform
pos: -31.5,-47.5
parent: 34
-- proto: RemoteSignaller
- entities:
- - uid: 12319
+ - uid: 13798
components:
- type: Transform
- pos: -54.716194,-35.31927
+ rot: -1.5707963267948966 rad
+ pos: -49.5,-36.5
+ parent: 34
+ - uid: 13799
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -49.5,-35.5
+ parent: 34
+ - uid: 13815
+ components:
+ - type: Transform
+ pos: -45.5,-50.5
parent: 34
- - type: DeviceLinkSource
- linkedPorts:
- 12320:
- - Pressed: Trigger
- proto: ResearchAndDevelopmentServer
entities:
- uid: 581
@@ -70872,6 +71320,21 @@ entities:
- type: Transform
pos: -7.5,-33.5
parent: 34
+ - uid: 930
+ components:
+ - type: Transform
+ pos: -31.5,-6.5
+ parent: 34
+ - uid: 13828
+ components:
+ - type: Transform
+ pos: -40.5,-31.5
+ parent: 34
+ - uid: 13829
+ components:
+ - type: Transform
+ pos: -40.5,-32.5
+ parent: 34
- proto: SalvageMagnet
entities:
- uid: 12566
@@ -71148,6 +71611,11 @@ entities:
- type: Transform
pos: -8.470482,-38.473114
parent: 34
+ - uid: 1548
+ components:
+ - type: Transform
+ pos: -42.975796,-37.535988
+ parent: 34
- uid: 2073
components:
- type: Transform
@@ -71158,6 +71626,11 @@ entities:
- type: Transform
pos: -22.46057,-25.461153
parent: 34
+ - uid: 3786
+ components:
+ - type: Transform
+ pos: -42.632046,-36.879738
+ parent: 34
- uid: 7399
components:
- type: Transform
@@ -71622,6 +72095,16 @@ entities:
linkedPorts:
1484:
- Pressed: Toggle
+ - uid: 13840
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 1.5,-32.5
+ parent: 34
+ - type: DeviceLinkSource
+ linkedPorts:
+ 2978:
+ - Pressed: Open
- proto: SignalButtonDirectional
entities:
- uid: 7459
@@ -71670,8 +72153,7 @@ entities:
- type: DeviceLinkSource
linkedPorts:
3582:
- - Pressed: Open
- - Pressed: Close
+ - Pressed: Toggle
- proto: SignalSwitch
entities:
- uid: 246
@@ -71748,23 +72230,6 @@ entities:
1287:
- On: Close
- Off: Open
- - uid: 12307
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -60.5,-35.5
- parent: 34
- - type: DeviceLinkSource
- linkedPorts:
- 12306:
- - On: Open
- - Off: Close
- 12300:
- - On: Open
- - Off: Close
- 12295:
- - On: Open
- - Off: Close
- uid: 13678
components:
- type: MetaData
@@ -71777,7 +72242,6 @@ entities:
13679:
- On: On
- Off: Off
- - Status: Toggle
- proto: SignalSwitchDirectional
entities:
- uid: 1922
@@ -72862,21 +73326,21 @@ entities:
- uid: 1124
components:
- type: MetaData
- name: AME SMES 1
+ name: Main SMES 1
- type: Transform
pos: -33.5,-31.5
parent: 34
- uid: 1125
components:
- type: MetaData
- name: AME SMES 2
+ name: Main SMES 2
- type: Transform
pos: -32.5,-31.5
parent: 34
- uid: 1126
components:
- type: MetaData
- name: AME SMES 3
+ name: Main SMES 3
- type: Transform
pos: -31.5,-31.5
parent: 34
@@ -72897,14 +73361,14 @@ entities:
- uid: 11763
components:
- type: MetaData
- name: TEG SMES 1
+ name: Auxiliary SMES 1
- type: Transform
pos: -50.5,-29.5
parent: 34
- uid: 11787
components:
- type: MetaData
- name: TEG SMES 2
+ name: Auxiliary SMES 2
- type: Transform
pos: -50.5,-30.5
parent: 34
@@ -73305,10 +73769,10 @@ entities:
parent: 34
- proto: SpawnMobArcticFoxSiobhan
entities:
- - uid: 954
+ - uid: 13827
components:
- type: Transform
- pos: -31.5,-6.5
+ pos: -31.5,-8.5
parent: 34
- proto: SpawnMobBandito
entities:
@@ -74500,13 +74964,6 @@ entities:
parent: 34
- proto: StorageCanister
entities:
- - uid: 933
- components:
- - type: Transform
- pos: -30.5,-4.5
- parent: 34
- - type: AtmosDevice
- joinedGrid: 34
- uid: 1647
components:
- type: Transform
@@ -74521,20 +74978,6 @@ entities:
parent: 34
- type: AtmosDevice
joinedGrid: 34
- - uid: 1795
- components:
- - type: Transform
- pos: -40.5,-31.5
- parent: 34
- - type: AtmosDevice
- joinedGrid: 34
- - uid: 1796
- components:
- - type: Transform
- pos: -40.5,-32.5
- parent: 34
- - type: AtmosDevice
- joinedGrid: 34
- proto: SubstationBasic
entities:
- uid: 2236
@@ -80012,6 +80455,11 @@ entities:
- type: Transform
pos: 47.5,-26.5
parent: 34
+ - uid: 1431
+ components:
+ - type: Transform
+ pos: -41.5,-52.5
+ parent: 34
- uid: 1432
components:
- type: Transform
@@ -80022,6 +80470,11 @@ entities:
- type: Transform
pos: 19.5,-21.5
parent: 34
+ - uid: 1445
+ components:
+ - type: Transform
+ pos: -41.5,-51.5
+ parent: 34
- uid: 1454
components:
- type: Transform
@@ -80142,6 +80595,11 @@ entities:
- type: Transform
pos: -51.5,-40.5
parent: 34
+ - uid: 1560
+ components:
+ - type: Transform
+ pos: -61.5,-26.5
+ parent: 34
- uid: 1568
components:
- type: Transform
@@ -80192,16 +80650,6 @@ entities:
- type: Transform
pos: -41.5,-28.5
parent: 34
- - uid: 1628
- components:
- - type: Transform
- pos: -45.5,-50.5
- parent: 34
- - uid: 1633
- components:
- - type: Transform
- pos: -40.5,-50.5
- parent: 34
- uid: 1654
components:
- type: Transform
@@ -80222,11 +80670,6 @@ entities:
- type: Transform
pos: -39.5,-50.5
parent: 34
- - uid: 1721
- components:
- - type: Transform
- pos: -36.5,-43.5
- parent: 34
- uid: 1740
components:
- type: Transform
@@ -80400,11 +80843,6 @@ entities:
- type: Transform
pos: -56.5,-18.5
parent: 34
- - uid: 2093
- components:
- - type: Transform
- pos: -58.5,-24.5
- parent: 34
- uid: 2094
components:
- type: Transform
@@ -80491,11 +80929,6 @@ entities:
- type: Transform
pos: -49.5,-19.5
parent: 34
- - uid: 2406
- components:
- - type: Transform
- pos: -49.5,-35.5
- parent: 34
- uid: 2420
components:
- type: Transform
@@ -83120,6 +83553,11 @@ entities:
- type: Transform
pos: 47.5,-11.5
parent: 34
+ - uid: 7234
+ components:
+ - type: Transform
+ pos: -41.5,-50.5
+ parent: 34
- uid: 7412
components:
- type: Transform
@@ -83225,11 +83663,6 @@ entities:
- type: Transform
pos: -39.5,11.5
parent: 34
- - uid: 7820
- components:
- - type: Transform
- pos: -49.5,-36.5
- parent: 34
- uid: 7827
components:
- type: Transform
@@ -83660,6 +84093,11 @@ entities:
- type: Transform
pos: 0.5,12.5
parent: 34
+ - uid: 11429
+ components:
+ - type: Transform
+ pos: -62.5,-26.5
+ parent: 34
- uid: 11438
components:
- type: Transform
@@ -83670,15 +84108,10 @@ entities:
- type: Transform
pos: 42.5,-18.5
parent: 34
- - uid: 11470
- components:
- - type: Transform
- pos: -58.5,-23.5
- parent: 34
- - uid: 11472
+ - uid: 11445
components:
- type: Transform
- pos: -57.5,-23.5
+ pos: -62.5,-25.5
parent: 34
- uid: 11473
components:
@@ -83720,6 +84153,11 @@ entities:
- type: Transform
pos: -10.5,7.5
parent: 34
+ - uid: 11542
+ components:
+ - type: Transform
+ pos: -62.5,-24.5
+ parent: 34
- uid: 11588
components:
- type: Transform
@@ -83935,11 +84373,6 @@ entities:
- type: Transform
pos: -60.5,-24.5
parent: 34
- - uid: 12543
- components:
- - type: Transform
- pos: -60.5,-25.5
- parent: 34
- uid: 12544
components:
- type: Transform
@@ -84045,11 +84478,6 @@ entities:
- type: Transform
pos: 7.5,-47.5
parent: 34
- - uid: 13003
- components:
- - type: Transform
- pos: -59.5,-24.5
- parent: 34
- uid: 13066
components:
- type: Transform
@@ -86887,6 +87315,12 @@ entities:
parent: 34
- proto: WindoorSecure
entities:
+ - uid: 931
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -26.5,-4.5
+ parent: 34
- uid: 4529
components:
- type: Transform
@@ -87519,6 +87953,17 @@ entities:
- type: Transform
pos: -16.5,6.5
parent: 34
+ - uid: 1645
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -27.5,-5.5
+ parent: 34
+ - uid: 3324
+ components:
+ - type: Transform
+ pos: -27.5,-3.5
+ parent: 34
- uid: 4205
components:
- type: Transform
@@ -87744,6 +88189,11 @@ entities:
parent: 34
- proto: Wirecutter
entities:
+ - uid: 925
+ components:
+ - type: Transform
+ pos: -63.583904,-24.275991
+ parent: 34
- uid: 13568
components:
- type: Transform
diff --git a/Resources/Maps/submarine.yml b/Resources/Maps/submarine.yml
index dae008eaeb8..632cf4c559c 100644
--- a/Resources/Maps/submarine.yml
+++ b/Resources/Maps/submarine.yml
@@ -49,6 +49,7 @@ tilemap:
65: FloorLino
67: FloorMetalDiamond
68: FloorMime
+ 1: FloorMowedAstroGrass
75: FloorOldConcreteSmooth
79: FloorRGlass
80: FloorReinforced
@@ -72,6 +73,7 @@ tilemap:
120: FloorWhitePavement
122: FloorWhitePlastic
123: FloorWood
+ 3: FloorWoodLarge
125: FloorWoodTile
126: Lattice
127: Plating
@@ -116,7 +118,7 @@ entities:
version: 6
2,0:
ind: 2,0
- tiles: fwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMgAAAAAADAAAAAACfwAAAAAAUAAAAAAATwAAAAABTwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAbwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAADAAAAAAADAAAAAADTwAAAAABUAAAAAAATwAAAAABTwAAAAADUAAAAAAATwAAAAACfwAAAAAAbwAAAAABfwAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAADAAAAAACfwAAAAAAfwAAAAAAUAAAAAAATwAAAAAATwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAADAAAAAABUAAAAAAAfwAAAAAAXgAAAAAATwAAAAACTwAAAAABXgAAAAADfwAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAADAAAAAADUAAAAAAAfwAAAAAAXgAAAAABXgAAAAABXgAAAAACXgAAAAACfwAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAADAAAAAADUAAAAAAATwAAAAABXgAAAAAAXgAAAAADXgAAAAABXgAAAAABTwAAAAABfwAAAAAAbwAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAADAAAAAAAfwAAAAAAfwAAAAAAXgAAAAAAXgAAAAAAXgAAAAADXgAAAAAAfwAAAAAATwAAAAAATwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbwAAAAADfwAAAAAAbgAAAAAAbgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAABfwAAAAAAbgAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAbgAAAAAAbgAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAbgAAAAAAbgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAADAAAAAAAfwAAAAAAbgAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAbgAAAAAAbgAAAAAATwAAAAAATwAAAAACTwAAAAADTwAAAAAATwAAAAABbgAAAAAAbgAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAbgAAAAAAfwAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAATwAAAAACbgAAAAAAbgAAAAAAbgAAAAAATwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAANAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAANAAAAAAATwAAAAABbgAAAAAAbgAAAAAAbgAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAATwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAANAAAAAAAfwAAAAAATwAAAAADTwAAAAADfwAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAATwAAAAAANAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAANAAAAAAAfwAAAAAAXgAAAAABXgAAAAADXgAAAAABfwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAAfwAAAAAA
+ tiles: fwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMgAAAAAADAAAAAACfwAAAAAAVAAAAAAATwAAAAABTwAAAAAAVAAAAAAAfwAAAAAAfwAAAAAAbwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAADAAAAAAADAAAAAADTwAAAAABVAAAAAAATwAAAAABTwAAAAADVAAAAAAATwAAAAACfwAAAAAAbwAAAAABfwAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAADAAAAAACfwAAAAAAfwAAAAAAVAAAAAAATwAAAAAATwAAAAAAVAAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAADAAAAAABUAAAAAAAfwAAAAAAXgAAAAAATwAAAAACTwAAAAABXgAAAAADfwAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAADAAAAAADUAAAAAAAfwAAAAAAXgAAAAABXgAAAAABXgAAAAACXgAAAAACfwAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAADAAAAAADUAAAAAAATwAAAAABXgAAAAAAXgAAAAADXgAAAAABXgAAAAABTwAAAAABfwAAAAAAbwAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAADAAAAAAAfwAAAAAAfwAAAAAAXgAAAAAAXgAAAAAAXgAAAAADXgAAAAAAfwAAAAAATwAAAAAATwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbwAAAAADfwAAAAAAbgAAAAAAbgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAABfwAAAAAAbgAAAAAAVAAAAAAAVAAAAAAAfwAAAAAAbgAAAAAAbgAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAbgAAAAAAbgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAADAAAAAAAfwAAAAAAbgAAAAAAVAAAAAAAVAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAbgAAAAAAbgAAAAAATwAAAAAATwAAAAACTwAAAAADTwAAAAAATwAAAAABbgAAAAAAbgAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAbgAAAAAAfwAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAATwAAAAACbgAAAAAAbgAAAAAAbgAAAAAATwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAANAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAANAAAAAAATwAAAAABbgAAAAAAbgAAAAAAbgAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAATwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAANAAAAAAAfwAAAAAATwAAAAADTwAAAAADfwAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAATwAAAAAANAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAANAAAAAAAfwAAAAAAXgAAAAABXgAAAAADXgAAAAABfwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAAfwAAAAAA
version: 6
2,-1:
ind: 2,-1
@@ -188,11 +190,11 @@ entities:
version: 6
-1,-2:
ind: -1,-2
- tiles: fwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAATwAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAABXgAAAAADXgAAAAADXgAAAAACXgAAAAADDgAAAAABDgAAAAABDgAAAAACDgAAAAADDgAAAAABDgAAAAAADgAAAAACMgAAAAAATwAAAAAAfwAAAAAAfwAAAAAATwAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAADgAAAAACTwAAAAACTwAAAAADTwAAAAABTwAAAAAADgAAAAACDgAAAAACMgAAAAAAfwAAAAAAfwAAAAAAbwAAAAACbwAAAAABbwAAAAAAbgAAAAAAbgAAAAAAfwAAAAAADgAAAAADTwAAAAACTwAAAAACTwAAAAABTwAAAAAADgAAAAAADgAAAAABMgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAADgAAAAABDgAAAAACDgAAAAADDgAAAAAADgAAAAABDgAAAAACDgAAAAACMgAAAAAAfwAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAATwAAAAABfwAAAAAAfwAAAAAATwAAAAABUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIQAAAAABIQAAAAADIQAAAAACIQAAAAAAfwAAAAAAIQAAAAACIQAAAAABIQAAAAADIQAAAAAAIQAAAAACIQAAAAADIQAAAAACIQAAAAABfwAAAAAAfwAAAAAAfwAAAAAAIQAAAAACIQAAAAABIQAAAAADIQAAAAAAfwAAAAAAIQAAAAADIQAAAAADIQAAAAADIQAAAAACIQAAAAABIQAAAAADIQAAAAABIQAAAAACTwAAAAABfwAAAAAAfwAAAAAAIQAAAAAAIQAAAAAAIQAAAAABIQAAAAABfwAAAAAAIQAAAAACIQAAAAADIQAAAAACIQAAAAABIQAAAAADIQAAAAAAIQAAAAAAIQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAABXgAAAAABXgAAAAABfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAABIAAAAAABfwAAAAAATwAAAAADfwAAAAAAIQAAAAADIQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAJQAAAAABJQAAAAADJQAAAAADJQAAAAAAIAAAAAACIAAAAAAAIAAAAAADIAAAAAAAIAAAAAACIAAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAAAIAAAAAAAIAAAAAABJQAAAAACIAAAAAABIAAAAAACIAAAAAADIAAAAAACIAAAAAAAIAAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAABIAAAAAAAIAAAAAACIAAAAAACIAAAAAADIAAAAAADIAAAAAABIAAAAAAAIAAAAAADIAAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAJQAAAAACIAAAAAADIAAAAAABIAAAAAABIAAAAAABIAAAAAACUAAAAAAAUAAAAAAAIAAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAawAAAAACawAAAAAAUAAAAAAAUAAAAAAAfwAAAAAATwAAAAACTwAAAAADTwAAAAADfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAawAAAAABawAAAAADXgAAAAACXgAAAAACXgAAAAABXgAAAAABXgAAAAAAXgAAAAABXgAAAAABXgAAAAACXgAAAAAAXgAAAAAAXgAAAAABXgAAAAABXgAAAAAATwAAAAABawAAAAADTwAAAAAA
+ tiles: fwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAATwAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAABXgAAAAADXgAAAAADXgAAAAACXgAAAAADDgAAAAABDgAAAAABDgAAAAACDgAAAAADDgAAAAABDgAAAAAADgAAAAACMgAAAAAATwAAAAAAfwAAAAAAfwAAAAAATwAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAADgAAAAACTwAAAAACTwAAAAADTwAAAAABTwAAAAAADgAAAAACDgAAAAACMgAAAAAAfwAAAAAAfwAAAAAAbwAAAAACbwAAAAABbwAAAAAAbgAAAAAAbgAAAAAAfwAAAAAADgAAAAADTwAAAAACTwAAAAACTwAAAAABTwAAAAAADgAAAAAADgAAAAABMgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAADgAAAAABDgAAAAACDgAAAAADDgAAAAAADgAAAAABDgAAAAACDgAAAAACMgAAAAAAfwAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAATwAAAAABfwAAAAAAfwAAAAAATwAAAAABUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIQAAAAABIQAAAAADIQAAAAACIQAAAAAAfwAAAAAAIQAAAAACIQAAAAABIQAAAAADIQAAAAAAIQAAAAACIQAAAAADIQAAAAACIQAAAAABfwAAAAAAfwAAAAAAfwAAAAAAIQAAAAACIQAAAAABIQAAAAADIQAAAAAAfwAAAAAAIQAAAAADIQAAAAADIQAAAAADIQAAAAACIQAAAAABIQAAAAADIQAAAAABIQAAAAACTwAAAAABfwAAAAAAfwAAAAAAIQAAAAAAIQAAAAAAIQAAAAABIQAAAAABfwAAAAAAIQAAAAACIQAAAAADIQAAAAACIQAAAAABIQAAAAADIQAAAAAAIQAAAAAAIQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAABXgAAAAABXgAAAAABfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAABIAAAAAABfwAAAAAATwAAAAADfwAAAAAAIQAAAAADIQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAJQAAAAABJQAAAAADJQAAAAADJQAAAAAAIAAAAAACIAAAAAAAIAAAAAADIAAAAAAAIAAAAAACIAAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAAAIAAAAAAAIAAAAAABJQAAAAACIAAAAAABIAAAAAACIAAAAAADIAAAAAACIAAAAAAAIAAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAABIAAAAAAAIAAAAAACIAAAAAACIAAAAAADIAAAAAADIAAAAAABIAAAAAAAIAAAAAADIAAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAVAAAAAAAJQAAAAACIAAAAAADIAAAAAABIAAAAAABIAAAAAABIAAAAAACUAAAAAAAUAAAAAAAIAAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAawAAAAACawAAAAAAUAAAAAAAUAAAAAAAfwAAAAAATwAAAAACTwAAAAADTwAAAAADfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAawAAAAABawAAAAADXgAAAAACXgAAAAACXgAAAAABXgAAAAABXgAAAAAAXgAAAAABXgAAAAABXgAAAAACXgAAAAAAXgAAAAAAXgAAAAABXgAAAAABXgAAAAAATwAAAAABawAAAAADTwAAAAAA
version: 6
-2,-2:
ind: -2,-2
- tiles: bgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbwAAAAABbgAAAAAAfwAAAAAAfwAAAAAAMgAAAAAAUAAAAAAAIAAAAAACTwAAAAAAIAAAAAADUAAAAAAAfwAAAAAAfwAAAAAAbwAAAAACbgAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAbwAAAAACbwAAAAAAfwAAAAAAMgAAAAAAUAAAAAAAIAAAAAABTwAAAAADIAAAAAADUAAAAAAAfwAAAAAADgAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAMgAAAAAAUAAAAAAAIAAAAAADTwAAAAAAIAAAAAABUAAAAAAAUAAAAAAADgAAAAAAbwAAAAABbwAAAAADbgAAAAAAbgAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAMgAAAAAAUAAAAAAAIAAAAAAAIAAAAAACIAAAAAAAUAAAAAAAUAAAAAAADgAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAMgAAAAAAUAAAAAAAIAAAAAADIAAAAAADIAAAAAAAUAAAAAAAfwAAAAAADgAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAATwAAAAABUAAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAIQAAAAAAIQAAAAABIQAAAAADIQAAAAADIQAAAAACIQAAAAADIQAAAAADfwAAAAAAUAAAAAAAIQAAAAACIQAAAAABIQAAAAAAJQAAAAACIQAAAAABIQAAAAADfwAAAAAAIQAAAAABIQAAAAAAIQAAAAADIQAAAAABIQAAAAADIQAAAAACIQAAAAAATwAAAAACUAAAAAAAIQAAAAADIQAAAAABIQAAAAAAIQAAAAABIQAAAAADIQAAAAACfwAAAAAAIQAAAAAAIQAAAAADIQAAAAACIQAAAAADIQAAAAAAIQAAAAACIQAAAAABTwAAAAACUAAAAAAAIQAAAAADJQAAAAAAJQAAAAADIQAAAAABfwAAAAAAIQAAAAACfwAAAAAAfwAAAAAATwAAAAADfwAAAAAAfwAAAAAATwAAAAADTwAAAAABfwAAAAAAfwAAAAAAUAAAAAAAIQAAAAADJQAAAAABJQAAAAADIQAAAAABfwAAAAAAfwAAAAAAfwAAAAAAIQAAAAABIQAAAAADIQAAAAAAIQAAAAADIQAAAAABIQAAAAAAIQAAAAADfwAAAAAAJQAAAAACIQAAAAADJQAAAAABJQAAAAADIQAAAAAATwAAAAACJQAAAAADfwAAAAAAIQAAAAAAIQAAAAAAIQAAAAADIQAAAAACIQAAAAAAIQAAAAAAIQAAAAAATwAAAAADIQAAAAABIQAAAAACIQAAAAADIQAAAAABIQAAAAABTwAAAAACJQAAAAACfwAAAAAAIQAAAAAAIQAAAAABIQAAAAABIQAAAAACIQAAAAACIQAAAAADIQAAAAADTwAAAAAAIQAAAAAAIQAAAAABIQAAAAABIQAAAAACIQAAAAACTwAAAAABIAAAAAADfwAAAAAAIQAAAAADIQAAAAACIQAAAAABIQAAAAAAIQAAAAACIQAAAAABIQAAAAABTwAAAAACIQAAAAADIQAAAAAAJQAAAAADUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAATwAAAAABTwAAAAADTwAAAAAAfwAAAAAATwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAXgAAAAABDAAAAAACDAAAAAACDAAAAAACDAAAAAABXgAAAAABXgAAAAAAXgAAAAADfwAAAAAAewAAAAABewAAAAADewAAAAABewAAAAACewAAAAABfwAAAAAAXgAAAAAC
+ tiles: bgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbwAAAAABbgAAAAAAfwAAAAAAfwAAAAAAMgAAAAAAVAAAAAAAIAAAAAACTwAAAAAAIAAAAAADVAAAAAAAfwAAAAAAfwAAAAAAbwAAAAACbgAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAbwAAAAACbwAAAAAAfwAAAAAAMgAAAAAAVAAAAAAAIAAAAAABTwAAAAADIAAAAAADVAAAAAAAfwAAAAAADgAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAMgAAAAAAVAAAAAAAIAAAAAADTwAAAAAAIAAAAAABVAAAAAAAUAAAAAAADgAAAAAAbwAAAAABbwAAAAADbgAAAAAAbgAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAMgAAAAAAVAAAAAAAIAAAAAAAIAAAAAACIAAAAAAAVAAAAAAAUAAAAAAADgAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAMgAAAAAAVAAAAAAAIAAAAAADIAAAAAADIAAAAAAAVAAAAAAAfwAAAAAADgAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAVAAAAAAAUAAAAAAATwAAAAABUAAAAAAAVAAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAIQAAAAAAIQAAAAABIQAAAAADIQAAAAADIQAAAAACIQAAAAADIQAAAAADfwAAAAAAVAAAAAAAIQAAAAACIQAAAAABIQAAAAAAJQAAAAACIQAAAAABIQAAAAADfwAAAAAAIQAAAAABIQAAAAAAIQAAAAADIQAAAAABIQAAAAADIQAAAAACIQAAAAAATwAAAAACVAAAAAAAIQAAAAADIQAAAAABIQAAAAAAIQAAAAABIQAAAAADIQAAAAACfwAAAAAAIQAAAAAAIQAAAAADIQAAAAACIQAAAAADIQAAAAAAIQAAAAACIQAAAAABTwAAAAACVAAAAAAAIQAAAAADJQAAAAAAJQAAAAADIQAAAAABfwAAAAAAIQAAAAACfwAAAAAAfwAAAAAATwAAAAADfwAAAAAAfwAAAAAATwAAAAADTwAAAAABfwAAAAAAfwAAAAAAVAAAAAAAIQAAAAADJQAAAAABJQAAAAADIQAAAAABfwAAAAAAfwAAAAAAfwAAAAAAIQAAAAABIQAAAAADIQAAAAAAIQAAAAADIQAAAAABIQAAAAAAIQAAAAADfwAAAAAAJQAAAAACIQAAAAADJQAAAAABJQAAAAADIQAAAAAATwAAAAACJQAAAAADfwAAAAAAIQAAAAAAIQAAAAAAIQAAAAADIQAAAAACIQAAAAAAIQAAAAAAIQAAAAAATwAAAAADIQAAAAABIQAAAAACIQAAAAADIQAAAAABIQAAAAABTwAAAAACJQAAAAACfwAAAAAAIQAAAAAAIQAAAAABIQAAAAABIQAAAAACIQAAAAACIQAAAAADIQAAAAADTwAAAAAAIQAAAAAAIQAAAAABIQAAAAABIQAAAAACIQAAAAACTwAAAAABIAAAAAADfwAAAAAAIQAAAAADIQAAAAACIQAAAAABIQAAAAAAIQAAAAACIQAAAAABIQAAAAABTwAAAAACIQAAAAADIQAAAAAAJQAAAAADVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAfwAAAAAAfwAAAAAATwAAAAABTwAAAAADTwAAAAAAfwAAAAAATwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAXgAAAAABDAAAAAACDAAAAAACDAAAAAACDAAAAAABXgAAAAABXgAAAAAAXgAAAAADfwAAAAAAewAAAAABewAAAAADewAAAAABewAAAAACewAAAAABfwAAAAAAXgAAAAAC
version: 6
-3,-2:
ind: -3,-2
@@ -204,15 +206,15 @@ entities:
version: 6
3,0:
ind: 3,0
- tiles: fwAAAAAAXgAAAAABawAAAAACXgAAAAAAUAAAAAAADAAAAAADDAAAAAABDAAAAAACDAAAAAACMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAfwAAAAAAXgAAAAABawAAAAACXgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAXgAAAAAAawAAAAADXgAAAAABfwAAAAAAbwAAAAABfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAawAAAAABawAAAAACXgAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAACawAAAAADXgAAAAAAXgAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAABawAAAAABXgAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAADawAAAAABXgAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXgAAAAAAawAAAAADXgAAAAACfwAAAAAAbwAAAAACfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAATwAAAAACTwAAAAABTwAAAAADfwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAXgAAAAABawAAAAABXgAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAXgAAAAACawAAAAADXgAAAAAAfwAAAAAAIwAAAAACIwAAAAADIwAAAAABIwAAAAACIwAAAAACIwAAAAADIwAAAAAAIwAAAAADIwAAAAAAIwAAAAAAIwAAAAABIwAAAAAATwAAAAABTwAAAAAATwAAAAABUAAAAAAAIwAAAAADIgAAAAADIgAAAAACIgAAAAADIgAAAAABIgAAAAAAIgAAAAABIgAAAAABIgAAAAABIgAAAAACIgAAAAAAIgAAAAACTwAAAAADTwAAAAABTwAAAAAAUAAAAAAAIwAAAAADIgAAAAABIgAAAAACIgAAAAABIgAAAAABIgAAAAABIwAAAAABIwAAAAABIwAAAAACIwAAAAABIwAAAAABIgAAAAADTwAAAAADTwAAAAACTwAAAAABUAAAAAAAIwAAAAABIgAAAAAAIgAAAAABIgAAAAABIgAAAAACIgAAAAACIwAAAAADIwAAAAAAIwAAAAADIwAAAAACIwAAAAADIgAAAAACXgAAAAACawAAAAADXgAAAAABUAAAAAAAIwAAAAADIgAAAAABIgAAAAACIgAAAAACIgAAAAAAIgAAAAADIwAAAAAAIwAAAAAAIwAAAAADIwAAAAAAIwAAAAADIgAAAAACXgAAAAAAawAAAAABXgAAAAADfwAAAAAAIwAAAAAAIgAAAAACIgAAAAACIgAAAAABIgAAAAACIgAAAAADIgAAAAABIgAAAAADIgAAAAACIgAAAAABIgAAAAADIgAAAAAB
+ tiles: fwAAAAAAXgAAAAABawAAAAACXgAAAAAAUAAAAAAADAAAAAADDAAAAAABDAAAAAACDAAAAAACMgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAfwAAAAAAXgAAAAABawAAAAACXgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAXgAAAAAAawAAAAADXgAAAAABfwAAAAAAbwAAAAABfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAawAAAAABawAAAAACXgAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAACawAAAAADXgAAAAAAXgAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAABawAAAAABXgAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAADawAAAAABXgAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXgAAAAAAawAAAAADXgAAAAACfwAAAAAAbwAAAAACfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAATwAAAAACTwAAAAABTwAAAAADfwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAXgAAAAABawAAAAABXgAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAXgAAAAACawAAAAADXgAAAAAAfwAAAAAAIwAAAAACIwAAAAADIwAAAAABIwAAAAACIwAAAAACIwAAAAADIwAAAAAAIwAAAAADIwAAAAAAIwAAAAAAIwAAAAABIwAAAAAATwAAAAABTwAAAAAATwAAAAABUAAAAAAAIwAAAAADIgAAAAADIgAAAAACIgAAAAADIgAAAAABIgAAAAAAIgAAAAABIgAAAAABIgAAAAABIgAAAAACIgAAAAAAIgAAAAACTwAAAAADTwAAAAABTwAAAAAAUAAAAAAAIwAAAAADIgAAAAABIgAAAAACIgAAAAABIgAAAAABIgAAAAABIwAAAAABIwAAAAABIwAAAAACIwAAAAABIwAAAAABIgAAAAADTwAAAAADTwAAAAACTwAAAAABUAAAAAAAIwAAAAABIgAAAAAAIgAAAAABIgAAAAABIgAAAAACIgAAAAACIwAAAAADIwAAAAAAIwAAAAADIwAAAAACIwAAAAADIgAAAAACXgAAAAACawAAAAADXgAAAAABUAAAAAAAIwAAAAADIgAAAAABIgAAAAACIgAAAAACIgAAAAAAIgAAAAADIwAAAAAAIwAAAAAAIwAAAAADIwAAAAAAIwAAAAADIgAAAAACXgAAAAAAawAAAAABXgAAAAADfwAAAAAAIwAAAAAAIgAAAAACIgAAAAACIgAAAAABIgAAAAACIgAAAAADIgAAAAABIgAAAAADIgAAAAACIgAAAAABIgAAAAADIgAAAAAB
version: 6
3,-1:
ind: 3,-1
- tiles: XgAAAAADUAAAAAAAfwAAAAAAfwAAAAAAMgAAAAAAawAAAAABawAAAAAAawAAAAACDQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAawAAAAACXgAAAAADXgAAAAABfwAAAAAAfwAAAAAAawAAAAABawAAAAABawAAAAADawAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAawAAAAAAawAAAAADXgAAAAACXgAAAAAAUAAAAAAAMgAAAAAAawAAAAABawAAAAADawAAAAACawAAAAABawAAAAADDQAAAAAADQAAAAAADQAAAAAADQAAAAAAawAAAAABXgAAAAAAawAAAAABawAAAAABXgAAAAACUAAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAawAAAAACawAAAAABawAAAAACawAAAAAAawAAAAADawAAAAADawAAAAADawAAAAADXgAAAAACXgAAAAAAawAAAAAAXgAAAAACXgAAAAACUAAAAAAAMgAAAAAADAAAAAABDAAAAAABDAAAAAAADAAAAAABawAAAAACawAAAAADawAAAAAAawAAAAACawAAAAACfwAAAAAAXgAAAAADawAAAAAAXgAAAAAAXgAAAAADfwAAAAAADAAAAAAADAAAAAAADAAAAAABDAAAAAADDAAAAAAAawAAAAADawAAAAAAawAAAAADawAAAAABMgAAAAAAfwAAAAAATwAAAAABTwAAAAABTwAAAAACfwAAAAAAfwAAAAAADAAAAAADDAAAAAADDAAAAAAADAAAAAACDAAAAAACDAAAAAABawAAAAABawAAAAADawAAAAABDAAAAAACUAAAAAAAXgAAAAAAawAAAAAAXgAAAAACfwAAAAAADAAAAAADDAAAAAADDAAAAAABDAAAAAAADAAAAAABDAAAAAACDAAAAAADDAAAAAADawAAAAABawAAAAAAMgAAAAAAUAAAAAAAXgAAAAAAawAAAAAAXgAAAAABUAAAAAAADAAAAAADDAAAAAACDAAAAAABDAAAAAACDAAAAAADMgAAAAAAMgAAAAAADAAAAAACawAAAAADawAAAAACMgAAAAAAfwAAAAAAXgAAAAACawAAAAAAXgAAAAACTwAAAAACawAAAAACDAAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAawAAAAABawAAAAAAawAAAAACDAAAAAABewAAAAABXgAAAAABawAAAAABXgAAAAABTwAAAAADawAAAAADawAAAAAAawAAAAABawAAAAADawAAAAABawAAAAACawAAAAACawAAAAACawAAAAABawAAAAADawAAAAAAewAAAAAAXgAAAAAAawAAAAADXgAAAAABTwAAAAACawAAAAACawAAAAADawAAAAAAawAAAAACawAAAAADawAAAAADawAAAAABDAAAAAAADAAAAAAADAAAAAAAawAAAAAAewAAAAAAXgAAAAADawAAAAABXgAAAAACUAAAAAAADAAAAAAADAAAAAAAawAAAAACawAAAAADDAAAAAAADAAAAAABDAAAAAACDAAAAAABDAAAAAAADAAAAAABDAAAAAADewAAAAADXgAAAAADawAAAAABXgAAAAADTwAAAAAAawAAAAACawAAAAABawAAAAADDAAAAAABDAAAAAACDAAAAAADDAAAAAACDAAAAAAADAAAAAACDAAAAAADDAAAAAAAewAAAAAAXgAAAAAAawAAAAAAXgAAAAAATwAAAAADawAAAAABawAAAAAAawAAAAADDAAAAAABDAAAAAABDAAAAAACDAAAAAAADAAAAAABDAAAAAAADAAAAAADDAAAAAABfwAAAAAAXgAAAAAAawAAAAACXgAAAAADTwAAAAAAawAAAAADDAAAAAADDAAAAAACDAAAAAADDAAAAAACMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAADAAAAAAA
+ tiles: XgAAAAADUAAAAAAAfwAAAAAAfwAAAAAAMgAAAAAAawAAAAABawAAAAAAawAAAAACDQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAawAAAAACXgAAAAADXgAAAAABfwAAAAAAfwAAAAAAawAAAAABawAAAAABawAAAAADawAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAawAAAAAAawAAAAADXgAAAAACXgAAAAAAUAAAAAAAMgAAAAAAawAAAAABawAAAAADawAAAAACawAAAAABawAAAAADDQAAAAAADQAAAAAADQAAAAAADQAAAAAAawAAAAABXgAAAAAAawAAAAABawAAAAABXgAAAAACUAAAAAAAMgAAAAAAAQAAAAAAAQAAAAAAawAAAAACawAAAAABawAAAAACawAAAAAAawAAAAADawAAAAADawAAAAADawAAAAADXgAAAAACXgAAAAAAawAAAAAAXgAAAAACXgAAAAACUAAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAADAAAAAABawAAAAACawAAAAADawAAAAAAawAAAAACAQAAAAAAfwAAAAAAXgAAAAADawAAAAAAXgAAAAAAXgAAAAADfwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAADAAAAAAAawAAAAADawAAAAAAawAAAAADawAAAAAAAwAAAAAAfwAAAAAATwAAAAABTwAAAAABTwAAAAACfwAAAAAAfwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAADAAAAAACDAAAAAABawAAAAABawAAAAADawAAAAABAwAAAAAAUAAAAAAAXgAAAAAAawAAAAAAXgAAAAACfwAAAAAAMgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAADAAAAAACDAAAAAADDAAAAAADawAAAAABawAAAAAAAwAAAAAAUAAAAAAAXgAAAAAAawAAAAAAXgAAAAABUAAAAAAAAQAAAAAAAwAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADAAAAAACawAAAAADawAAAAACAQAAAAAAfwAAAAAAXgAAAAACawAAAAAAXgAAAAACTwAAAAACawAAAAACDAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAawAAAAABawAAAAAAawAAAAACAQAAAAAAewAAAAABXgAAAAABawAAAAABXgAAAAABTwAAAAADawAAAAADawAAAAAAawAAAAABawAAAAADawAAAAABawAAAAACawAAAAACawAAAAACawAAAAABawAAAAADawAAAAAAewAAAAAAXgAAAAAAawAAAAADXgAAAAABTwAAAAACawAAAAACawAAAAADawAAAAAAawAAAAACawAAAAADawAAAAADawAAAAABDAAAAAAADAAAAAAADAAAAAAAawAAAAAAewAAAAAAXgAAAAADawAAAAABXgAAAAACUAAAAAAADAAAAAAADAAAAAAAawAAAAACawAAAAADDAAAAAAADAAAAAABDAAAAAACDAAAAAABDAAAAAAADAAAAAABDAAAAAADewAAAAADXgAAAAADawAAAAABXgAAAAADTwAAAAAAawAAAAACawAAAAABawAAAAADDAAAAAABDAAAAAACDAAAAAADDAAAAAACDAAAAAAADAAAAAACDAAAAAADDAAAAAAAewAAAAAAXgAAAAAAawAAAAAAXgAAAAAATwAAAAADawAAAAABawAAAAAAawAAAAADDAAAAAABDAAAAAABDAAAAAACDAAAAAAADAAAAAABDAAAAAAADAAAAAADDAAAAAABfwAAAAAAXgAAAAAAawAAAAACXgAAAAADTwAAAAAAawAAAAADDAAAAAADDAAAAAACDAAAAAADDAAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADAAAAAAA
version: 6
3,-2:
ind: 3,-2
- tiles: NAAAAAAANAAAAAAANAAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAbwAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAbgAAAAAAbwAAAAABbwAAAAABbgAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAANAAAAAAATwAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAATwAAAAADfwAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbwAAAAAAbwAAAAADbgAAAAAAbgAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAANAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAMgAAAAAADAAAAAACDAAAAAACawAAAAACawAAAAABawAAAAABDAAAAAADMgAAAAAADAAAAAACMgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAADAAAAAADMgAAAAAAMgAAAAAAawAAAAABawAAAAADawAAAAACawAAAAAAawAAAAABawAAAAABawAAAAADawAAAAADDAAAAAAADAAAAAADDAAAAAAAfwAAAAAAfwAAAAAADAAAAAADMgAAAAAAawAAAAABawAAAAABawAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAawAAAAACawAAAAADawAAAAADDAAAAAACDAAAAAAAfwAAAAAADAAAAAADawAAAAAAawAAAAACDQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAawAAAAABawAAAAABDAAAAAADTwAAAAAAawAAAAABawAAAAADawAAAAADDQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAPgAAAAAAawAAAAACawAAAAABfwAAAAAAawAAAAABawAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAfwAAAAAAawAAAAADawAAAAABDQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAfwAAAAAAawAAAAACawAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAfwAAAAAADAAAAAADawAAAAACDQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAfwAAAAAAMgAAAAAAawAAAAADawAAAAACDQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAUAAAAAAAMgAAAAAAMgAAAAAAawAAAAAAawAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAUAAAAAAAMgAAAAAAMgAAAAAADAAAAAAAawAAAAACawAAAAACDQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAA
+ tiles: NAAAAAAANAAAAAAANAAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAbwAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAbgAAAAAAbwAAAAABbwAAAAABbgAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAANAAAAAAATwAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAATwAAAAADfwAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbwAAAAAAbwAAAAADbgAAAAAAbgAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAANAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAQAAAAAADAAAAAACDAAAAAACawAAAAACawAAAAABawAAAAABDAAAAAADMgAAAAAADAAAAAACMgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAADAAAAAADAQAAAAAAAQAAAAAAawAAAAABawAAAAADawAAAAACawAAAAAAawAAAAABawAAAAABawAAAAADawAAAAADDAAAAAAADAAAAAADDAAAAAAAfwAAAAAAfwAAAAAADAAAAAADAQAAAAAAawAAAAABawAAAAABawAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAawAAAAACawAAAAADawAAAAADDAAAAAACDAAAAAAAfwAAAAAADAAAAAADawAAAAAAawAAAAACDQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAawAAAAABawAAAAABDAAAAAADTwAAAAAAawAAAAABawAAAAADawAAAAADDQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAPgAAAAAAawAAAAACawAAAAABfwAAAAAAawAAAAABawAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAfwAAAAAAawAAAAADawAAAAABDQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAfwAAAAAAawAAAAACawAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAfwAAAAAADAAAAAADawAAAAACDQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAfwAAAAAAMgAAAAAAawAAAAADawAAAAACDQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAUAAAAAAAMgAAAAAAMgAAAAAAawAAAAAAawAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAUAAAAAAAMgAAAAAAMgAAAAAADAAAAAAAawAAAAACawAAAAACDQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAA
version: 6
0,2:
ind: 0,2
@@ -224,15 +226,15 @@ entities:
version: 6
-3,-3:
ind: -3,-3
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAATwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAATwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAATwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAATwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAATwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAATwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAATwAAAAADfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfwAAAAAATwAAAAABfwAAAAAAfwAAAAAAfwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAbwAAAAAADAAAAAAADAAAAAACDAAAAAAADAAAAAADDAAAAAADDAAAAAAADAAAAAACDAAAAAACDAAAAAABDAAAAAABbgAAAAAAbgAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAATwAAAAABTwAAAAACTwAAAAADTwAAAAAATwAAAAACTwAAAAAATwAAAAAATwAAAAAATwAAAAACTwAAAAACbgAAAAAATwAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfQAAAAADfQAAAAACfQAAAAAAfQAAAAADfQAAAAABfQAAAAACfQAAAAABfQAAAAAAfQAAAAACfQAAAAABfQAAAAAAfQAAAAABfQAAAAABfwAAAAAAbgAAAAAAbgAAAAAAewAAAAAAewAAAAADewAAAAABTwAAAAABTwAAAAACTwAAAAADTwAAAAAATwAAAAACTwAAAAABewAAAAADewAAAAACewAAAAABfQAAAAADfwAAAAAAfwAAAAAAbwAAAAADewAAAAAAewAAAAAAewAAAAADTwAAAAACTwAAAAAATwAAAAAATwAAAAACTwAAAAADTwAAAAABewAAAAAAewAAAAADewAAAAABfQAAAAADfwAAAAAAfwAAAAAAbwAAAAADewAAAAADewAAAAAAewAAAAACewAAAAAAewAAAAAAewAAAAADewAAAAABewAAAAAAewAAAAACewAAAAABewAAAAADewAAAAABfQAAAAABfwAAAAAAfwAAAAAAfwAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAVAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAVAAAAAAATwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAVAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAVAAAAAAATwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAVAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAVAAAAAAATwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAVAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAVAAAAAAATwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAVAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAVAAAAAAATwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAVAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAVAAAAAAATwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAATwAAAAADfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAUAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfwAAAAAATwAAAAABfwAAAAAAfwAAAAAAfwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAbwAAAAAADAAAAAAADAAAAAACDAAAAAAADAAAAAADDAAAAAADDAAAAAAADAAAAAACDAAAAAACDAAAAAABDAAAAAABbgAAAAAAbgAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAATwAAAAABTwAAAAACTwAAAAADTwAAAAAATwAAAAACTwAAAAAATwAAAAAATwAAAAAATwAAAAACTwAAAAACbgAAAAAATwAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfQAAAAADfQAAAAACfQAAAAAAfQAAAAADfQAAAAABfQAAAAACfQAAAAABfQAAAAAAfQAAAAACfQAAAAABfQAAAAAAfQAAAAABfQAAAAABfwAAAAAAbgAAAAAAbgAAAAAAewAAAAAAewAAAAADewAAAAABTwAAAAABTwAAAAACTwAAAAADTwAAAAAATwAAAAACTwAAAAABewAAAAADewAAAAACewAAAAABfQAAAAADfwAAAAAAfwAAAAAAbwAAAAADewAAAAAAewAAAAAAewAAAAADTwAAAAACTwAAAAAATwAAAAAATwAAAAACTwAAAAADTwAAAAABewAAAAAAewAAAAADewAAAAABfQAAAAADfwAAAAAAfwAAAAAAbwAAAAADewAAAAADewAAAAAAewAAAAACewAAAAAAewAAAAAAewAAAAADewAAAAABewAAAAAAewAAAAACewAAAAABewAAAAADewAAAAABfQAAAAABfwAAAAAAfwAAAAAAfwAAAAAA
version: 6
-2,-3:
ind: -2,-3
- tiles: fwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAATwAAAAADTwAAAAAATwAAAAADTwAAAAAAUAAAAAAATwAAAAABTwAAAAAATwAAAAACUAAAAAAATwAAAAABTwAAAAABUAAAAAAAUAAAAAAAIQAAAAADUAAAAAAAUAAAAAAATwAAAAAAIAAAAAAAIAAAAAABIAAAAAADUAAAAAAAIAAAAAADIAAAAAACIAAAAAAAUAAAAAAAIAAAAAABIAAAAAAAIQAAAAACIQAAAAABIQAAAAACIQAAAAAAIQAAAAADTwAAAAACIAAAAAACIAAAAAADIAAAAAACJQAAAAADIAAAAAACIAAAAAAAIAAAAAAAJQAAAAABIAAAAAAAIAAAAAACIQAAAAADTwAAAAABTwAAAAABTwAAAAABIQAAAAACTwAAAAADIAAAAAAAIAAAAAABJQAAAAADJQAAAAACJQAAAAAAJQAAAAABJQAAAAAAJQAAAAABJQAAAAABIAAAAAAAIQAAAAADTwAAAAAATwAAAAAATwAAAAACIQAAAAADTwAAAAAAIAAAAAADIAAAAAAAJQAAAAADJQAAAAABJQAAAAACJQAAAAADJQAAAAAAJQAAAAABJQAAAAABIAAAAAABIQAAAAAATwAAAAABTwAAAAADTwAAAAABIQAAAAAATwAAAAACIAAAAAABIAAAAAADIAAAAAADJQAAAAADIAAAAAAAIAAAAAAAIAAAAAAAJQAAAAABIAAAAAAAIAAAAAAAIQAAAAADIQAAAAACIQAAAAAAIQAAAAABIQAAAAACTwAAAAACIAAAAAACIAAAAAADIAAAAAAAUAAAAAAAIAAAAAADIAAAAAACIAAAAAAAUAAAAAAAIAAAAAABIAAAAAABUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAIAAAAAAAIAAAAAAAUAAAAAAATwAAAAAATwAAAAADTwAAAAABUAAAAAAAIAAAAAAAIAAAAAABTwAAAAACTwAAAAABTwAAAAADTwAAAAADTwAAAAAATwAAAAADfwAAAAAAfwAAAAAAIAAAAAABUAAAAAAAIAAAAAAAIAAAAAABIAAAAAAAUAAAAAAAIAAAAAAAIAAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbwAAAAADbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAMgAAAAAAUAAAAAAAIAAAAAAAIAAAAAACIAAAAAABUAAAAAAAIAAAAAADIAAAAAACbwAAAAAAbwAAAAACbgAAAAAAbwAAAAAAbwAAAAABbwAAAAABbwAAAAADbgAAAAAAMgAAAAAAUAAAAAAAIAAAAAACTwAAAAABIAAAAAADUAAAAAAAIAAAAAACUAAAAAAAfwAAAAAAfwAAAAAAbwAAAAAAbwAAAAAAbgAAAAAAbgAAAAAAbwAAAAAAfwAAAAAAMgAAAAAAUAAAAAAAIAAAAAADTwAAAAADIAAAAAABUAAAAAAAfwAAAAAATwAAAAAAbgAAAAAAfwAAAAAAbwAAAAABbwAAAAACbwAAAAADbwAAAAADbgAAAAAATwAAAAACMgAAAAAAUAAAAAAAIAAAAAABTwAAAAACIAAAAAACUAAAAAAATwAAAAAAIQAAAAABbgAAAAAAfwAAAAAAfwAAAAAAbwAAAAAAbwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAMgAAAAAAUAAAAAAAIAAAAAADTwAAAAAAIAAAAAABUAAAAAAATwAAAAACIQAAAAABbgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAMgAAAAAAUAAAAAAAIAAAAAACTwAAAAACIAAAAAAAUAAAAAAATwAAAAACIQAAAAABbgAAAAAAfwAAAAAAfwAAAAAAbwAAAAABbgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAMgAAAAAAUAAAAAAAIAAAAAADTwAAAAABIAAAAAADUAAAAAAATwAAAAACIQAAAAAA
+ tiles: fwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAATwAAAAADTwAAAAAATwAAAAADTwAAAAAAVAAAAAAATwAAAAABTwAAAAAATwAAAAACVAAAAAAATwAAAAABTwAAAAABVAAAAAAAVAAAAAAAIQAAAAADVAAAAAAAVAAAAAAATwAAAAAAIAAAAAAAIAAAAAABIAAAAAADVAAAAAAAIAAAAAADIAAAAAACIAAAAAAAVAAAAAAAIAAAAAABIAAAAAAAIQAAAAACIQAAAAABIQAAAAACIQAAAAAAIQAAAAADTwAAAAACIAAAAAACIAAAAAADIAAAAAACJQAAAAADIAAAAAACIAAAAAAAIAAAAAAAJQAAAAABIAAAAAAAIAAAAAACIQAAAAADTwAAAAABTwAAAAABTwAAAAABIQAAAAACTwAAAAADIAAAAAAAIAAAAAABJQAAAAADJQAAAAACJQAAAAAAJQAAAAABJQAAAAAAJQAAAAABJQAAAAABIAAAAAAAIQAAAAADTwAAAAAATwAAAAAATwAAAAACIQAAAAADTwAAAAAAIAAAAAADIAAAAAAAJQAAAAADJQAAAAABJQAAAAACJQAAAAADJQAAAAAAJQAAAAABJQAAAAABIAAAAAABIQAAAAAATwAAAAABTwAAAAADTwAAAAABIQAAAAAATwAAAAACIAAAAAABIAAAAAADIAAAAAADJQAAAAADIAAAAAAAIAAAAAAAIAAAAAAAJQAAAAABIAAAAAAAIAAAAAAAIQAAAAADIQAAAAACIQAAAAAAIQAAAAABIQAAAAACTwAAAAACIAAAAAACIAAAAAADIAAAAAAAVAAAAAAAIAAAAAADIAAAAAACIAAAAAAAVAAAAAAAIAAAAAABIAAAAAABVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAUAAAAAAAVAAAAAAAIAAAAAAAIAAAAAAAVAAAAAAATwAAAAAATwAAAAADTwAAAAABVAAAAAAAIAAAAAAAIAAAAAABTwAAAAACTwAAAAABTwAAAAADTwAAAAADTwAAAAAATwAAAAADfwAAAAAAfwAAAAAAIAAAAAABVAAAAAAAIAAAAAAAIAAAAAABIAAAAAAAVAAAAAAAIAAAAAAAIAAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbwAAAAADbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAMgAAAAAAVAAAAAAAIAAAAAAAIAAAAAACIAAAAAABVAAAAAAAIAAAAAADIAAAAAACbwAAAAAAbwAAAAACbgAAAAAAbwAAAAAAbwAAAAABbwAAAAABbwAAAAADbgAAAAAAMgAAAAAAVAAAAAAAIAAAAAACTwAAAAABIAAAAAADVAAAAAAAIAAAAAACVAAAAAAAfwAAAAAAfwAAAAAAbwAAAAAAbwAAAAAAbgAAAAAAbgAAAAAAbwAAAAAAfwAAAAAAMgAAAAAAVAAAAAAAIAAAAAADTwAAAAADIAAAAAABVAAAAAAAfwAAAAAATwAAAAAAbgAAAAAAfwAAAAAAbwAAAAABbwAAAAACbwAAAAADbwAAAAADbgAAAAAATwAAAAACMgAAAAAAVAAAAAAAIAAAAAABTwAAAAACIAAAAAACVAAAAAAATwAAAAAAIQAAAAABbgAAAAAAfwAAAAAAfwAAAAAAbwAAAAAAbwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAMgAAAAAAVAAAAAAAIAAAAAADTwAAAAAAIAAAAAABVAAAAAAATwAAAAACIQAAAAABbgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAMgAAAAAAVAAAAAAAIAAAAAACTwAAAAACIAAAAAAAVAAAAAAATwAAAAACIQAAAAABbgAAAAAAfwAAAAAAfwAAAAAAbwAAAAABbgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAMgAAAAAAVAAAAAAAIAAAAAADTwAAAAABIAAAAAADVAAAAAAATwAAAAACIQAAAAAA
version: 6
-1,-3:
ind: -1,-3
- tiles: TwAAAAADTwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAMgAAAAAAUAAAAAAAXgAAAAACIAAAAAABUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAAAAAAAAAfgAAAAAAMgAAAAAAUAAAAAAAXgAAAAACIAAAAAACfwAAAAAAUAAAAAAAewAAAAAAewAAAAADewAAAAAAewAAAAABewAAAAABewAAAAADewAAAAADUAAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAUAAAAAAAXgAAAAADIAAAAAADTwAAAAACUAAAAAAAewAAAAABewAAAAADewAAAAAAewAAAAADewAAAAACewAAAAADewAAAAADfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAXgAAAAADIAAAAAABTwAAAAADUAAAAAAAewAAAAABewAAAAACewAAAAACewAAAAADewAAAAABewAAAAAAfwAAAAAAfwAAAAAAXgAAAAABXgAAAAADXgAAAAABXgAAAAACXgAAAAAAIAAAAAADTwAAAAADUAAAAAAAewAAAAADIQAAAAAAIQAAAAABIQAAAAAAIQAAAAAAIQAAAAADIQAAAAACUAAAAAAAXgAAAAABXgAAAAADXgAAAAABXgAAAAAATwAAAAAAIAAAAAABTwAAAAADUAAAAAAAewAAAAACIQAAAAADIQAAAAACIQAAAAACIQAAAAABIQAAAAAAIQAAAAADUAAAAAAAXgAAAAADXgAAAAABXgAAAAADXgAAAAADTwAAAAAAIAAAAAADUAAAAAAAIAAAAAADIAAAAAAAIQAAAAABIQAAAAACIQAAAAACIQAAAAABIQAAAAADIQAAAAACUAAAAAAAXgAAAAABXgAAAAABXgAAAAABXgAAAAAATwAAAAABIAAAAAAATwAAAAABIQAAAAAAIQAAAAACIQAAAAADIQAAAAADIQAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAACTwAAAAAATwAAAAAATwAAAAADTwAAAAABIAAAAAABIAAAAAADIQAAAAACIQAAAAAAIQAAAAADIQAAAAABIQAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAABTwAAAAADVwAAAAAAVwAAAAADVwAAAAADUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAXgAAAAAATwAAAAAAVwAAAAACVwAAAAACVwAAAAADTwAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbwAAAAADfwAAAAAAfwAAAAAAXgAAAAABTwAAAAABVwAAAAABVwAAAAADVwAAAAADIQAAAAACfwAAAAAAIQAAAAABIQAAAAADIQAAAAADIQAAAAADIQAAAAACfwAAAAAAbwAAAAAAfwAAAAAAfwAAAAAAXgAAAAAATwAAAAACTwAAAAADTwAAAAADTwAAAAAAIQAAAAADIQAAAAADIQAAAAACIQAAAAADIQAAAAADIQAAAAADIQAAAAADfwAAAAAAbwAAAAADfwAAAAAAfwAAAAAAXgAAAAACXgAAAAABXgAAAAAAXgAAAAACTwAAAAABIQAAAAAAIQAAAAADIQAAAAACIQAAAAACIQAAAAACIQAAAAABIQAAAAACfwAAAAAAbwAAAAAAfwAAAAAAfwAAAAAAXgAAAAABXgAAAAADXgAAAAACXgAAAAAATwAAAAADIQAAAAACfwAAAAAAIAAAAAABIQAAAAAAIQAAAAABIQAAAAACIQAAAAADfwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAXgAAAAACXgAAAAABXgAAAAAAXgAAAAAATwAAAAAA
+ tiles: TwAAAAADTwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAMgAAAAAAUAAAAAAAXgAAAAACIAAAAAABUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAAAAAAAAAfgAAAAAAMgAAAAAAUAAAAAAAXgAAAAACIAAAAAACfwAAAAAAVAAAAAAAewAAAAAAewAAAAADewAAAAAAewAAAAABewAAAAABewAAAAADewAAAAADUAAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAUAAAAAAAXgAAAAADIAAAAAADTwAAAAACVAAAAAAAewAAAAABewAAAAADewAAAAAAewAAAAADewAAAAACewAAAAADewAAAAADfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAXgAAAAADIAAAAAABTwAAAAADVAAAAAAAewAAAAABewAAAAACewAAAAACewAAAAADewAAAAABewAAAAAAfwAAAAAAfwAAAAAAXgAAAAABXgAAAAADXgAAAAABXgAAAAACXgAAAAAAIAAAAAADTwAAAAADVAAAAAAAewAAAAADIQAAAAAAIQAAAAABIQAAAAAAIQAAAAAAIQAAAAADIQAAAAACUAAAAAAAXgAAAAABXgAAAAADXgAAAAABXgAAAAAATwAAAAAAIAAAAAABTwAAAAADVAAAAAAAewAAAAACIQAAAAADIQAAAAACIQAAAAACIQAAAAABIQAAAAAAIQAAAAADUAAAAAAAXgAAAAADXgAAAAABXgAAAAADXgAAAAADTwAAAAAAIAAAAAADUAAAAAAAIAAAAAADIAAAAAAAIQAAAAABIQAAAAACIQAAAAACIQAAAAABIQAAAAADIQAAAAACUAAAAAAAXgAAAAABXgAAAAABXgAAAAABXgAAAAAATwAAAAABIAAAAAAATwAAAAABIQAAAAAAIQAAAAACIQAAAAADIQAAAAADIQAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAACTwAAAAAATwAAAAAATwAAAAADTwAAAAABIAAAAAABIAAAAAADIQAAAAACIQAAAAAAIQAAAAADIQAAAAABIQAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAABTwAAAAADVwAAAAAAVwAAAAADVwAAAAADVAAAAAAAUAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAXgAAAAAATwAAAAAAVwAAAAACVwAAAAACVwAAAAADTwAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbwAAAAADfwAAAAAAfwAAAAAAXgAAAAABTwAAAAABVwAAAAABVwAAAAADVwAAAAADIQAAAAACfwAAAAAAIQAAAAABIQAAAAADIQAAAAADIQAAAAADIQAAAAACfwAAAAAAbwAAAAAAfwAAAAAAfwAAAAAAXgAAAAAATwAAAAACTwAAAAADTwAAAAADTwAAAAAAIQAAAAADIQAAAAADIQAAAAACIQAAAAADIQAAAAADIQAAAAADIQAAAAADfwAAAAAAbwAAAAADfwAAAAAAfwAAAAAAXgAAAAACXgAAAAABXgAAAAAAXgAAAAACTwAAAAABIQAAAAAAIQAAAAADIQAAAAACIQAAAAACIQAAAAACIQAAAAABIQAAAAACfwAAAAAAbwAAAAAAfwAAAAAAfwAAAAAAXgAAAAABXgAAAAADXgAAAAACXgAAAAAATwAAAAADIQAAAAACfwAAAAAAIAAAAAABIQAAAAAAIQAAAAABIQAAAAACIQAAAAADfwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAXgAAAAACXgAAAAABXgAAAAAAXgAAAAAATwAAAAAA
version: 6
1,-3:
ind: 1,-3
@@ -288,15 +290,15 @@ entities:
version: 6
4,0:
ind: 4,0
- tiles: DAAAAAADMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAADAAAAAABDAAAAAABMgAAAAAAMgAAAAAADAAAAAAAfwAAAAAAbwAAAAACfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbwAAAAABfwAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAUAAAAAAAbgAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAUAAAAAAAbgAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAATwAAAAABTwAAAAACfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAATwAAAAABTwAAAAACTwAAAAABTwAAAAADTwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAATwAAAAADTwAAAAABTwAAAAACTwAAAAACTwAAAAABfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAATwAAAAABTwAAAAABTwAAAAAATwAAAAAATwAAAAADMgAAAAAAfwAAAAAAIgAAAAADIgAAAAADIgAAAAADfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATwAAAAADTwAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAATwAAAAABfwAAAAAATwAAAAABfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAIwAAAAAAIwAAAAABIgAAAAACIgAAAAAAIgAAAAACfQAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIwAAAAABIwAAAAACIgAAAAADIgAAAAADIgAAAAAAIgAAAAABfQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIwAAAAAAIgAAAAABIgAAAAABIgAAAAAAIgAAAAADIgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIwAAAAACIgAAAAABIgAAAAADIgAAAAADIgAAAAABIgAAAAABewAAAAAAMgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIwAAAAADIgAAAAADIgAAAAAAIgAAAAABIgAAAAABIgAAAAAAewAAAAABMgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIwAAAAABIgAAAAABIgAAAAACIgAAAAABIgAAAAACIgAAAAADewAAAAACMgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: DAAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADAAAAAABDAAAAAABMgAAAAAAMgAAAAAADAAAAAAAfwAAAAAAbwAAAAACfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbwAAAAABfwAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAUAAAAAAAbgAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAUAAAAAAAbgAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAATwAAAAABTwAAAAACfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAATwAAAAABTwAAAAACTwAAAAABTwAAAAADTwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAATwAAAAADTwAAAAABTwAAAAACTwAAAAACTwAAAAABfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAATwAAAAABTwAAAAABTwAAAAAATwAAAAAATwAAAAADMgAAAAAAfwAAAAAAIgAAAAADIgAAAAADIgAAAAADfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATwAAAAADTwAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAATwAAAAABfwAAAAAATwAAAAABfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAIwAAAAAAIwAAAAABIgAAAAACIgAAAAAAIgAAAAACfQAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIwAAAAABIwAAAAACIgAAAAADIgAAAAADIgAAAAAAIgAAAAABfQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIwAAAAAAIgAAAAABIgAAAAABIgAAAAAAIgAAAAADIgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIwAAAAACIgAAAAABIgAAAAADIgAAAAADIgAAAAABIgAAAAABewAAAAAAMgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIwAAAAADIgAAAAADIgAAAAAAIgAAAAABIgAAAAABIgAAAAAAewAAAAABMgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIwAAAAABIgAAAAABIgAAAAACIgAAAAABIgAAAAACIgAAAAADewAAAAACMgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
4,-1:
ind: 4,-1
- tiles: DQAAAAAADQAAAAAADQAAAAAAawAAAAACawAAAAADawAAAAADfwAAAAAAIQAAAAABIQAAAAABIQAAAAABIQAAAAAAIQAAAAACIQAAAAAAIQAAAAABTwAAAAADfwAAAAAADQAAAAAAawAAAAABawAAAAAAawAAAAAAMgAAAAAAMgAAAAAATwAAAAAAIwAAAAABIwAAAAABawAAAAAAIwAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAawAAAAAAawAAAAABawAAAAAADAAAAAABDAAAAAAADAAAAAACTwAAAAACIwAAAAACIwAAAAACawAAAAABIwAAAAABfwAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAawAAAAAAMgAAAAAADAAAAAACDAAAAAACfwAAAAAAMgAAAAAATwAAAAAAIwAAAAADIwAAAAACfwAAAAAAawAAAAACfwAAAAAAfwAAAAAAbwAAAAAAfwAAAAAAfwAAAAAAMgAAAAAAMgAAAAAADAAAAAABMgAAAAAAfwAAAAAAXgAAAAAATwAAAAADIwAAAAAAIwAAAAAATwAAAAADXgAAAAAAfwAAAAAAfwAAAAAAbwAAAAABfwAAAAAAfwAAAAAAMgAAAAAADAAAAAACDAAAAAABDAAAAAABfwAAAAAAXgAAAAACTwAAAAABIwAAAAADIwAAAAACTwAAAAACXgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAADAAAAAABDAAAAAACDAAAAAAADAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAbgAAAAAAfwAAAAAADAAAAAADDAAAAAAADAAAAAABDAAAAAACfwAAAAAAawAAAAACawAAAAADawAAAAABawAAAAACawAAAAABawAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAADAAAAAACDAAAAAACDAAAAAACDAAAAAABfwAAAAAAawAAAAADawAAAAADawAAAAAAawAAAAABawAAAAACawAAAAAAawAAAAAAfwAAAAAAfwAAAAAATwAAAAABfwAAAAAADAAAAAADDAAAAAABDAAAAAACDAAAAAABfwAAAAAAfwAAAAAAfwAAAAAATwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAADAAAAAABDAAAAAACDAAAAAABDAAAAAACDAAAAAAADAAAAAAADAAAAAACDAAAAAAAawAAAAADDAAAAAADDAAAAAABDAAAAAACDAAAAAACfwAAAAAAbgAAAAAAfwAAAAAAawAAAAACawAAAAADDAAAAAACDAAAAAABDAAAAAAADAAAAAABDAAAAAAADAAAAAABDAAAAAAAawAAAAAAawAAAAACDAAAAAADDAAAAAABfwAAAAAAbwAAAAAAfwAAAAAADAAAAAAADAAAAAAADAAAAAABDAAAAAABDAAAAAAADAAAAAACDAAAAAACDAAAAAABDAAAAAACDAAAAAACDAAAAAADDAAAAAAAawAAAAACTwAAAAAAfwAAAAAAfwAAAAAADAAAAAACDAAAAAABDAAAAAACDAAAAAAADAAAAAABDAAAAAADDAAAAAABDAAAAAAADAAAAAACDAAAAAABDAAAAAABDAAAAAABDAAAAAACfwAAAAAAbgAAAAAAfwAAAAAADAAAAAACDAAAAAADDAAAAAACDAAAAAADDAAAAAAADAAAAAADDAAAAAAADAAAAAABDAAAAAADDAAAAAADDAAAAAAAMgAAAAAAMgAAAAAAfwAAAAAAbgAAAAAAfwAAAAAADAAAAAACDAAAAAACMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAADAAAAAABDAAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAfwAAAAAAbwAAAAABfwAAAAAA
+ tiles: DQAAAAAADQAAAAAADQAAAAAAawAAAAACawAAAAADawAAAAADfwAAAAAAIQAAAAABIQAAAAABIQAAAAABIQAAAAAAIQAAAAACIQAAAAAAIQAAAAABTwAAAAADfwAAAAAADQAAAAAAawAAAAABawAAAAAAawAAAAAAMgAAAAAAMgAAAAAATwAAAAAAIwAAAAABIwAAAAABawAAAAAAIwAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAawAAAAAAawAAAAABawAAAAAADAAAAAABDAAAAAAADAAAAAACTwAAAAACIwAAAAACIwAAAAACawAAAAABIwAAAAABfwAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAawAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAfwAAAAAAMgAAAAAATwAAAAAAIwAAAAADIwAAAAACfwAAAAAAawAAAAACfwAAAAAAfwAAAAAAbwAAAAAAfwAAAAAAfwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAfwAAAAAAXgAAAAAATwAAAAADIwAAAAAAIwAAAAAATwAAAAADXgAAAAAAfwAAAAAAfwAAAAAAbwAAAAABfwAAAAAAfwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAfwAAAAAAXgAAAAACTwAAAAABIwAAAAADIwAAAAACTwAAAAACXgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAfwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAfwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAfwAAAAAAfwAAAAAATwAAAAABfwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAATwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAADAAAAAABDAAAAAACAQAAAAAAAQAAAAAADAAAAAAADAAAAAAADAAAAAACDAAAAAAAawAAAAADDAAAAAADDAAAAAABDAAAAAACDAAAAAACfwAAAAAAbgAAAAAAfwAAAAAAawAAAAACawAAAAADDAAAAAACDAAAAAABDAAAAAAADAAAAAABDAAAAAAADAAAAAABDAAAAAAAawAAAAAAawAAAAACDAAAAAADDAAAAAABfwAAAAAAbwAAAAAAfwAAAAAADAAAAAAADAAAAAAADAAAAAABDAAAAAABDAAAAAAADAAAAAACDAAAAAACDAAAAAABDAAAAAACDAAAAAACDAAAAAADDAAAAAAAawAAAAACTwAAAAAAfwAAAAAAfwAAAAAADAAAAAACDAAAAAABDAAAAAACDAAAAAAADAAAAAABDAAAAAADDAAAAAABDAAAAAAADAAAAAACDAAAAAABDAAAAAABDAAAAAABDAAAAAACfwAAAAAAbgAAAAAAfwAAAAAADAAAAAACDAAAAAADDAAAAAACDAAAAAADDAAAAAAADAAAAAADDAAAAAAADAAAAAABDAAAAAADDAAAAAADDAAAAAAAMgAAAAAAAQAAAAAAfwAAAAAAbgAAAAAAfwAAAAAADAAAAAACDAAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADAAAAAABDAAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAfwAAAAAAbwAAAAABfwAAAAAA
version: 6
4,-2:
ind: 4,-2
- tiles: fwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAABbwAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbwAAAAADfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAADMgAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAACMgAAAAAAMgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbwAAAAACfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAawAAAAACawAAAAACMgAAAAAAMgAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAbwAAAAADfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAawAAAAADawAAAAADMgAAAAAADAAAAAABfwAAAAAAfwAAAAAAfwAAAAAAbwAAAAABfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAUAAAAAAADQAAAAAAawAAAAABawAAAAACMgAAAAAAMgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbwAAAAABbwAAAAADbwAAAAAAbwAAAAAAbgAAAAAAbgAAAAAAUAAAAAAAfwAAAAAADQAAAAAADQAAAAAAawAAAAAAMgAAAAAADAAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAUAAAAAAAfwAAAAAADQAAAAAADQAAAAAAawAAAAACawAAAAABDAAAAAAAMgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbwAAAAAAUAAAAAAAfwAAAAAADQAAAAAADQAAAAAADQAAAAAAawAAAAABawAAAAADawAAAAABfwAAAAAAawAAAAABawAAAAAAawAAAAACawAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAADQAAAAAADQAAAAAADQAAAAAAawAAAAADawAAAAAAawAAAAAAawAAAAADIQAAAAACIQAAAAACIQAAAAACIQAAAAACIQAAAAACIQAAAAACIQAAAAAATwAAAAABfwAAAAAADQAAAAAADQAAAAAADQAAAAAAawAAAAACawAAAAABawAAAAAAawAAAAADIQAAAAACIQAAAAABIQAAAAAAIQAAAAABIQAAAAABIQAAAAACIQAAAAABUAAAAAAAfwAAAAAA
+ tiles: fwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAABbwAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbwAAAAADfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAADAAAAAADMgAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAbgAAAAAAbgAAAAAAfwAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAfwAAAAAAAAAAAAAADAAAAAACMgAAAAAAMgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbwAAAAACfwAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAfwAAAAAAAAAAAAAAawAAAAACawAAAAACMgAAAAAAMgAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAbwAAAAADfwAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAfwAAAAAAfwAAAAAAawAAAAADawAAAAADMgAAAAAADAAAAAABfwAAAAAAfwAAAAAAfwAAAAAAbwAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAADQAAAAAAawAAAAABawAAAAACMgAAAAAAMgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbwAAAAABbwAAAAADbwAAAAAAbwAAAAAAbgAAAAAAbgAAAAAAUAAAAAAAfwAAAAAADQAAAAAADQAAAAAAawAAAAAAMgAAAAAADAAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAUAAAAAAAfwAAAAAADQAAAAAADQAAAAAAawAAAAACawAAAAABDAAAAAAAMgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbwAAAAAAUAAAAAAAfwAAAAAADQAAAAAADQAAAAAADQAAAAAAawAAAAABawAAAAADawAAAAABfwAAAAAAawAAAAABawAAAAAAawAAAAACawAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAADQAAAAAADQAAAAAADQAAAAAAawAAAAADawAAAAAAawAAAAAAawAAAAADIQAAAAACIQAAAAACIQAAAAACIQAAAAACIQAAAAACIQAAAAACIQAAAAAATwAAAAABfwAAAAAADQAAAAAADQAAAAAADQAAAAAAawAAAAACawAAAAABawAAAAAAawAAAAADIQAAAAACIQAAAAABIQAAAAAAIQAAAAABIQAAAAABIQAAAAACIQAAAAABUAAAAAAAfwAAAAAA
version: 6
-5,2:
ind: -5,2
@@ -328,7 +330,7 @@ entities:
version: 6
-4,-3:
ind: -4,-3
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAbgAAAAAAewAAAAAAewAAAAACewAAAAACTwAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAewAAAAADewAAAAABewAAAAACTwAAAAACfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbwAAAAABbwAAAAAAbgAAAAAAbwAAAAAAbwAAAAADTwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbwAAAAAAfwAAAAAAfQAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAfQAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbgAAAAAATwAAAAADbgAAAAAAbgAAAAAAfQAAAAADfQAAAAACfQAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbgAAAAAATwAAAAABbgAAAAAATwAAAAADfQAAAAABfQAAAAAAfQAAAAAD
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAbgAAAAAAewAAAAAAewAAAAACewAAAAACTwAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAewAAAAADewAAAAABewAAAAACTwAAAAACfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbwAAAAABbwAAAAAAbgAAAAAAbwAAAAAAbwAAAAADTwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAVAAAAAAAVAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbwAAAAAAfwAAAAAAfQAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAfQAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAVAAAAAAAVAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbgAAAAAATwAAAAADbgAAAAAAbgAAAAAAfQAAAAADfQAAAAACfQAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbgAAAAAATwAAAAABbgAAAAAATwAAAAADfQAAAAABfQAAAAAAfQAAAAAD
version: 6
5,2:
ind: 5,2
@@ -344,11 +346,11 @@ entities:
version: 6
0,3:
ind: 0,3
- tiles: XgAAAAAAawAAAAABXgAAAAABUAAAAAAAfwAAAAAATwAAAAAAMAAAAAADMAAAAAAATwAAAAABewAAAAAAewAAAAABewAAAAAAewAAAAACewAAAAABewAAAAADewAAAAACTwAAAAAATwAAAAACTwAAAAABUAAAAAAAfwAAAAAATwAAAAACMAAAAAACMAAAAAABTwAAAAABewAAAAAAewAAAAABewAAAAADewAAAAAAewAAAAADewAAAAAAewAAAAADTwAAAAADDAAAAAADTwAAAAAAXgAAAAAAfwAAAAAATwAAAAAAMAAAAAADMAAAAAADfwAAAAAAewAAAAABewAAAAAAewAAAAABewAAAAACewAAAAAAewAAAAADewAAAAADTwAAAAABDAAAAAABTwAAAAACXgAAAAACTwAAAAAATwAAAAAAMAAAAAADMAAAAAADfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAATwAAAAAADAAAAAACTwAAAAADXgAAAAACfwAAAAAATwAAAAAAMAAAAAACMAAAAAAAMAAAAAABMAAAAAADMAAAAAACMAAAAAAATwAAAAACfwAAAAAAfwAAAAAAUAAAAAAATwAAAAAADAAAAAAATwAAAAABXgAAAAABUAAAAAAATwAAAAACMAAAAAAAMAAAAAADMAAAAAACMAAAAAACMAAAAAABMAAAAAABfwAAAAAAfwAAAAAAUAAAAAAATwAAAAAATwAAAAADDAAAAAADTwAAAAAAXgAAAAACUAAAAAAATwAAAAADMAAAAAAAMAAAAAADMAAAAAADMAAAAAADMAAAAAABMAAAAAACfwAAAAAAUAAAAAAATwAAAAACTwAAAAABTwAAAAACDAAAAAAATwAAAAADXgAAAAAAUAAAAAAATwAAAAAAMAAAAAADMAAAAAADMAAAAAAAMAAAAAABMAAAAAACMAAAAAABUAAAAAAAUAAAAAAATwAAAAADTwAAAAACXgAAAAAAawAAAAACXgAAAAADXgAAAAAAfwAAAAAATwAAAAAATwAAAAABTwAAAAADTwAAAAABTwAAAAABTwAAAAABMAAAAAABUAAAAAAAUAAAAAAATwAAAAADTwAAAAADTwAAAAADTwAAAAAATwAAAAADfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAATwAAAAABTwAAAAAAXgAAAAACawAAAAACXgAAAAAAIQAAAAAAIAAAAAAAIAAAAAACIAAAAAABEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAATwAAAAAAXgAAAAAAawAAAAABXgAAAAAAIQAAAAACTwAAAAABIQAAAAAAIQAAAAABEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAfwAAAAAAfgAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAXgAAAAADawAAAAABXgAAAAACIQAAAAAAIAAAAAADIQAAAAAAIQAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAUAAAAAAAfwAAAAAAXgAAAAAAawAAAAADXgAAAAADIQAAAAABTwAAAAACIQAAAAABIQAAAAADEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXgAAAAABawAAAAACXgAAAAABIQAAAAACIAAAAAABIQAAAAABIQAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAXgAAAAACawAAAAAAXgAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAA
+ tiles: XgAAAAAAawAAAAABXgAAAAABUAAAAAAAfwAAAAAATwAAAAAAMAAAAAADMAAAAAAATwAAAAABewAAAAAAewAAAAABewAAAAAAewAAAAACewAAAAABewAAAAADewAAAAACXgAAAAAAawAAAAAAXgAAAAAAUAAAAAAAfwAAAAAATwAAAAACMAAAAAACMAAAAAABTwAAAAABewAAAAAAewAAAAABewAAAAADewAAAAAAewAAAAADewAAAAAAewAAAAADawAAAAAAawAAAAAAawAAAAAAXgAAAAAAfwAAAAAATwAAAAAAMAAAAAADMAAAAAADfwAAAAAAewAAAAABewAAAAAAewAAAAABewAAAAACewAAAAAAewAAAAADewAAAAADawAAAAAATwAAAAAAawAAAAAAawAAAAAATwAAAAAATwAAAAAAMAAAAAADMAAAAAADfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAawAAAAAATwAAAAAAawAAAAAAawAAAAAAfwAAAAAATwAAAAAAMAAAAAACMAAAAAAAMAAAAAABMAAAAAADMAAAAAACMAAAAAAATwAAAAACfwAAAAAAfwAAAAAAUAAAAAAAawAAAAAAawAAAAAAawAAAAAAXgAAAAABUAAAAAAATwAAAAACMAAAAAAAMAAAAAADMAAAAAACMAAAAAACMAAAAAABMAAAAAABfwAAAAAAfwAAAAAAUAAAAAAATwAAAAAAXgAAAAAAawAAAAAAXgAAAAAAXgAAAAACUAAAAAAATwAAAAADMAAAAAAAMAAAAAADMAAAAAADMAAAAAADMAAAAAABMAAAAAACfwAAAAAAUAAAAAAATwAAAAACTwAAAAABXgAAAAAAawAAAAAAXgAAAAAAXgAAAAAAUAAAAAAATwAAAAAAMAAAAAADMAAAAAADMAAAAAAAMAAAAAABMAAAAAACMAAAAAABUAAAAAAAUAAAAAAATwAAAAADTwAAAAACXgAAAAAAawAAAAAAXgAAAAADXgAAAAAAfwAAAAAATwAAAAAATwAAAAABTwAAAAADTwAAAAABTwAAAAABTwAAAAABMAAAAAABUAAAAAAAUAAAAAAATwAAAAADTwAAAAADTwAAAAADTwAAAAAATwAAAAADfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAATwAAAAABTwAAAAAAXgAAAAACawAAAAACXgAAAAAAIQAAAAAAIAAAAAAAIAAAAAACIAAAAAABEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAATwAAAAAAXgAAAAAAawAAAAABXgAAAAAAIQAAAAACTwAAAAABIQAAAAAAIQAAAAABEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAfwAAAAAAfgAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAXgAAAAADawAAAAABXgAAAAACIQAAAAAAIAAAAAADIQAAAAAAIQAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAUAAAAAAAfwAAAAAAXgAAAAAAawAAAAADXgAAAAADIQAAAAABTwAAAAACIQAAAAABIQAAAAADEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXgAAAAABawAAAAACXgAAAAABIQAAAAACIAAAAAABIQAAAAABIQAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAXgAAAAACawAAAAAAXgAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAA
version: 6
-1,3:
ind: -1,3
- tiles: fwAAAAAAewAAAAAAewAAAAADewAAAAACewAAAAACSwAAAAAASwAAAAADSwAAAAACSwAAAAACSwAAAAAASwAAAAADSwAAAAACSwAAAAABSwAAAAABUAAAAAAAXgAAAAABTwAAAAADewAAAAADewAAAAABewAAAAACewAAAAADSwAAAAADSwAAAAABSwAAAAADSwAAAAAASwAAAAACSwAAAAAASwAAAAADSwAAAAADSwAAAAAAUAAAAAAAXgAAAAABTwAAAAAAewAAAAAAewAAAAACewAAAAACewAAAAABSwAAAAABSwAAAAABSwAAAAAASwAAAAABSwAAAAAASwAAAAACSwAAAAACSwAAAAAASwAAAAAAfwAAAAAAXgAAAAACfwAAAAAAewAAAAAAewAAAAAAewAAAAADewAAAAABewAAAAAAewAAAAADewAAAAADewAAAAABewAAAAABewAAAAADewAAAAADewAAAAACewAAAAACTwAAAAAAXgAAAAADfwAAAAAAewAAAAABewAAAAABewAAAAABewAAAAADewAAAAABewAAAAACewAAAAABewAAAAADewAAAAABewAAAAABewAAAAADewAAAAAAewAAAAABTwAAAAAAXgAAAAADMgAAAAAAewAAAAABewAAAAACewAAAAADewAAAAABSwAAAAADSwAAAAABSwAAAAACSwAAAAADSwAAAAABSwAAAAADSwAAAAADSwAAAAAASwAAAAAAfwAAAAAAXgAAAAACMgAAAAAAewAAAAABewAAAAAAewAAAAAAewAAAAACSwAAAAABSwAAAAABSwAAAAADSwAAAAACSwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAACUAAAAAAAXgAAAAACMgAAAAAAewAAAAADewAAAAADewAAAAADewAAAAAASwAAAAACSwAAAAAASwAAAAACSwAAAAABSwAAAAABSwAAAAACSwAAAAACSwAAAAACSwAAAAADUAAAAAAAXgAAAAADMgAAAAAASwAAAAADSwAAAAACSwAAAAAASwAAAAACSwAAAAADSwAAAAAASwAAAAAASwAAAAADSwAAAAABSwAAAAADSwAAAAADSwAAAAADSwAAAAACUAAAAAAAXgAAAAABMgAAAAAASwAAAAABSwAAAAADSwAAAAABSwAAAAAASwAAAAACfwAAAAAAewAAAAAAewAAAAACewAAAAAAewAAAAACewAAAAABewAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAMgAAAAAASwAAAAADSwAAAAADSwAAAAABSwAAAAACSwAAAAAATwAAAAADewAAAAADewAAAAADewAAAAAAewAAAAABewAAAAABewAAAAAATwAAAAAADAAAAAABXgAAAAAAMgAAAAAASwAAAAABSwAAAAABSwAAAAAASwAAAAADSwAAAAAAfwAAAAAAewAAAAACewAAAAABewAAAAACewAAAAACewAAAAABewAAAAADTwAAAAACXgAAAAADXgAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAewAAAAAAewAAAAADewAAAAACewAAAAAAewAAAAAAewAAAAABTwAAAAAADAAAAAACXgAAAAABeAAAAAAATwAAAAACeAAAAAADeAAAAAADeAAAAAADeAAAAAACfwAAAAAAewAAAAAAewAAAAACewAAAAACewAAAAACewAAAAACewAAAAABTwAAAAACDAAAAAACXgAAAAAAeAAAAAACUAAAAAAAeAAAAAABTwAAAAAATwAAAAABeAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAeAAAAAADeAAAAAACeAAAAAABTwAAAAACTwAAAAACeAAAAAAATwAAAAACUAAAAAAAUAAAAAAAUAAAAAAATwAAAAABeAAAAAADeAAAAAAAeAAAAAABeAAAAAABUAAAAAAA
+ tiles: fwAAAAAAewAAAAAAewAAAAADewAAAAACewAAAAACSwAAAAAASwAAAAADSwAAAAACSwAAAAACSwAAAAAASwAAAAADSwAAAAACSwAAAAABSwAAAAABUAAAAAAAXgAAAAABTwAAAAADewAAAAADewAAAAABewAAAAACewAAAAADSwAAAAADSwAAAAABSwAAAAADSwAAAAAASwAAAAACSwAAAAAASwAAAAADSwAAAAADSwAAAAAAUAAAAAAAXgAAAAABTwAAAAAAewAAAAAAewAAAAACewAAAAACewAAAAABSwAAAAABSwAAAAABSwAAAAAASwAAAAABSwAAAAAASwAAAAACSwAAAAACSwAAAAAASwAAAAAAfwAAAAAAXgAAAAACfwAAAAAAewAAAAAAewAAAAAAewAAAAADewAAAAABewAAAAAAewAAAAADewAAAAADewAAAAABewAAAAABewAAAAADewAAAAADewAAAAACewAAAAACTwAAAAAAawAAAAAAfwAAAAAAewAAAAABewAAAAABewAAAAABewAAAAADewAAAAABewAAAAACewAAAAABewAAAAADewAAAAABewAAAAABewAAAAADewAAAAAAewAAAAABTwAAAAAAawAAAAAAMgAAAAAAewAAAAABewAAAAACewAAAAADewAAAAABSwAAAAADSwAAAAABSwAAAAACSwAAAAADSwAAAAABSwAAAAADSwAAAAADSwAAAAAASwAAAAAAfwAAAAAAXgAAAAACMgAAAAAAewAAAAABewAAAAAAewAAAAAAewAAAAACSwAAAAABSwAAAAABSwAAAAADSwAAAAACSwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAACUAAAAAAAXgAAAAACMgAAAAAAewAAAAADewAAAAADewAAAAADewAAAAAASwAAAAACSwAAAAAASwAAAAACSwAAAAABSwAAAAABSwAAAAACSwAAAAACSwAAAAACSwAAAAADUAAAAAAAXgAAAAADMgAAAAAASwAAAAADSwAAAAACSwAAAAAASwAAAAACSwAAAAADSwAAAAAASwAAAAAASwAAAAADSwAAAAABSwAAAAADSwAAAAADSwAAAAADSwAAAAACUAAAAAAAXgAAAAABMgAAAAAASwAAAAABSwAAAAADSwAAAAABSwAAAAAASwAAAAACfwAAAAAAewAAAAAAewAAAAACewAAAAAAewAAAAACewAAAAABewAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAMgAAAAAASwAAAAADSwAAAAADSwAAAAABSwAAAAACSwAAAAAATwAAAAADewAAAAADewAAAAADewAAAAAAewAAAAABewAAAAABewAAAAAATwAAAAAADAAAAAABXgAAAAAAMgAAAAAASwAAAAABSwAAAAABSwAAAAAASwAAAAADSwAAAAAAfwAAAAAAewAAAAACewAAAAABewAAAAACewAAAAACewAAAAABewAAAAADTwAAAAACXgAAAAADXgAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAewAAAAAAewAAAAADewAAAAACewAAAAAAewAAAAAAewAAAAABTwAAAAAADAAAAAACXgAAAAABeAAAAAAATwAAAAACeAAAAAADeAAAAAADeAAAAAADeAAAAAACfwAAAAAAewAAAAAAewAAAAACewAAAAACewAAAAACewAAAAACewAAAAABTwAAAAACDAAAAAACXgAAAAAAeAAAAAACUAAAAAAAeAAAAAABTwAAAAAATwAAAAABeAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAeAAAAAADeAAAAAACeAAAAAABTwAAAAACTwAAAAACeAAAAAAATwAAAAACVAAAAAAAVAAAAAAAVAAAAAAATwAAAAABeAAAAAADeAAAAAAAeAAAAAABeAAAAAABUAAAAAAA
version: 6
2,3:
ind: 2,3
@@ -364,7 +366,7 @@ entities:
version: 6
5,-1:
ind: 5,-1
- tiles: fwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAATwAAAAAAUAAAAAAAUAAAAAAATwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAATwAAAAABUAAAAAAAUAAAAAAATwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAbgAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbwAAAAABTwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbgAAAAAATwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbgAAAAAATwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAAAbgAAAAAATwAAAAACTwAAAAACTwAAAAAAbgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: fwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAATwAAAAAAUAAAAAAAUAAAAAAATwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAATwAAAAABUAAAAAAAUAAAAAAATwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAbgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAbgAAAAAAbgAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAbgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbwAAAAABbgAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAbgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAbgAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAbgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbgAAAAAATwAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAbgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAAAbgAAAAAATwAAAAACTwAAAAACTwAAAAAAbgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
5,0:
ind: 5,0
@@ -384,7 +386,7 @@ entities:
version: 6
-3,-4:
ind: -3,-4
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAVAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAVAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAVAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAVAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAVAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAVAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAVAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAVAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAVAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAVAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAVAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAVAAAAAAAfgAAAAAA
version: 6
-6,-1:
ind: -6,-1
@@ -488,7 +490,7 @@ entities:
version: 6
-1,4:
ind: -1,4
- tiles: eAAAAAAAeAAAAAABeAAAAAABeAAAAAACeAAAAAAAeAAAAAACTwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAATwAAAAADeAAAAAAAeAAAAAACeAAAAAADeAAAAAABTwAAAAACUAAAAAAATwAAAAADUAAAAAAAfwAAAAAATwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAATwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAcgAAAAABcgAAAAADcgAAAAAAfwAAAAAAewAAAAAAewAAAAACewAAAAADewAAAAABewAAAAABfwAAAAAAUAAAAAAATwAAAAADTwAAAAACTwAAAAABUAAAAAAAfwAAAAAAcgAAAAADcgAAAAADcgAAAAABfwAAAAAAewAAAAADewAAAAADewAAAAAAewAAAAACewAAAAADfwAAAAAAUAAAAAAATwAAAAABTwAAAAACTwAAAAABUAAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAewAAAAADfwAAAAAAewAAAAAAfwAAAAAAewAAAAABfwAAAAAAUAAAAAAATwAAAAAATwAAAAAATwAAAAADUAAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAMgAAAAAAUAAAAAAAewAAAAADewAAAAADewAAAAABewAAAAADewAAAAABfwAAAAAAfwAAAAAATwAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAMgAAAAAAUAAAAAAAewAAAAACewAAAAABewAAAAABewAAAAADewAAAAACXgAAAAAAXgAAAAACXgAAAAADXgAAAAABXgAAAAADXgAAAAACXgAAAAADfgAAAAAAfgAAAAAAMgAAAAAAUAAAAAAAewAAAAABewAAAAAAewAAAAADewAAAAADewAAAAACXgAAAAACXgAAAAABXgAAAAABXgAAAAADXgAAAAACXgAAAAACXgAAAAABAAAAAAAAAAAAAAAAMgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAMgAAAAAAfwAAAAAATwAAAAAATwAAAAABTwAAAAABTwAAAAADTwAAAAADTwAAAAADTwAAAAAATwAAAAADTwAAAAAATwAAAAABTwAAAAADTwAAAAAAAAAAAAAAAAAAAAAAMgAAAAAAUAAAAAAATwAAAAACMAAAAAAAMAAAAAAAMAAAAAADMAAAAAAAMAAAAAABMAAAAAABMAAAAAACMAAAAAADMAAAAAACMAAAAAADMAAAAAAAfgAAAAAAfgAAAAAAMgAAAAAAUAAAAAAATwAAAAAAMAAAAAAAMAAAAAADMAAAAAADMAAAAAADMAAAAAADMAAAAAABMAAAAAACMAAAAAABMAAAAAADMAAAAAAAMAAAAAABAAAAAAAAAAAAAAAAMgAAAAAAUAAAAAAATwAAAAADMAAAAAACMAAAAAAAMAAAAAABMAAAAAAAMAAAAAACMAAAAAABMAAAAAACMAAAAAAAMAAAAAAAMAAAAAABMAAAAAABAAAAAAAAAAAAAAAAMgAAAAAAUAAAAAAATwAAAAACMAAAAAAAMAAAAAAAMAAAAAACMAAAAAACMAAAAAABMAAAAAACMAAAAAADMAAAAAABMAAAAAABMAAAAAABMAAAAAABfgAAAAAAfgAAAAAAMgAAAAAAfwAAAAAATwAAAAACTwAAAAACTwAAAAABTwAAAAADTwAAAAABTwAAAAAATwAAAAAATwAAAAABTwAAAAADTwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAA
+ tiles: eAAAAAAAeAAAAAABeAAAAAABeAAAAAACeAAAAAAAeAAAAAACTwAAAAAAVAAAAAAAVAAAAAAAVAAAAAAATwAAAAADeAAAAAAAeAAAAAACeAAAAAADeAAAAAABTwAAAAACUAAAAAAATwAAAAADUAAAAAAAfwAAAAAATwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAATwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAcgAAAAABcgAAAAADcgAAAAAAfwAAAAAAewAAAAAAewAAAAACewAAAAADewAAAAABewAAAAABfwAAAAAAVAAAAAAATwAAAAADTwAAAAACTwAAAAABVAAAAAAAfwAAAAAAcgAAAAADcgAAAAADcgAAAAABfwAAAAAAewAAAAADewAAAAADewAAAAAAewAAAAACewAAAAADfwAAAAAAVAAAAAAATwAAAAABTwAAAAACTwAAAAABVAAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAewAAAAADfwAAAAAAewAAAAAAfwAAAAAAewAAAAABfwAAAAAAVAAAAAAATwAAAAAATwAAAAAATwAAAAADVAAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAMgAAAAAAUAAAAAAAewAAAAADewAAAAADewAAAAABewAAAAADewAAAAABfwAAAAAAfwAAAAAATwAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAMgAAAAAAUAAAAAAAewAAAAACewAAAAABewAAAAABewAAAAADewAAAAACXgAAAAAAXgAAAAACXgAAAAADXgAAAAABXgAAAAADXgAAAAACXgAAAAADfgAAAAAAfgAAAAAAMgAAAAAAUAAAAAAAewAAAAABewAAAAAAewAAAAADewAAAAADewAAAAACXgAAAAACXgAAAAABXgAAAAABXgAAAAADXgAAAAACXgAAAAACXgAAAAABAAAAAAAAAAAAAAAAMgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAMgAAAAAAfwAAAAAATwAAAAAATwAAAAABTwAAAAABTwAAAAADTwAAAAADTwAAAAADTwAAAAAATwAAAAADTwAAAAAATwAAAAABTwAAAAADTwAAAAAAAAAAAAAAAAAAAAAAMgAAAAAAUAAAAAAATwAAAAACMAAAAAAAMAAAAAAAMAAAAAADMAAAAAAAMAAAAAABMAAAAAABMAAAAAACMAAAAAADMAAAAAACMAAAAAADMAAAAAAAfgAAAAAAfgAAAAAAMgAAAAAAUAAAAAAATwAAAAAAMAAAAAAAMAAAAAADMAAAAAADMAAAAAADMAAAAAADMAAAAAABMAAAAAACMAAAAAABMAAAAAADMAAAAAAAMAAAAAABAAAAAAAAAAAAAAAAMgAAAAAAUAAAAAAATwAAAAADMAAAAAACMAAAAAAAMAAAAAABMAAAAAAAMAAAAAACMAAAAAABMAAAAAACMAAAAAAAMAAAAAAAMAAAAAABMAAAAAABAAAAAAAAAAAAAAAAMgAAAAAAUAAAAAAATwAAAAACMAAAAAAAMAAAAAAAMAAAAAACMAAAAAACMAAAAAABMAAAAAACMAAAAAADMAAAAAABMAAAAAABMAAAAAABMAAAAAABfgAAAAAAfgAAAAAAMgAAAAAAfwAAAAAATwAAAAACTwAAAAACTwAAAAABTwAAAAADTwAAAAABTwAAAAAATwAAAAAATwAAAAABTwAAAAADTwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAA
version: 6
-2,4:
ind: -2,4
@@ -572,7 +574,7 @@ entities:
version: 6
-2,-4:
ind: -2,-4
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATwAAAAADUAAAAAAATwAAAAABTwAAAAABTwAAAAABUAAAAAAATwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAIAAAAAAAAAAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATwAAAAADVAAAAAAATwAAAAABTwAAAAABTwAAAAABVAAAAAAATwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAIAAAAAAAAAAAAAAA
version: 6
-6,4:
ind: -6,4
@@ -1562,6 +1564,7 @@ entities:
4069: 5,64
5003: -12,48
5422: 11,-24
+ 7295: 76,-25
- node:
color: '#FFFFFFFF'
id: BrickTileSteelCornerSe
@@ -1590,21 +1593,33 @@ entities:
4072: 13,64
5004: -15,48
5423: 5,-24
+ 7296: 74,-25
- node:
color: '#FFFFFFFF'
id: BrickTileSteelCornerSw
decals:
6605: -48,-31
+ - node:
+ color: '#B02E26FF'
+ id: BrickTileSteelEndE
+ decals:
+ 7291: 77,-24
- node:
color: '#FFFFFFFF'
id: BrickTileSteelEndN
decals:
6614: -41,-29
+ - node:
+ color: '#B02E26FF'
+ id: BrickTileSteelEndS
+ decals:
+ 7297: 75,-26
- node:
color: '#B02E26FF'
id: BrickTileSteelEndW
decals:
699: -2,59
+ 7290: 73,-24
- node:
color: '#91D4FFFF'
id: BrickTileSteelInnerNe
@@ -1642,6 +1657,8 @@ entities:
id: BrickTileSteelInnerSe
decals:
5032: -12,51
+ 7298: 75,-25
+ 7299: 76,-24
- node:
color: '#91D4FFFF'
id: BrickTileSteelInnerSw
@@ -1652,6 +1669,8 @@ entities:
id: BrickTileSteelInnerSw
decals:
701: -1,59
+ 7300: 75,-25
+ 7301: 74,-24
- node:
color: '#91D4FFFF'
id: BrickTileSteelLineE
@@ -1786,6 +1805,9 @@ entities:
5430: 7,-23
5431: 8,-23
5432: 9,-23
+ 7292: 74,-24
+ 7293: 75,-24
+ 7294: 76,-24
- node:
color: '#FFFFFFFF'
id: BrickTileSteelLineN
@@ -5122,6 +5144,7 @@ entities:
5044: -9.563732,46.01986
5391: 19.424809,-28.877602
6309: -23.96835,-29.359528
+ 7278: 58.17689,-8.340221
- node:
color: '#FFFFFFFF'
id: BushCTwo
@@ -5233,21 +5256,15 @@ entities:
color: '#FFFFFFFF'
id: Bushd1
decals:
- 2657: 57.006096,-12.356954
2658: 57.099846,-6.4928484
2659: 57.873283,-6.9615984
2660: 63.099846,-6.8826447
- 2661: 65.24438,-12.144363
- 2662: 67.27172,-12.788895
- 2663: 67.48266,-13.257645
2664: 69.80284,-5.2769313
2665: 71.44347,-3.4839625
2666: 66.205185,0.043381214
2667: 65.642685,-1.0347438
2668: 62.150494,-2.1245875
2669: 55.271587,-0.22615004
- 2670: 53.619244,-8.4761505
- 2671: 54.380962,-9.671463
2672: 52.400494,-15.636277
2673: 48.594856,-24.49732
2674: 51.36048,-26.65357
@@ -5340,8 +5357,6 @@ entities:
2729: -106.47833,9.241646
2847: 9.814974,35.44362
3006: 46.1468,-0.7615123
- 3038: 1.3932085,51.47611
- 3039: 0.7525835,54.61237
3952: 27.27747,-16.844082
4587: 100.44033,48.342884
4588: 103.28799,47.850697
@@ -5353,6 +5368,7 @@ entities:
4609: 99.32705,16.050865
4610: 97.780174,19.871178
4611: 94.24111,17.820396
+ 7281: 58.97354,-7.987118
- node:
color: '#FFFFFFFF'
id: Bushf1
@@ -5364,8 +5380,6 @@ entities:
2645: 56.876846,-4.3675547
2646: 63.521378,-4.3675547
2647: 72.77919,-4.672242
- 2648: 65.326065,-13.215211
- 2649: 63.521378,-11.827433
2650: 66.76747,-21.307901
2651: 62.021378,-25.593042
2652: 67.21278,-24.245386
@@ -5453,7 +5467,6 @@ entities:
id: Bushh1
decals:
139: 69,-20
- 140: 67,-11
141: 71,-6
142: 58,0
191: -24,18
@@ -5495,7 +5508,6 @@ entities:
color: '#FFFFFFFF'
id: Bushh3
decals:
- 132: 55,-8
133: 61,-3
134: 64,-4
- node:
@@ -5513,10 +5525,6 @@ entities:
2607: 72.343155,-6.4363375
2608: 55.585342,-2.241025
2609: 58.611607,-12.025141
- 2610: 55.892857,-12.611078
- 2611: 56.537388,-12.611078
- 2612: 62.560825,-10.2556095
- 2613: 62.865513,-10.8181095
2614: 67.16629,-20.122797
2615: 66.77957,-20.532953
2616: 65.5491,-24.353764
@@ -5542,6 +5550,8 @@ entities:
4750: 102.54547,43.05626
4751: 103.65875,48.86876
4752: 99.59235,49.114853
+ 7279: 57.85658,-7.707409
+ 7280: 59.317516,-9.019909
- node:
color: '#FFFFFFFF'
id: Bushi3
@@ -5564,8 +5574,6 @@ entities:
2298: 5.0869336,-47.735737
2624: 50.4679,-18.136845
2625: 55.29607,-13.119765
- 2626: 63.37029,-11.514297
- 2627: 62.725758,-11.186172
2628: 60.288258,-9.13539
2629: 60.135914,-8.631484
2630: 60.581226,-8.408828
@@ -5591,7 +5599,6 @@ entities:
2632: 54.428883,-1.0748138
2633: 54.428883,-4.063095
2634: 56.70232,-3.6998138
- 2635: 62.831226,-9.699814
2636: 58.3781,-12.125595
2637: 53.363544,-14.035416
2638: 49.414326,-20.189419
@@ -5605,7 +5612,6 @@ entities:
color: '#FFFFFFFF'
id: Bushk1
decals:
- 131: 55,-9
245: 31,-37
2347: -27.53604,17.799139
2872: -13.987451,77.15054
@@ -5620,7 +5626,6 @@ entities:
2935: 68.50344,0.16087747
2936: 46.415348,5.7034583
2937: 58.00519,8.1612835
- 3037: 0.7213335,50.679234
5172: -8.004765,45.112217
6349: -10.984017,-51.702847
- node:
@@ -5692,7 +5697,6 @@ entities:
id: Bushm3
decals:
2576: 59.046852,-6.428506
- 2577: 62.62107,-9.01835
- node:
color: '#FFFFFFFF'
id: Bushm4
@@ -5710,7 +5714,6 @@ entities:
color: '#FFFFFFFF'
id: Bushn1
decals:
- 74: 64,-9
75: 49,-18
76: 44,-20
77: 41,-31
@@ -5870,10 +5873,6 @@ entities:
1728: 45,36
1729: 46,36
1730: 47,36
- 3946: 69,-9
- 3947: 70,-9
- 3948: 72,-9
- 3949: 73,-9
4339: 68,82
4340: 70,82
4341: 72,82
@@ -5909,6 +5908,16 @@ entities:
id: DeliveryGreyscale
decals:
7275: -57,52
+ - node:
+ color: '#B02E26FF'
+ id: DeliveryGreyscale
+ decals:
+ 7284: 73,-25
+ 7285: 73,-26
+ 7286: 74,-26
+ 7287: 76,-26
+ 7288: 77,-26
+ 7289: 77,-25
- node:
cleanable: True
color: '#FFFFFFFF'
@@ -6465,7 +6474,6 @@ entities:
3536: 1,70
3537: 2,60
3538: -1,56
- 3539: 1,52
3540: 1,48
3541: 4,42
3542: 1,40
@@ -6621,7 +6629,6 @@ entities:
3692: 68,-17
3693: 67,-16
3694: 59,-12
- 3695: 64,-10
3696: 61,-6
3697: 57,-6
3698: 55,-3
@@ -6921,7 +6928,6 @@ entities:
3817: 39,9
3818: 37,-10
3819: 62,-13
- 3820: 70,-9
3821: 38,-17
3822: -5,-18
3823: -9,-11
@@ -7011,7 +7017,6 @@ entities:
3907: 46,-31
3908: 47,-24
3909: 43,-28
- 3910: 63,-12
3911: 49,13
3912: 43,21
3913: 35,26
@@ -7058,7 +7063,6 @@ entities:
2340: -21.958588,17.400702
2341: -21.079681,17.635077
2859: 48.486603,54.127567
- 3036: 0.8775835,53.575855
4005: 35.936924,-11.278788
5164: -10.380536,44.619083
5165: -5.7789736,44.29877
@@ -7114,13 +7118,10 @@ entities:
2399: 46.456665,4.238405
2418: 70.482315,-2.6857786
2419: 59.65419,-2.6857786
- 2420: 65.58388,-12.002185
- 2421: 64.92763,-11.181872
2422: 67.9745,-20.817688
2423: 63.654434,-25.675419
2424: 50.523678,-26.812138
2460: 55.647358,-7.219159
- 2461: 55.72939,-7.8636904
2462: 53.19814,-4.2543154
2463: 54.944233,-0.5511904
2464: 61.120014,-0.07072163
@@ -7129,7 +7130,6 @@ entities:
2467: 66.453354,-25.372675
2468: 51.521744,-28.314081
2469: 49.85768,-16.8148
- 2470: 54.240494,-12.090313
2490: 35.16757,-36.640537
2491: 37.335537,-36.956944
2542: -24.117771,-35.0781
@@ -7168,7 +7168,6 @@ entities:
124: 55,-13
125: 61,-2
126: 70,-2
- 127: 67,-12
128: 69,-13
129: 65,-26
130: 49,-19
@@ -7291,8 +7290,6 @@ entities:
3023: 47.31596,-8.0932665
3024: 46.339397,-1.3552244
3025: 47.425335,0.06665063
- 3034: 0.854146,50.630543
- 3035: 1.276021,52.427418
3975: 38.577,21.199255
3989: 0.14627075,35.12407
3990: -1.1427917,36.16313
@@ -7330,6 +7327,8 @@ entities:
5743: 11.387196,-41.660503
5827: -42.067287,21.170424
6869: -39.428432,-37.777687
+ 7282: 57.94229,-9.737118
+ 7283: 65.52823,-6.703678
- node:
color: '#FFFFFFFF'
id: Flowerspv2
@@ -7397,13 +7396,9 @@ entities:
2401: 60.587387,-2.518785
2402: 59.35692,-2.1672225
2403: 70.58348,-1.7336287
- 2404: 66.320595,-11.504879
2405: 67.31259,-21.545208
2406: 64.39785,-25.981995
2407: 49.421288,-26.192932
- 2471: 54.767838,-12.277813
- 2472: 56.502213,-7.859844
- 2473: 54.63893,-7.250469
2474: 57.45143,-2.8077326
2475: 69.32832,-2.2803888
2476: 75.42234,-3.3819513
@@ -7527,7 +7522,6 @@ entities:
2409: 49.843163,-27.083557
2410: 49.58535,-18.62262
2411: 49.468163,-19.325745
- 2412: 65.46426,-11.159059
2413: 56.69863,-7.2684336
2414: 58.339256,-2.1115599
2415: 64.80801,-3.9982786
@@ -7574,7 +7568,6 @@ entities:
2949: -19.375551,-13.602369
2950: -14.906801,-14.117994
2951: -29.344301,-13.664869
- 3032: 0.838521,49.943043
3944: 47.8365,20.992
3945: 45.039623,21.343563
3974: 35.873875,20.83988
@@ -7590,7 +7583,6 @@ entities:
66: 40,-20
67: 50,-18
68: 67,-21
- 69: 66,-11
70: 56,-7
71: 63,0
72: 67,-2
@@ -7613,7 +7605,6 @@ entities:
2887: 15.375248,74.84195
2888: -13.626251,74.72476
2889: -13.860626,73.86929
- 3033: 1.182271,50.482105
4006: 36.197342,-11.987121
4007: 35.874424,-10.112121
4095: 36.47652,-7.3850927
@@ -7871,7 +7862,6 @@ entities:
106: 75,-4
107: 75,-7
108: 60,-9
- 109: 53,-8
- node:
color: '#FFFFFFFF'
id: Grassd1
@@ -8015,9 +8005,6 @@ entities:
2425: 50.054928,-25.94495
2426: 48.871334,-26.7887
2427: 49.527584,-17.636356
- 2428: 54.777584,-12.405542
- 2429: 55.246334,-9.582343
- 2430: 55.808834,-9.804999
2431: 53.441647,-3.8166533
2432: 55.445553,-0.44769478
2433: 54.566647,-0.78553295
@@ -8064,11 +8051,6 @@ entities:
3012: 46.011868,-1.8117809
3013: 46.371243,-1.4367809
3014: 47.402493,-0.38990593
- 3027: 0.8775835,53.771168
- 3028: 1.182271,54.169605
- 3029: 1.2369585,52.169605
- 3030: 0.979146,51.607105
- 3031: 1.1744585,49.825855
4014: -13.76521,70.095
4015: -13.874585,68.9075
4166: -30.036238,-17.26733
@@ -8115,9 +8097,6 @@ entities:
id: Grasse2
decals:
115: 53,-14
- 116: 56,-11
- 117: 64,-11
- 118: 66,-8
119: 69,-2
120: 74,-1
121: 76,-3
@@ -8169,11 +8148,7 @@ entities:
2440: 58.428307,-1.5706892
2441: 64.08846,-3.082408
2442: 64.74471,-3.3519392
- 2443: 66.877525,-8.30897
- 2444: 66.63143,-8.894908
2445: 68.658775,-6.6214705
- 2446: 64.920494,-11.695689
- 2447: 64.42831,-11.238658
2448: 58.252525,-10.582408
2449: 57.64315,-11.086314
2450: 68.2198,-20.300789
@@ -8183,7 +8158,6 @@ entities:
2454: 62.131313,-27.390293
2455: 61.170376,-27.777012
2456: 58.553608,-27.741856
- 2457: 64.34267,-12.237476
2458: 58.319233,-11.185775
2459: 55.54189,-6.6506186
2755: -84.03042,30.881887
@@ -8731,7 +8705,6 @@ entities:
id: Rock04
decals:
86: 75,-5
- 87: 54,-8
88: 49,-20
89: 41,-20
90: -1,-10
@@ -10917,7 +10890,8 @@ entities:
2,-8:
0: 65535
2,-7:
- 0: 65535
+ 0: 61183
+ 1: 4352
2,-6:
0: 65535
2,-5:
@@ -11529,9 +11503,11 @@ entities:
-5,8:
0: 65535
-5,9:
- 0: 65535
+ 0: 24575
+ 1: 40960
-5,10:
- 0: 65535
+ 0: 65365
+ 1: 170
-5,11:
0: 65535
-12,8:
@@ -11691,7 +11667,8 @@ entities:
18,-4:
0: 65535
18,-3:
- 0: 65535
+ 0: 49151
+ 2: 16384
18,-2:
0: 65535
18,-1:
@@ -11924,19 +11901,19 @@ entities:
0: 65535
-16,-3:
0: 4607
- 1: 60928
+ 3: 60928
-16,-2:
0: 65297
- 1: 238
+ 3: 238
-16,-1:
0: 65535
-15,-4:
0: 65535
-15,-3:
0: 35071
- 1: 30464
+ 3: 30464
-15,-2:
- 1: 119
+ 3: 119
0: 65416
-15,-1:
0: 65535
@@ -12412,43 +12389,43 @@ entities:
0: 65535
-15,13:
0: 16383
- 2: 49152
+ 4: 49152
-15,14:
0: 13107
- 2: 52428
+ 4: 52428
-14,12:
0: 65535
-14,13:
0: 53247
- 2: 12288
+ 4: 12288
-14,14:
- 2: 13107
+ 4: 13107
0: 52428
-13,12:
0: 48059
- 3: 17476
+ 5: 17476
-13,13:
0: 63487
-13,14:
0: 48063
-12,12:
- 4: 4369
- 2: 17476
+ 6: 4369
+ 4: 17476
0: 43690
-12,13:
0: 65439
-12,14:
0: 65535
-11,12:
- 2: 4369
- 5: 17476
+ 4: 4369
+ 7: 17476
0: 43690
-11,13:
0: 65487
-11,14:
0: 65535
-10,12:
- 2: 4369
+ 4: 4369
0: 61166
-10,13:
0: 65535
@@ -12980,9 +12957,9 @@ entities:
0: 65535
-15,15:
0: 65523
- 2: 12
+ 4: 12
-14,15:
- 2: 3
+ 4: 3
0: 65532
-13,15:
0: 65535
@@ -14360,6 +14337,36 @@ entities:
- 0
- 0
- 0
+ - volume: 2500
+ temperature: 293.14975
+ moles:
+ - 20.078888
+ - 75.53487
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - volume: 2500
+ temperature: 293.14975
+ moles:
+ - 21.824879
+ - 82.10312
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
- volume: 2500
temperature: 235
moles:
@@ -14468,6 +14475,30 @@ entities:
parent: 9229
- type: InstantAction
container: 9229
+ - uid: 34664
+ components:
+ - type: Transform
+ parent: 33237
+ - type: InstantAction
+ container: 33237
+ - uid: 39684
+ components:
+ - type: Transform
+ parent: 39682
+ - type: InstantAction
+ container: 39682
+ - uid: 39687
+ components:
+ - type: Transform
+ parent: 39685
+ - type: InstantAction
+ container: 39685
+ - uid: 39692
+ components:
+ - type: Transform
+ parent: 39691
+ - type: InstantAction
+ container: 39691
- proto: ActionToggleJetpack
entities:
- uid: 20873
@@ -14476,8 +14507,32 @@ entities:
parent: 9229
- type: InstantAction
container: 9229
+ - uid: 34663
+ components:
+ - type: Transform
+ parent: 33237
+ - type: InstantAction
+ container: 33237
+ - uid: 39683
+ components:
+ - type: Transform
+ parent: 39682
+ - type: InstantAction
+ container: 39682
+ - uid: 39686
+ components:
+ - type: Transform
+ parent: 39685
+ - type: InstantAction
+ container: 39685
- proto: ActionToggleLight
entities:
+ - uid: 413
+ components:
+ - type: Transform
+ parent: 14212
+ - type: InstantAction
+ container: 14212
- uid: 2568
components:
- type: Transform
@@ -15433,6 +15488,12 @@ entities:
- 28487
- 28383
- 28382
+ - 11850
+ - 11843
+ - 39719
+ - 39721
+ - 39720
+ - 39722
- type: AtmosDevice
joinedGrid: 2
- uid: 22291
@@ -15534,18 +15595,6 @@ entities:
- 19278
- type: AtmosDevice
joinedGrid: 2
- - uid: 25103
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -93.5,-3.5
- parent: 2
- - type: DeviceList
- devices:
- - 28615
- - 28359
- - type: AtmosDevice
- joinedGrid: 2
- uid: 25133
components:
- type: Transform
@@ -16552,6 +16601,8 @@ entities:
- 37455
- 39357
- 34925
+ - 39646
+ - 1689
- type: AtmosDevice
joinedGrid: 2
- uid: 25300
@@ -17132,11 +17183,11 @@ entities:
- 37891
- type: AtmosDevice
joinedGrid: 2
- - uid: 29631
+ - uid: 30392
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -3.5,43.5
+ rot: 3.141592653589793 rad
+ pos: -1.5,37.5
parent: 2
- type: DeviceList
devices:
@@ -17265,7 +17316,6 @@ entities:
parent: 2
- type: DeviceList
devices:
- - 23340
- 15617
- 15619
- 15814
@@ -17454,6 +17504,35 @@ entities:
- 34925
- type: AtmosDevice
joinedGrid: 2
+ - uid: 39629
+ components:
+ - type: Transform
+ pos: 86.5,-3.5
+ parent: 2
+ - type: DeviceList
+ devices:
+ - 39643
+ - 39646
+ - 39642
+ - 39358
+ - 1689
+ - type: AtmosDevice
+ joinedGrid: 2
+ - uid: 39733
+ components:
+ - type: Transform
+ pos: -94.5,-3.5
+ parent: 2
+ - type: DeviceList
+ devices:
+ - 22460
+ - 26753
+ - 28357
+ - 28359
+ - 4866
+ - 5623
+ - type: AtmosDevice
+ joinedGrid: 2
- proto: AirAlarmAssembly
entities:
- uid: 4514
@@ -17515,11 +17594,11 @@ entities:
- type: Transform
pos: -53.5,45.5
parent: 2
- - uid: 34664
+ - uid: 34683
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 71.5,-6.5
+ rot: -1.5707963267948966 rad
+ pos: 81.5,-4.5
parent: 2
- proto: AirlockBarGlassLocked
entities:
@@ -17722,6 +17801,18 @@ entities:
rot: 1.5707963267948966 rad
pos: -56.5,12.5
parent: 2
+ - uid: 1901
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 43.5,22.5
+ parent: 2
+ - uid: 1903
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 50.5,26.5
+ parent: 2
- uid: 8906
components:
- type: Transform
@@ -17797,24 +17888,12 @@ entities:
rot: 1.5707963267948966 rad
pos: 15.5,38.5
parent: 2
- - uid: 413
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 50.5,26.5
- parent: 2
- uid: 423
components:
- type: Transform
rot: 1.5707963267948966 rad
pos: 15.5,39.5
parent: 2
- - uid: 754
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 43.5,22.5
- parent: 2
- uid: 1332
components:
- type: Transform
@@ -19424,6 +19503,12 @@ entities:
- type: Transform
pos: -84.5,5.5
parent: 2
+ - uid: 11833
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 71.5,-6.5
+ parent: 2
- uid: 12426
components:
- type: Transform
@@ -21008,18 +21093,60 @@ entities:
rot: 3.141592653589793 rad
pos: -14.5,23.5
parent: 2
+ - type: DeviceLinkSink
+ invokeCounter: 4
+ links:
+ - 2088
+ - 2250
+ - 2340
+ - type: DeviceLinkSource
+ linkedPorts:
+ 2088:
+ - DoorStatus: Close
+ 2250:
+ - DoorStatus: Close
+ 2340:
+ - DoorStatus: Close
- uid: 22636
components:
- type: Transform
rot: 3.141592653589793 rad
pos: -15.5,23.5
parent: 2
+ - type: DeviceLinkSink
+ invokeCounter: 3
+ links:
+ - 2088
+ - 2250
+ - 2340
+ - type: DeviceLinkSource
+ linkedPorts:
+ 2088:
+ - DoorStatus: Close
+ 2250:
+ - DoorStatus: Close
+ 2340:
+ - DoorStatus: Close
- uid: 22637
components:
- type: Transform
rot: 3.141592653589793 rad
pos: -16.5,23.5
parent: 2
+ - type: DeviceLinkSink
+ invokeCounter: 3
+ links:
+ - 2088
+ - 2250
+ - 2340
+ - type: DeviceLinkSource
+ linkedPorts:
+ 2340:
+ - DoorStatus: Close
+ 2250:
+ - DoorStatus: Close
+ 2088:
+ - DoorStatus: Close
- proto: AirlockSecurityGlassLocked
entities:
- uid: 589
@@ -21120,6 +21247,14 @@ entities:
rot: 3.141592653589793 rad
pos: -3.5,39.5
parent: 2
+ - type: DeviceLinkSink
+ invokeCounter: 1
+ links:
+ - 20517
+ - type: DeviceLinkSource
+ linkedPorts:
+ 20517:
+ - DoorStatus: Close
- uid: 20501
components:
- type: Transform
@@ -21132,6 +21267,14 @@ entities:
rot: 3.141592653589793 rad
pos: -0.5,39.5
parent: 2
+ - type: DeviceLinkSink
+ invokeCounter: 1
+ links:
+ - 16062
+ - type: DeviceLinkSource
+ linkedPorts:
+ 16062:
+ - DoorStatus: Close
- uid: 22648
components:
- type: Transform
@@ -21203,11 +21346,6 @@ entities:
- DoorStatus: Close
1239:
- DoorStatus: Close
- - uid: 39304
- components:
- - type: Transform
- pos: -14.5,43.5
- parent: 2
- uid: 39311
components:
- type: Transform
@@ -21230,16 +21368,58 @@ entities:
- type: Transform
pos: -14.5,27.5
parent: 2
+ - type: DeviceLinkSink
+ invokeCounter: 3
+ links:
+ - 22635
+ - 22636
+ - 22637
+ - type: DeviceLinkSource
+ linkedPorts:
+ 22635:
+ - DoorStatus: Close
+ 22636:
+ - DoorStatus: Close
+ 22637:
+ - DoorStatus: Close
- uid: 2250
components:
- type: Transform
pos: -15.5,27.5
parent: 2
+ - type: DeviceLinkSink
+ invokeCounter: 3
+ links:
+ - 22635
+ - 22636
+ - 22637
+ - type: DeviceLinkSource
+ linkedPorts:
+ 22635:
+ - DoorStatus: Close
+ 22636:
+ - DoorStatus: Close
+ 22637:
+ - DoorStatus: Close
- uid: 2340
components:
- type: Transform
pos: -16.5,27.5
parent: 2
+ - type: DeviceLinkSink
+ invokeCounter: 3
+ links:
+ - 22635
+ - 22636
+ - 22637
+ - type: DeviceLinkSource
+ linkedPorts:
+ 22637:
+ - DoorStatus: Close
+ 22636:
+ - DoorStatus: Close
+ 22635:
+ - DoorStatus: Close
- uid: 2708
components:
- type: Transform
@@ -21290,6 +21470,16 @@ entities:
linkedPorts:
31104:
- DoorStatus: DoorBolt
+ - uid: 39741
+ components:
+ - type: Transform
+ pos: 74.5,-22.5
+ parent: 2
+ - uid: 39742
+ components:
+ - type: Transform
+ pos: 76.5,-22.5
+ parent: 2
- proto: AirlockSecurityLawyerLocked
entities:
- uid: 2583
@@ -21698,7 +21888,7 @@ entities:
parent: 2
- type: DeviceNetwork
deviceLists:
- - 29631
+ - 30392
- uid: 6264
components:
- type: Transform
@@ -22133,6 +22323,7 @@ entities:
- type: DeviceNetwork
deviceLists:
- 30714
+ - 39733
- uid: 28358
components:
- type: Transform
@@ -22146,6 +22337,9 @@ entities:
- type: Transform
pos: -95.5,-7.5
parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 39733
- uid: 28360
components:
- type: Transform
@@ -22752,8 +22946,8 @@ entities:
- type: DeviceNetwork
deviceLists:
- 2594
- - 29631
- 20237
+ - 30392
- uid: 28590
components:
- type: Transform
@@ -23255,6 +23449,26 @@ entities:
deviceLists:
- 25299
- 39364
+ - 39629
+ - uid: 39646
+ components:
+ - type: Transform
+ pos: 84.5,-5.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 39629
+ - 25299
+ - type: AtmosDevice
+ joinedGrid: 2
+ - uid: 39764
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 75.5,-23.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
- proto: AltarBananium
entities:
- uid: 23502
@@ -32615,6 +32829,16 @@ entities:
parent: 2
- proto: BenchParkLeft
entities:
+ - uid: 3908
+ components:
+ - type: Transform
+ pos: 70.5,-2.5
+ parent: 2
+ - uid: 4004
+ components:
+ - type: Transform
+ pos: 62.5,-2.5
+ parent: 2
- uid: 5128
components:
- type: Transform
@@ -32629,6 +32853,16 @@ entities:
parent: 2
- proto: BenchParkMiddle
entities:
+ - uid: 3436
+ components:
+ - type: Transform
+ pos: 68.5,-2.5
+ parent: 2
+ - uid: 5026
+ components:
+ - type: Transform
+ pos: 69.5,-2.5
+ parent: 2
- uid: 5120
components:
- type: Transform
@@ -32647,6 +32881,16 @@ entities:
rot: 3.141592653589793 rad
pos: 61.5,-0.5
parent: 2
+ - uid: 6621
+ components:
+ - type: Transform
+ pos: 60.5,-2.5
+ parent: 2
+ - uid: 6624
+ components:
+ - type: Transform
+ pos: 61.5,-2.5
+ parent: 2
- proto: BenchParkRight
entities:
- uid: 4961
@@ -32661,6 +32905,16 @@ entities:
rot: 3.141592653589793 rad
pos: 62.5,-0.5
parent: 2
+ - uid: 5141
+ components:
+ - type: Transform
+ pos: 67.5,-2.5
+ parent: 2
+ - uid: 6685
+ components:
+ - type: Transform
+ pos: 59.5,-2.5
+ parent: 2
- proto: BenchPewLeft
entities:
- uid: 2034
@@ -33325,12 +33579,6 @@ entities:
rot: 3.141592653589793 rad
pos: -21.5,-16.5
parent: 2
- - uid: 36115
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -14.5,41.5
- parent: 2
- uid: 38861
components:
- type: Transform
@@ -33554,12 +33802,6 @@ entities:
- type: Transform
pos: -6.5,21.5
parent: 2
- - uid: 8396
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -14.5,40.5
- parent: 2
- uid: 9107
components:
- type: Transform
@@ -33815,6 +34057,18 @@ entities:
parent: 2
- proto: BenchSteelLeft
entities:
+ - uid: 2397
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -14.5,40.5
+ parent: 2
+ - uid: 2786
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -14.5,36.5
+ parent: 2
- uid: 3143
components:
- type: Transform
@@ -33835,11 +34089,11 @@ entities:
rot: 3.141592653589793 rad
pos: -19.5,24.5
parent: 2
- - uid: 23432
+ - uid: 34676
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -14.5,34.5
+ rot: 1.5707963267948966 rad
+ pos: -14.5,32.5
parent: 2
- uid: 35721
components:
@@ -33862,17 +34116,29 @@ entities:
- type: Transform
pos: -32.5,30.5
parent: 2
- - uid: 33237
+ - uid: 16608
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -14.5,33.5
+ rot: 1.5707963267948966 rad
+ pos: -14.5,41.5
+ parent: 2
+ - uid: 35714
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -14.5,37.5
parent: 2
- uid: 35719
components:
- type: Transform
pos: 83.5,49.5
parent: 2
+ - uid: 35975
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -14.5,33.5
+ parent: 2
- uid: 36893
components:
- type: Transform
@@ -33881,6 +34147,24 @@ entities:
parent: 2
- proto: BenchSteelRight
entities:
+ - uid: 2405
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -14.5,42.5
+ parent: 2
+ - uid: 2586
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -14.5,34.5
+ parent: 2
+ - uid: 2709
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -14.5,38.5
+ parent: 2
- uid: 12069
components:
- type: Transform
@@ -33895,12 +34179,6 @@ entities:
- type: Transform
pos: -31.5,30.5
parent: 2
- - uid: 19807
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -14.5,32.5
- parent: 2
- uid: 29773
components:
- type: Transform
@@ -33944,22 +34222,12 @@ entities:
rot: 1.5707963267948966 rad
pos: 49.5,-22.5
parent: 2
- - uid: 5178
- components:
- - type: Transform
- pos: 59.5,-3.5
- parent: 2
- uid: 5181
components:
- type: Transform
rot: 3.141592653589793 rad
pos: 57.5,-27.5
parent: 2
- - uid: 5187
- components:
- - type: Transform
- pos: 67.5,-3.5
- parent: 2
- proto: BenchSteelWhiteMiddle
entities:
- uid: 2415
@@ -34016,26 +34284,6 @@ entities:
rot: 3.141592653589793 rad
pos: 56.5,-27.5
parent: 2
- - uid: 5182
- components:
- - type: Transform
- pos: 60.5,-3.5
- parent: 2
- - uid: 5183
- components:
- - type: Transform
- pos: 61.5,-3.5
- parent: 2
- - uid: 5184
- components:
- - type: Transform
- pos: 68.5,-3.5
- parent: 2
- - uid: 5185
- components:
- - type: Transform
- pos: 69.5,-3.5
- parent: 2
- proto: BenchSteelWhiteRight
entities:
- uid: 3132
@@ -34068,42 +34316,12 @@ entities:
rot: 1.5707963267948966 rad
pos: 49.5,-21.5
parent: 2
- - uid: 5168
- components:
- - type: Transform
- pos: 62.5,-3.5
- parent: 2
- uid: 5180
components:
- type: Transform
rot: 3.141592653589793 rad
pos: 55.5,-27.5
parent: 2
- - uid: 5186
- components:
- - type: Transform
- pos: 70.5,-3.5
- parent: 2
-- proto: Bible
- entities:
- - uid: 4163
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 60.702465,13.941333
- parent: 2
- - uid: 14116
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 52.358986,14.078091
- parent: 2
- - uid: 39150
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 66.65649,18.879253
- parent: 2
- proto: BiomassReclaimer
entities:
- uid: 1057
@@ -34544,7 +34762,7 @@ entities:
parent: 2
- type: DeviceLinkSink
links:
- - 34411
+ - 39677
- uid: 12106
components:
- type: Transform
@@ -34553,7 +34771,7 @@ entities:
parent: 2
- type: DeviceLinkSink
links:
- - 34411
+ - 39677
- uid: 12422
components:
- type: Transform
@@ -34940,7 +35158,7 @@ entities:
parent: 2
- type: DeviceLinkSink
links:
- - 34411
+ - 39677
- uid: 16476
components:
- type: Transform
@@ -35319,7 +35537,7 @@ entities:
parent: 2
- type: DeviceLinkSink
links:
- - 25985
+ - 1042
- uid: 34103
components:
- type: Transform
@@ -35328,7 +35546,7 @@ entities:
parent: 2
- type: DeviceLinkSink
links:
- - 25985
+ - 1042
- uid: 34877
components:
- type: Transform
@@ -35337,7 +35555,7 @@ entities:
parent: 2
- type: DeviceLinkSink
links:
- - 25985
+ - 1042
- uid: 36055
components:
- type: Transform
@@ -36072,15 +36290,15 @@ entities:
parent: 2
- proto: Bonfire
entities:
- - uid: 5136
+ - uid: 7032
components:
- type: Transform
- pos: 65.5,-9.5
+ pos: -28.5,-35.5
parent: 2
- - uid: 7032
+ - uid: 39605
components:
- type: Transform
- pos: -28.5,-35.5
+ pos: 65.5,-1.5
parent: 2
- proto: BookAtmosAirAlarms
entities:
@@ -36897,6 +37115,12 @@ entities:
- type: Transform
pos: -49.19958,15.430737
parent: 2
+ - uid: 39699
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 57.49175,-9.3232
+ parent: 2
- proto: BriefcaseBrown
entities:
- uid: 9331
@@ -37415,6 +37639,18 @@ entities:
rot: 1.5707963267948966 rad
pos: -3.5,42.5
parent: 2
+ - uid: 39676
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -3.5,43.5
+ parent: 2
+ - uid: 39678
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 5.5,-25.5
+ parent: 2
- proto: ButtonFrameExit
entities:
- uid: 968
@@ -39042,11 +39278,51 @@ entities:
- type: Transform
pos: -101.5,17.5
parent: 2
+ - uid: 5135
+ components:
+ - type: Transform
+ pos: 47.5,-13.5
+ parent: 2
+ - uid: 5136
+ components:
+ - type: Transform
+ pos: 47.5,-12.5
+ parent: 2
+ - uid: 5137
+ components:
+ - type: Transform
+ pos: 47.5,-14.5
+ parent: 2
- uid: 5155
components:
- type: Transform
pos: -37.5,-31.5
parent: 2
+ - uid: 5160
+ components:
+ - type: Transform
+ pos: -35.5,-44.5
+ parent: 2
+ - uid: 5163
+ components:
+ - type: Transform
+ pos: -35.5,-46.5
+ parent: 2
+ - uid: 5164
+ components:
+ - type: Transform
+ pos: -35.5,-48.5
+ parent: 2
+ - uid: 5165
+ components:
+ - type: Transform
+ pos: -35.5,-52.5
+ parent: 2
+ - uid: 5168
+ components:
+ - type: Transform
+ pos: -35.5,-47.5
+ parent: 2
- uid: 5169
components:
- type: Transform
@@ -39057,11 +39333,41 @@ entities:
- type: Transform
pos: -51.5,-28.5
parent: 2
+ - uid: 5173
+ components:
+ - type: Transform
+ pos: -35.5,-50.5
+ parent: 2
- uid: 5176
components:
- type: Transform
pos: -53.5,-28.5
parent: 2
+ - uid: 5182
+ components:
+ - type: Transform
+ pos: -35.5,-51.5
+ parent: 2
+ - uid: 5183
+ components:
+ - type: Transform
+ pos: -35.5,-53.5
+ parent: 2
+ - uid: 5184
+ components:
+ - type: Transform
+ pos: -34.5,-43.5
+ parent: 2
+ - uid: 5185
+ components:
+ - type: Transform
+ pos: -35.5,-45.5
+ parent: 2
+ - uid: 5186
+ components:
+ - type: Transform
+ pos: -35.5,-49.5
+ parent: 2
- uid: 5207
components:
- type: Transform
@@ -39482,6 +39788,16 @@ entities:
- type: Transform
pos: -90.5,23.5
parent: 2
+ - uid: 6458
+ components:
+ - type: Transform
+ pos: -35.5,-43.5
+ parent: 2
+ - uid: 6459
+ components:
+ - type: Transform
+ pos: -35.5,-42.5
+ parent: 2
- uid: 6558
components:
- type: Transform
@@ -39502,11 +39818,6 @@ entities:
- type: Transform
pos: -31.5,59.5
parent: 2
- - uid: 6621
- components:
- - type: Transform
- pos: -34.5,-45.5
- parent: 2
- uid: 6625
components:
- type: Transform
@@ -39547,21 +39858,11 @@ entities:
- type: Transform
pos: -25.5,-43.5
parent: 2
- - uid: 6686
- components:
- - type: Transform
- pos: -34.5,-43.5
- parent: 2
- uid: 6690
components:
- type: Transform
pos: -33.5,-43.5
parent: 2
- - uid: 6693
- components:
- - type: Transform
- pos: -34.5,-48.5
- parent: 2
- uid: 6699
components:
- type: Transform
@@ -39637,11 +39938,6 @@ entities:
- type: Transform
pos: -49.5,41.5
parent: 2
- - uid: 6923
- components:
- - type: Transform
- pos: -34.5,-52.5
- parent: 2
- uid: 6924
components:
- type: Transform
@@ -41077,11 +41373,6 @@ entities:
- type: Transform
pos: -48.5,1.5
parent: 2
- - uid: 11012
- components:
- - type: Transform
- pos: -34.5,-44.5
- parent: 2
- uid: 11023
components:
- type: Transform
@@ -41557,6 +41848,11 @@ entities:
- type: Transform
pos: -73.5,21.5
parent: 2
+ - uid: 11226
+ components:
+ - type: Transform
+ pos: 72.5,-7.5
+ parent: 2
- uid: 11284
components:
- type: Transform
@@ -42292,40 +42588,15 @@ entities:
- type: Transform
pos: 44.5,-25.5
parent: 2
- - uid: 11829
- components:
- - type: Transform
- pos: -34.5,-49.5
- parent: 2
- - uid: 11830
- components:
- - type: Transform
- pos: -34.5,-53.5
- parent: 2
- uid: 11831
components:
- type: Transform
- pos: -34.5,-50.5
- parent: 2
- - uid: 11838
- components:
- - type: Transform
- pos: -34.5,-51.5
- parent: 2
- - uid: 11841
- components:
- - type: Transform
- pos: -34.5,-54.5
- parent: 2
- - uid: 11843
- components:
- - type: Transform
- pos: -34.5,-46.5
+ pos: 70.5,-7.5
parent: 2
- - uid: 11844
+ - uid: 11835
components:
- type: Transform
- pos: -34.5,-47.5
+ pos: 73.5,-7.5
parent: 2
- uid: 11880
components:
@@ -48107,6 +48378,11 @@ entities:
- type: Transform
pos: 21.5,-35.5
parent: 2
+ - uid: 17496
+ components:
+ - type: Transform
+ pos: -35.5,-55.5
+ parent: 2
- uid: 17532
components:
- type: Transform
@@ -48257,26 +48533,6 @@ entities:
- type: Transform
pos: 49.5,-11.5
parent: 2
- - uid: 17952
- components:
- - type: Transform
- pos: 70.5,-8.5
- parent: 2
- - uid: 17953
- components:
- - type: Transform
- pos: 71.5,-8.5
- parent: 2
- - uid: 17954
- components:
- - type: Transform
- pos: 72.5,-8.5
- parent: 2
- - uid: 17955
- components:
- - type: Transform
- pos: 73.5,-8.5
- parent: 2
- uid: 17958
components:
- type: Transform
@@ -55302,11 +55558,6 @@ entities:
- type: Transform
pos: 58.5,41.5
parent: 2
- - uid: 28405
- components:
- - type: Transform
- pos: -34.5,-42.5
- parent: 2
- uid: 28467
components:
- type: Transform
@@ -55382,11 +55633,6 @@ entities:
- type: Transform
pos: 17.5,60.5
parent: 2
- - uid: 28788
- components:
- - type: Transform
- pos: -34.5,-41.5
- parent: 2
- uid: 28813
components:
- type: Transform
@@ -64262,6 +64508,26 @@ entities:
- type: Transform
pos: -38.5,39.5
parent: 2
+ - uid: 39776
+ components:
+ - type: Transform
+ pos: -29.5,-45.5
+ parent: 2
+ - uid: 39777
+ components:
+ - type: Transform
+ pos: -29.5,-41.5
+ parent: 2
+ - uid: 39796
+ components:
+ - type: Transform
+ pos: -35.5,-54.5
+ parent: 2
+ - uid: 39833
+ components:
+ - type: Transform
+ pos: -35.5,-41.5
+ parent: 2
- proto: CableApcStack
entities:
- uid: 37500
@@ -92402,6 +92668,11 @@ entities:
rot: -1.5707963267948966 rad
pos: -30.5,-4.5
parent: 2
+ - uid: 18572
+ components:
+ - type: Transform
+ pos: -36.5,-49.5
+ parent: 2
- uid: 18642
components:
- type: Transform
@@ -92552,6 +92823,11 @@ entities:
rot: 1.5707963267948966 rad
pos: -34.5,6.5
parent: 2
+ - uid: 19227
+ components:
+ - type: Transform
+ pos: -36.5,-43.5
+ parent: 2
- uid: 19318
components:
- type: Transform
@@ -92570,6 +92846,16 @@ entities:
rot: 1.5707963267948966 rad
pos: 13.5,-30.5
parent: 2
+ - uid: 19395
+ components:
+ - type: Transform
+ pos: -36.5,-45.5
+ parent: 2
+ - uid: 19454
+ components:
+ - type: Transform
+ pos: -36.5,-51.5
+ parent: 2
- uid: 19481
components:
- type: Transform
@@ -92593,12 +92879,22 @@ entities:
rot: -1.5707963267948966 rad
pos: -26.5,-4.5
parent: 2
+ - uid: 19649
+ components:
+ - type: Transform
+ pos: -36.5,-46.5
+ parent: 2
- uid: 19689
components:
- type: Transform
rot: -1.5707963267948966 rad
pos: -25.5,-4.5
parent: 2
+ - uid: 19807
+ components:
+ - type: Transform
+ pos: -36.5,-47.5
+ parent: 2
- uid: 19814
components:
- type: Transform
@@ -92615,6 +92911,11 @@ entities:
rot: 3.141592653589793 rad
pos: -41.5,69.5
parent: 2
+ - uid: 19936
+ components:
+ - type: Transform
+ pos: -36.5,-52.5
+ parent: 2
- uid: 20006
components:
- type: Transform
@@ -92684,6 +92985,11 @@ entities:
rot: -1.5707963267948966 rad
pos: 14.5,16.5
parent: 2
+ - uid: 20310
+ components:
+ - type: Transform
+ pos: -36.5,-42.5
+ parent: 2
- uid: 20476
components:
- type: Transform
@@ -92995,6 +93301,11 @@ entities:
rot: 1.5707963267948966 rad
pos: 38.5,-12.5
parent: 2
+ - uid: 20946
+ components:
+ - type: Transform
+ pos: -36.5,-50.5
+ parent: 2
- uid: 20958
components:
- type: Transform
@@ -93231,6 +93542,11 @@ entities:
rot: 1.5707963267948966 rad
pos: 80.5,-18.5
parent: 2
+ - uid: 23340
+ components:
+ - type: Transform
+ pos: -36.5,-48.5
+ parent: 2
- uid: 23361
components:
- type: Transform
@@ -93242,6 +93558,11 @@ entities:
rot: -1.5707963267948966 rad
pos: -29.5,-4.5
parent: 2
+ - uid: 23432
+ components:
+ - type: Transform
+ pos: -36.5,-44.5
+ parent: 2
- uid: 23589
components:
- type: Transform
@@ -93471,6 +93792,12 @@ entities:
- type: Transform
pos: 52.5,33.5
parent: 2
+ - uid: 28625
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -35.5,-53.5
+ parent: 2
- uid: 28689
components:
- type: Transform
@@ -94572,6 +94899,126 @@ entities:
rot: -1.5707963267948966 rad
pos: 10.5,-42.5
parent: 2
+ - uid: 39782
+ components:
+ - type: Transform
+ pos: -36.5,-53.5
+ parent: 2
+ - uid: 39785
+ components:
+ - type: Transform
+ pos: -35.5,-42.5
+ parent: 2
+ - uid: 39786
+ components:
+ - type: Transform
+ pos: -35.5,-43.5
+ parent: 2
+ - uid: 39787
+ components:
+ - type: Transform
+ pos: -35.5,-44.5
+ parent: 2
+ - uid: 39788
+ components:
+ - type: Transform
+ pos: -35.5,-45.5
+ parent: 2
+ - uid: 39789
+ components:
+ - type: Transform
+ pos: -35.5,-46.5
+ parent: 2
+ - uid: 39790
+ components:
+ - type: Transform
+ pos: -35.5,-47.5
+ parent: 2
+ - uid: 39791
+ components:
+ - type: Transform
+ pos: -35.5,-48.5
+ parent: 2
+ - uid: 39792
+ components:
+ - type: Transform
+ pos: -35.5,-49.5
+ parent: 2
+ - uid: 39793
+ components:
+ - type: Transform
+ pos: -35.5,-50.5
+ parent: 2
+ - uid: 39794
+ components:
+ - type: Transform
+ pos: -35.5,-51.5
+ parent: 2
+ - uid: 39795
+ components:
+ - type: Transform
+ pos: -35.5,-52.5
+ parent: 2
+ - uid: 39799
+ components:
+ - type: Transform
+ pos: -34.5,-42.5
+ parent: 2
+ - uid: 39800
+ components:
+ - type: Transform
+ pos: -34.5,-43.5
+ parent: 2
+ - uid: 39801
+ components:
+ - type: Transform
+ pos: -34.5,-44.5
+ parent: 2
+ - uid: 39802
+ components:
+ - type: Transform
+ pos: -34.5,-45.5
+ parent: 2
+ - uid: 39803
+ components:
+ - type: Transform
+ pos: -34.5,-46.5
+ parent: 2
+ - uid: 39804
+ components:
+ - type: Transform
+ pos: -34.5,-47.5
+ parent: 2
+ - uid: 39805
+ components:
+ - type: Transform
+ pos: -34.5,-48.5
+ parent: 2
+ - uid: 39806
+ components:
+ - type: Transform
+ pos: -34.5,-49.5
+ parent: 2
+ - uid: 39807
+ components:
+ - type: Transform
+ pos: -34.5,-50.5
+ parent: 2
+ - uid: 39808
+ components:
+ - type: Transform
+ pos: -34.5,-51.5
+ parent: 2
+ - uid: 39809
+ components:
+ - type: Transform
+ pos: -34.5,-52.5
+ parent: 2
+ - uid: 39810
+ components:
+ - type: Transform
+ pos: -34.5,-53.5
+ parent: 2
- proto: Chair
entities:
- uid: 1105
@@ -95364,6 +95811,12 @@ entities:
rot: 1.5707963267948966 rad
pos: -19.5,56.5
parent: 2
+ - uid: 2919
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 63.950745,-1.9872427
+ parent: 2
- uid: 3416
components:
- type: Transform
@@ -95419,22 +95872,6 @@ entities:
- type: Transform
pos: 30.5,-25.5
parent: 2
- - uid: 5135
- components:
- - type: Transform
- pos: 65.5,-7.5
- parent: 2
- - uid: 5137
- components:
- - type: Transform
- pos: 64.5,-7.5
- parent: 2
- - uid: 5141
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 67.5,-9.5
- parent: 2
- uid: 6156
components:
- type: Transform
@@ -95508,6 +95945,11 @@ entities:
rot: 3.141592653589793 rad
pos: -36.5,58.5
parent: 2
+ - uid: 9678
+ components:
+ - type: Transform
+ pos: 65.62918,0.26289845
+ parent: 2
- uid: 11301
components:
- type: Transform
@@ -95669,6 +96111,11 @@ entities:
rot: -1.5707963267948966 rad
pos: 59.5,84.5
parent: 2
+ - uid: 39661
+ components:
+ - type: Transform
+ pos: 64.74637,-0.23710155
+ parent: 2
- proto: ChairFoldingSpawnFolded
entities:
- uid: 3450
@@ -95686,6 +96133,42 @@ entities:
- type: Transform
pos: 38.555435,-22.16116
parent: 2
+ - uid: 5187
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 74.41101,-8.377256
+ parent: 2
+ - uid: 5662
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 74.31726,-8.041319
+ parent: 2
+ - uid: 5667
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 73.457886,-8.385069
+ parent: 2
+ - uid: 11836
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 73.54382,-8.197569
+ parent: 2
+ - uid: 15873
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 74.44226,-8.181944
+ parent: 2
+ - uid: 15874
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 73.426636,-8.010069
+ parent: 2
- uid: 36461
components:
- type: Transform
@@ -95698,6 +96181,42 @@ entities:
rot: -1.5707963267948966 rad
pos: 56.83184,79.6644
parent: 2
+ - uid: 39647
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 72.448784,-8.102519
+ parent: 2
+ - uid: 39648
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 75.522804,-8.180644
+ parent: 2
+ - uid: 39649
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 75.50718,-8.047832
+ parent: 2
+ - uid: 39650
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 75.54624,-8.336894
+ parent: 2
+ - uid: 39652
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 72.511284,-8.344707
+ parent: 2
+ - uid: 39653
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 72.53472,-8.454082
+ parent: 2
- proto: ChairGreyscale
entities:
- uid: 2126
@@ -97344,16 +97863,6 @@ entities:
- type: Transform
pos: -8.5,37.5
parent: 2
- - uid: 4781
- components:
- - type: Transform
- pos: 6.5,-24.5
- parent: 2
- - uid: 11966
- components:
- - type: Transform
- pos: 6.5,-25.5
- parent: 2
- uid: 15793
components:
- type: Transform
@@ -97374,6 +97883,11 @@ entities:
- type: Transform
pos: 5.5,66.5
parent: 2
+ - uid: 39679
+ components:
+ - type: Transform
+ pos: 7.5,-25.5
+ parent: 2
- proto: ClosetChefFilled
entities:
- uid: 12433
@@ -97493,11 +98007,6 @@ entities:
- type: Transform
pos: -65.5,24.5
parent: 2
- - uid: 34686
- components:
- - type: Transform
- pos: 74.5,-8.5
- parent: 2
- uid: 35939
components:
- type: Transform
@@ -98347,13 +98856,18 @@ entities:
- uid: 36956
components:
- type: Transform
- pos: -14.57061,36.81366
+ pos: -11.978204,28.57977
parent: 2
- uid: 36957
components:
- type: Transform
pos: -9.676958,28.772549
parent: 2
+ - uid: 39680
+ components:
+ - type: Transform
+ pos: -14.43656,38.04964
+ parent: 2
- proto: ClothingHeadHatBeretBrigmedic
entities:
- uid: 2144
@@ -98420,7 +98934,7 @@ entities:
- uid: 22660
components:
- type: Transform
- pos: -14.398735,36.633972
+ pos: -12.134454,28.806332
parent: 2
- proto: ClothingHeadHatBowlerHat
entities:
@@ -98780,14 +99294,6 @@ entities:
- type: Transform
pos: -11.618801,-10.444722
parent: 2
-- proto: ClothingNeckScarfStripedLightBlue
- entities:
- - uid: 5173
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 54.56397,-10.473785
- parent: 2
- proto: ClothingNeckScarfStripedOrange
entities:
- uid: 5166
@@ -98976,28 +99482,6 @@ entities:
rot: 3.141592653589793 rad
pos: 73.161026,-18.347553
parent: 2
-- proto: ClothingOuterWinterCoatLong
- entities:
- - uid: 5163
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 54.548344,-9.45816
- parent: 2
- - uid: 5164
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 54.423344,-9.67691
- parent: 2
-- proto: ClothingOuterWinterCoatPlaid
- entities:
- - uid: 5165
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 54.56397,-10.005035
- parent: 2
- proto: ClothingShoesBootsCowboyBrown
entities:
- uid: 2091
@@ -99842,14 +100326,6 @@ entities:
rot: 3.141592653589793 rad
pos: -16.5,-46.5
parent: 2
-- proto: ComputerShuttleSalvage
- entities:
- - uid: 38139
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -6.5,-44.5
- parent: 2
- proto: ComputerSolarControl
entities:
- uid: 9706
@@ -100711,6 +101187,96 @@ entities:
- type: DeviceLinkSink
links:
- 28204
+ - uid: 39813
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -35.5,-43.5
+ parent: 2
+ - type: DeviceLinkSink
+ links:
+ - 39827
+ - uid: 39814
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -35.5,-44.5
+ parent: 2
+ - type: DeviceLinkSink
+ links:
+ - 39827
+ - uid: 39815
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -35.5,-45.5
+ parent: 2
+ - type: DeviceLinkSink
+ links:
+ - 39827
+ - uid: 39816
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -35.5,-46.5
+ parent: 2
+ - type: DeviceLinkSink
+ links:
+ - 39827
+ - uid: 39817
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -35.5,-47.5
+ parent: 2
+ - type: DeviceLinkSink
+ links:
+ - 39827
+ - uid: 39818
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -35.5,-48.5
+ parent: 2
+ - type: DeviceLinkSink
+ links:
+ - 39827
+ - uid: 39819
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -35.5,-49.5
+ parent: 2
+ - type: DeviceLinkSink
+ links:
+ - 39827
+ - uid: 39820
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -35.5,-50.5
+ parent: 2
+ - type: DeviceLinkSink
+ links:
+ - 39827
+ - uid: 39821
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -35.5,-51.5
+ parent: 2
+ - type: DeviceLinkSink
+ links:
+ - 39827
+ - uid: 39822
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -35.5,-52.5
+ parent: 2
+ - type: DeviceLinkSink
+ links:
+ - 39827
- proto: CourierBag
entities:
- uid: 22394
@@ -101075,13 +101641,6 @@ entities:
- type: Transform
pos: 83.5,80.5
parent: 2
-- proto: CrateMedicalSecure
- entities:
- - uid: 25799
- components:
- - type: Transform
- pos: 34.5,11.5
- parent: 2
- proto: CrateNPCHamlet
entities:
- uid: 30921
@@ -101124,6 +101683,13 @@ entities:
- type: Transform
pos: 13.5,27.5
parent: 2
+- proto: CrateServiceTheatre
+ entities:
+ - uid: 39674
+ components:
+ - type: Transform
+ pos: 75.5,-7.5
+ parent: 2
- proto: CrayonMime
entities:
- uid: 3707
@@ -101690,6 +102256,30 @@ entities:
- type: Transform
pos: 41.5,34.5
parent: 2
+- proto: CurtainsRed
+ entities:
+ - uid: 4781
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 67.5,-10.5
+ parent: 2
+ - uid: 39663
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 67.5,-7.5
+ parent: 2
+ - uid: 39666
+ components:
+ - type: Transform
+ pos: 67.5,-8.5
+ parent: 2
+ - uid: 39667
+ components:
+ - type: Transform
+ pos: 67.5,-9.5
+ parent: 2
- proto: CurtainsRedOpen
entities:
- uid: 4580
@@ -102356,6 +102946,36 @@ entities:
- type: Transform
pos: -16.5,46.5
parent: 2
+ - uid: 39743
+ components:
+ - type: Transform
+ pos: 73.5,-24.5
+ parent: 2
+ - uid: 39744
+ components:
+ - type: Transform
+ pos: 73.5,-25.5
+ parent: 2
+ - uid: 39745
+ components:
+ - type: Transform
+ pos: 74.5,-25.5
+ parent: 2
+ - uid: 39746
+ components:
+ - type: Transform
+ pos: 76.5,-25.5
+ parent: 2
+ - uid: 39747
+ components:
+ - type: Transform
+ pos: 77.5,-25.5
+ parent: 2
+ - uid: 39748
+ components:
+ - type: Transform
+ pos: 77.5,-24.5
+ parent: 2
- proto: DeskBell
entities:
- uid: 61
@@ -102423,6 +103043,11 @@ entities:
- type: Transform
pos: 28.44021,25.612677
parent: 2
+ - uid: 6734
+ components:
+ - type: Transform
+ pos: 57.515186,-9.737263
+ parent: 2
- uid: 7545
components:
- type: Transform
@@ -110275,6 +110900,20 @@ entities:
- type: Transform
pos: 21.542994,25.51156
parent: 2
+- proto: DoubleEmergencyOxygenTank
+ entities:
+ - uid: 39768
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 51.64576,-51.03821
+ parent: 2
+ - uid: 39772
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -58.351288,-37.387856
+ parent: 2
- proto: DoubleEmergencyOxygenTankFilled
entities:
- uid: 2991
@@ -110287,6 +110926,18 @@ entities:
- type: Transform
pos: 16.544262,25.620277
parent: 2
+ - uid: 39767
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 57.91409,-37.724327
+ parent: 2
+ - uid: 39774
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -64.37366,-30.502665
+ parent: 2
- proto: DresserCaptainFilled
entities:
- uid: 10231
@@ -110831,11 +111482,11 @@ entities:
parent: 2
- proto: DrinkGrapeCan
entities:
- - uid: 6901
+ - uid: 4163
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 70.61003,-3.506958
+ pos: 70.5454,-2.6209111
parent: 2
- uid: 36954
components:
@@ -111438,11 +112089,6 @@ entities:
- type: Transform
pos: 66.69813,18.38042
parent: 2
- - uid: 6900
- components:
- - type: Transform
- pos: 59.38189,-3.319458
- parent: 2
- uid: 6903
components:
- type: Transform
@@ -111584,6 +112230,11 @@ entities:
- type: Transform
pos: -14.404162,50.66352
parent: 2
+ - uid: 39609
+ components:
+ - type: Transform
+ pos: 59.46791,-2.5037236
+ parent: 2
- proto: DrinkWaterCup
entities:
- uid: 1620
@@ -113388,6 +114039,78 @@ entities:
- type: Transform
pos: 46.5,41.5
parent: 2
+- proto: ExtendedEmergencyOxygenTank
+ entities:
+ - uid: 39729
+ components:
+ - type: Transform
+ pos: 51.445435,-36.42421
+ parent: 2
+ - uid: 39766
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 60.10159,-45.343533
+ parent: 2
+ - uid: 39771
+ components:
+ - type: Transform
+ pos: -66.21643,-32.458168
+ parent: 2
+- proto: ExtendedEmergencyOxygenTankFilled
+ entities:
+ - uid: 27721
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -68.23987,-28.489418
+ parent: 2
+ - uid: 34677
+ components:
+ - type: Transform
+ pos: -18.627098,38.842228
+ parent: 2
+ - uid: 39690
+ components:
+ - type: Transform
+ pos: -18.517723,38.810978
+ parent: 2
+ - uid: 39691
+ components:
+ - type: Transform
+ pos: -18.32241,38.81879
+ parent: 2
+ - type: GasTank
+ toggleActionEntity: 39692
+ - type: ActionsContainer
+ - type: ContainerContainer
+ containers:
+ actions: !type:Container
+ ents:
+ - 39692
+ - uid: 39765
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 50.964844,-36.44968
+ parent: 2
+ - uid: 39769
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 64.40946,-32.354702
+ parent: 2
+ - uid: 39770
+ components:
+ - type: Transform
+ pos: 88.67545,-3.5784526
+ parent: 2
+ - uid: 39773
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -76.42122,-37.597427
+ parent: 2
- proto: ExtinguisherCabinetFilled
entities:
- uid: 324
@@ -113793,6 +114516,13 @@ entities:
parent: 2
- type: FaxMachine
name: Psych Ward
+ - uid: 39594
+ components:
+ - type: Transform
+ pos: 19.5,56.5
+ parent: 2
+ - type: FaxMachine
+ name: Bridge
- proto: FaxMachineCaptain
entities:
- uid: 15124
@@ -115496,6 +116226,16 @@ entities:
- type: Transform
pos: -14.5,11.5
parent: 2
+ - uid: 1689
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 81.5,-4.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 39629
+ - 25299
- uid: 1845
components:
- type: Transform
@@ -115766,7 +116506,7 @@ entities:
- type: DeviceNetwork
deviceLists:
- 2594
- - 29631
+ - 30392
- uid: 2464
components:
- type: Transform
@@ -115795,7 +116535,7 @@ entities:
parent: 2
- type: DeviceNetwork
deviceLists:
- - 29631
+ - 30392
- uid: 2603
components:
- type: Transform
@@ -116753,6 +117493,12 @@ entities:
deviceLists:
- 3525
- 3405
+ - uid: 11834
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 71.5,-6.5
+ parent: 2
- uid: 11975
components:
- type: Transform
@@ -116973,7 +117719,7 @@ entities:
parent: 2
- type: DeviceNetwork
deviceLists:
- - 29631
+ - 30392
- uid: 16102
components:
- type: Transform
@@ -116982,8 +117728,8 @@ entities:
parent: 2
- type: DeviceNetwork
deviceLists:
- - 29631
- 2594
+ - 30392
- uid: 16289
components:
- type: Transform
@@ -117257,6 +118003,9 @@ entities:
- type: Transform
pos: -90.5,-4.5
parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 39733
- uid: 22815
components:
- type: Transform
@@ -117306,15 +118055,6 @@ entities:
- type: Transform
pos: -7.5,0.5
parent: 2
- - uid: 23340
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -14.5,43.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 34109
- uid: 23423
components:
- type: Transform
@@ -117525,6 +118265,9 @@ entities:
- type: Transform
pos: -90.5,-5.5
parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 39733
- uid: 27441
components:
- type: Transform
@@ -117782,12 +118525,6 @@ entities:
- type: DeviceNetwork
deviceLists:
- 26091
- - uid: 34663
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 71.5,-6.5
- parent: 2
- uid: 34925
components:
- type: Transform
@@ -117867,6 +118604,16 @@ entities:
deviceLists:
- 25288
- 28702
+ - uid: 39739
+ components:
+ - type: Transform
+ pos: 74.5,-22.5
+ parent: 2
+ - uid: 39740
+ components:
+ - type: Transform
+ pos: 76.5,-22.5
+ parent: 2
- proto: Fireplace
entities:
- uid: 92
@@ -118006,8 +118753,10 @@ entities:
- uid: 14212
components:
- type: Transform
- pos: 21.424639,59.735928
+ pos: 13.510031,48.324593
parent: 2
+ - type: HandheldLight
+ toggleActionEntity: 413
- type: ContainerContainer
containers:
cell_slot: !type:ContainerSlot
@@ -118019,6 +118768,7 @@ entities:
occludes: True
ents:
- 4259
+ - 413
- type: ActionsContainer
- uid: 15585
components:
@@ -118275,6 +119025,14 @@ entities:
parent: 2
- type: Fixtures
fixtures: {}
+ - uid: 11838
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 70.5,-8.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
- uid: 13064
components:
- type: Transform
@@ -121890,11 +122648,6 @@ entities:
parent: 2
- proto: FloraTree02
entities:
- - uid: 5121
- components:
- - type: Transform
- pos: 59.191208,-8.598531
- parent: 2
- uid: 5122
components:
- type: Transform
@@ -122028,19 +122781,8 @@ entities:
rot: 1.5707963267948966 rad
pos: -0.46455932,12.641065
parent: 2
- - uid: 30902
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 1.5194097,53.32902
- parent: 2
- proto: FloraTreeLarge02
entities:
- - uid: 3908
- components:
- - type: Transform
- pos: 57.44353,-10.955918
- parent: 2
- uid: 5115
components:
- type: Transform
@@ -123089,6 +123831,30 @@ entities:
- type: Transform
pos: 89.94156,37.71867
parent: 2
+- proto: Football
+ entities:
+ - uid: 39693
+ components:
+ - type: Transform
+ pos: 34.70631,-7.9306393
+ parent: 2
+ - uid: 39694
+ components:
+ - type: Transform
+ pos: 50.53139,-18.200792
+ parent: 2
+ - uid: 39695
+ components:
+ - type: Transform
+ pos: 71.5936,-24.598394
+ parent: 2
+- proto: Fulton
+ entities:
+ - uid: 39832
+ components:
+ - type: Transform
+ pos: -7.1484785,-45.382618
+ parent: 2
- proto: GasAnalyzer
entities:
- uid: 5679
@@ -123835,14 +124601,6 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 15873
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 80.5,-5.5
- parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 15880
components:
- type: Transform
@@ -125585,14 +126343,6 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#FF5555FF'
- - uid: 34679
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 69.5,-7.5
- parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 35747
components:
- type: Transform
@@ -125817,6 +126567,58 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 39633
+ components:
+ - type: Transform
+ pos: 84.5,-5.5
+ parent: 2
+ - uid: 39723
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -12.5,53.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 39724
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -13.5,55.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 39727
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -14.5,49.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 39728
+ components:
+ - type: Transform
+ pos: -11.5,49.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 39754
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 75.5,-21.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 39759
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 74.5,-21.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- proto: GasPipeBroken
entities:
- uid: 4695
@@ -126276,6 +127078,16 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
+ - uid: 39630
+ components:
+ - type: Transform
+ pos: 84.5,-6.5
+ parent: 2
+ - uid: 39631
+ components:
+ - type: Transform
+ pos: 84.5,-7.5
+ parent: 2
- proto: GasPipeStraight
entities:
- uid: 9
@@ -128462,6 +129274,14 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 6901
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -13.5,52.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 6910
components:
- type: Transform
@@ -128867,6 +129687,12 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
+ - uid: 8474
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 82.5,-5.5
+ parent: 2
- uid: 8476
components:
- type: Transform
@@ -147295,14 +148121,6 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 27721
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 76.5,-17.5
- parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 27722
components:
- type: Transform
@@ -147407,14 +148225,6 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 27736
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 75.5,-15.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 27739
components:
- type: Transform
@@ -151427,13 +152237,6 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 34683
- components:
- - type: Transform
- pos: 75.5,-4.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 34684
components:
- type: Transform
@@ -152360,6 +153163,297 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 39632
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 83.5,-5.5
+ parent: 2
+ - uid: 39634
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 76.5,-4.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 39635
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 77.5,-4.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 39636
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 78.5,-4.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 39637
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 79.5,-4.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 39638
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 80.5,-4.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 39639
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 81.5,-4.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 39640
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 82.5,-4.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 39641
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 83.5,-4.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 39698
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -13.5,51.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 39701
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -13.5,49.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 39702
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -13.5,53.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 39703
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -13.5,54.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 39705
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -12.5,50.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 39706
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -12.5,51.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 39707
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -12.5,52.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 39708
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -12.5,55.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 39709
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -11.5,55.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 39710
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -10.5,55.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 39711
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -11.5,53.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 39712
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -10.5,53.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 39713
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -10.5,50.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 39714
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -11.5,50.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 39715
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -12.5,50.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 39716
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -10.5,48.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 39717
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -11.5,48.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 39725
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -13.5,48.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 39749
+ components:
+ - type: Transform
+ pos: 75.5,-16.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 39750
+ components:
+ - type: Transform
+ pos: 75.5,-17.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 39751
+ components:
+ - type: Transform
+ pos: 75.5,-18.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 39752
+ components:
+ - type: Transform
+ pos: 75.5,-19.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 39753
+ components:
+ - type: Transform
+ pos: 75.5,-20.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 39755
+ components:
+ - type: Transform
+ pos: 76.5,-18.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 39756
+ components:
+ - type: Transform
+ pos: 76.5,-19.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 39757
+ components:
+ - type: Transform
+ pos: 76.5,-20.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 39758
+ components:
+ - type: Transform
+ pos: 76.5,-21.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 39760
+ components:
+ - type: Transform
+ pos: 74.5,-22.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 39761
+ components:
+ - type: Transform
+ pos: 76.5,-22.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
- proto: GasPipeTJunction
entities:
- uid: 19
@@ -152706,6 +153800,14 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
+ - uid: 6900
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -13.5,50.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 7222
components:
- type: Transform
@@ -153045,6 +154147,14 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
+ - uid: 11012
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 80.5,-5.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 11440
components:
- type: Transform
@@ -153069,6 +154179,28 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 11821
+ components:
+ - type: Transform
+ pos: 76.5,-17.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 11822
+ components:
+ - type: Transform
+ pos: 75.5,-15.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 11829
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 75.5,-4.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 11857
components:
- type: Transform
@@ -155762,35 +156894,6 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#947507FF'
- - uid: 34675
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 71.5,-7.5
- parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 34676
- components:
- - type: Transform
- pos: 70.5,-7.5
- parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 34677
- components:
- - type: Transform
- pos: 72.5,-7.5
- parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 34678
- components:
- - type: Transform
- pos: 73.5,-7.5
- parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 36581
components:
- type: Transform
@@ -155833,6 +156936,30 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
+ - uid: 39704
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -12.5,49.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 39718
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -12.5,48.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 39726
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -13.5,49.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- proto: GasPort
entities:
- uid: 2834
@@ -155877,6 +157004,14 @@ entities:
parent: 2
- type: AtmosDevice
joinedGrid: 2
+ - uid: 7664
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 83.5,-7.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
- uid: 9682
components:
- type: Transform
@@ -155909,6 +157044,14 @@ entities:
parent: 2
- type: AtmosDevice
joinedGrid: 2
+ - uid: 28788
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 83.5,-6.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
- uid: 31812
components:
- type: Transform
@@ -155953,51 +157096,27 @@ entities:
joinedGrid: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 34670
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 69.5,-8.5
- parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 34671
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 70.5,-8.5
- parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 34672
+ - uid: 36577
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 72.5,-8.5
+ rot: 1.5707963267948966 rad
+ pos: 67.5,81.5
parent: 2
- type: AtmosDevice
joinedGrid: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 34673
+ - uid: 39625
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 73.5,-8.5
+ rot: -1.5707963267948966 rad
+ pos: 85.5,-6.5
parent: 2
- type: AtmosDevice
joinedGrid: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 36577
+ - uid: 39626
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 67.5,81.5
+ rot: -1.5707963267948966 rad
+ pos: 85.5,-7.5
parent: 2
- type: AtmosDevice
joinedGrid: 2
@@ -156635,6 +157754,9 @@ entities:
- type: Transform
pos: -95.5,-3.5
parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 39733
- type: AtmosDevice
joinedGrid: 2
- type: AtmosPipeColor
@@ -156660,7 +157782,7 @@ entities:
parent: 2
- type: DeviceNetwork
deviceLists:
- - 29631
+ - 30392
- type: AtmosDevice
joinedGrid: 2
- type: AtmosPipeColor
@@ -156876,6 +157998,8 @@ entities:
parent: 2
- type: AtmosDevice
joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 9568
components:
- type: Transform
@@ -156938,6 +158062,29 @@ entities:
joinedGrid: 2
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 11844
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 75.5,-7.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 11850
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -14.5,48.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 22157
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 12085
components:
- type: Transform
@@ -157114,15 +158261,6 @@ entities:
joinedGrid: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 16161
- components:
- - type: Transform
- pos: -13.5,48.5
- parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 16166
components:
- type: Transform
@@ -158797,16 +159935,6 @@ entities:
joinedGrid: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 34680
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 75.5,-7.5
- parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 34760
components:
- type: Transform
@@ -159125,6 +160253,55 @@ entities:
joinedGrid: 2
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 39643
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 84.5,-4.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 39629
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 39721
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -9.5,50.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 22157
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 39722
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -9.5,55.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 22157
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 39762
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 74.5,-23.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- proto: GasVentScrubber
entities:
- uid: 386
@@ -159263,7 +160440,7 @@ entities:
parent: 2
- type: DeviceNetwork
deviceLists:
- - 29631
+ - 30392
- type: AtmosDevice
joinedGrid: 2
- type: AtmosPipeColor
@@ -159400,6 +160577,9 @@ entities:
rot: 3.141592653589793 rad
pos: -95.5,-9.5
parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 39733
- type: AtmosDevice
joinedGrid: 2
- type: AtmosPipeColor
@@ -159623,6 +160803,29 @@ entities:
joinedGrid: 2
- type: AtmosPipeColor
color: '#990000FF'
+ - uid: 11843
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -11.5,48.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 22157
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 11863
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 71.5,-7.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 12292
components:
- type: Transform
@@ -159755,15 +160958,6 @@ entities:
joinedGrid: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 15689
- components:
- - type: Transform
- pos: -12.5,48.5
- parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 15933
components:
- type: Transform
@@ -161534,16 +162728,6 @@ entities:
joinedGrid: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 34681
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 74.5,-7.5
- parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 34741
components:
- type: Transform
@@ -161863,6 +163047,53 @@ entities:
joinedGrid: 2
- type: AtmosPipeColor
color: '#990000FF'
+ - uid: 39642
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 84.5,-8.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 39629
+ - type: AtmosDevice
+ joinedGrid: 2
+ - uid: 39719
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -9.5,48.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 22157
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 39720
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -9.5,53.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 22157
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 39763
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 76.5,-23.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
- proto: GasVolumePump
entities:
- uid: 9171
@@ -162861,21 +164092,6 @@ entities:
rot: -1.5707963267948966 rad
pos: -17.5,-34.5
parent: 2
- - uid: 2396
- components:
- - type: Transform
- pos: 76.5,-22.5
- parent: 2
- - uid: 2397
- components:
- - type: Transform
- pos: 74.5,-22.5
- parent: 2
- - uid: 2405
- components:
- - type: Transform
- pos: 75.5,-22.5
- parent: 2
- uid: 2435
components:
- type: Transform
@@ -168055,6 +169271,11 @@ entities:
rot: 3.141592653589793 rad
pos: -120.5,5.5
parent: 2
+ - uid: 15320
+ components:
+ - type: Transform
+ pos: 74.5,-26.5
+ parent: 2
- uid: 15360
components:
- type: Transform
@@ -171482,6 +172703,11 @@ entities:
rot: 3.141592653589793 rad
pos: -38.5,26.5
parent: 2
+ - uid: 28405
+ components:
+ - type: Transform
+ pos: 75.5,-26.5
+ parent: 2
- uid: 28424
components:
- type: Transform
@@ -172418,6 +173644,11 @@ entities:
rot: 1.5707963267948966 rad
pos: 34.5,58.5
parent: 2
+ - uid: 34681
+ components:
+ - type: Transform
+ pos: 76.5,-26.5
+ parent: 2
- uid: 34794
components:
- type: Transform
@@ -173149,6 +174380,11 @@ entities:
rot: 3.141592653589793 rad
pos: -72.5,25.5
parent: 2
+ - uid: 39737
+ components:
+ - type: Transform
+ pos: 75.5,-22.5
+ parent: 2
- proto: GrilleBroken
entities:
- uid: 1098
@@ -174937,6 +176173,16 @@ entities:
rot: -1.5707963267948966 rad
pos: 12.5,53.5
parent: 2
+ - uid: 29631
+ components:
+ - type: Transform
+ pos: -76.5,15.5
+ parent: 2
+ - uid: 39593
+ components:
+ - type: Transform
+ pos: 13.5,58.5
+ parent: 2
- proto: IntercomCommon
entities:
- uid: 22919
@@ -175000,6 +176246,34 @@ entities:
- type: Transform
pos: -36.5,47.5
parent: 2
+ - uid: 39838
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -63.5,12.5
+ parent: 2
+ - uid: 39839
+ components:
+ - type: Transform
+ pos: -59.5,27.5
+ parent: 2
+ - uid: 39840
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -52.5,37.5
+ parent: 2
+ - uid: 39841
+ components:
+ - type: Transform
+ pos: -62.5,42.5
+ parent: 2
+ - uid: 39842
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -53.5,48.5
+ parent: 2
- proto: IntercomMedical
entities:
- uid: 1951
@@ -175092,13 +176366,47 @@ entities:
- type: Transform
pos: -71.5,15.5
parent: 2
+ - uid: 39831
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -66.5,2.5
+ parent: 2
- proto: IntercomSupply
entities:
+ - uid: 6922
+ components:
+ - type: Transform
+ pos: -17.5,-40.5
+ parent: 2
- uid: 22946
components:
- type: Transform
pos: -28.5,-22.5
parent: 2
+ - uid: 39834
+ components:
+ - type: Transform
+ pos: -36.5,-39.5
+ parent: 2
+ - uid: 39835
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -5.5,-44.5
+ parent: 2
+ - uid: 39836
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -5.5,-21.5
+ parent: 2
+ - uid: 39837
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -13.5,-31.5
+ parent: 2
- proto: JanitorialTrolley
entities:
- uid: 1302
@@ -175285,6 +176593,38 @@ entities:
ents:
- 20873
- 20874
+ - uid: 39682
+ components:
+ - type: Transform
+ pos: -18.533348,38.69379
+ parent: 2
+ - type: GasTank
+ toggleActionEntity: 39684
+ - type: Jetpack
+ toggleActionEntity: 39683
+ - type: ActionsContainer
+ - type: ContainerContainer
+ containers:
+ actions: !type:Container
+ ents:
+ - 39683
+ - 39684
+ - uid: 39685
+ components:
+ - type: Transform
+ pos: -18.54116,38.50629
+ parent: 2
+ - type: GasTank
+ toggleActionEntity: 39687
+ - type: Jetpack
+ toggleActionEntity: 39686
+ - type: ActionsContainer
+ - type: ContainerContainer
+ containers:
+ actions: !type:Container
+ ents:
+ - 39686
+ - 39687
- proto: JetpackMiniFilled
entities:
- uid: 108
@@ -175308,6 +176648,75 @@ entities:
- type: Transform
pos: 33.52118,2.8475661
parent: 2
+- proto: JetpackSecurity
+ entities:
+ - uid: 30902
+ components:
+ - type: Transform
+ parent: 179
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 33237
+ components:
+ - type: Transform
+ parent: 405
+ - type: GasTank
+ toggleActionEntity: 34664
+ - type: Jetpack
+ toggleActionEntity: 34663
+ - type: Physics
+ canCollide: False
+ - type: ActionsContainer
+ - type: ContainerContainer
+ containers:
+ actions: !type:Container
+ ents:
+ - 34663
+ - 34664
+ - type: InsideEntityStorage
+ - uid: 34665
+ components:
+ - type: Transform
+ parent: 618
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 34666
+ components:
+ - type: Transform
+ parent: 4452
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 34667
+ components:
+ - type: Transform
+ parent: 11824
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 34670
+ components:
+ - type: Transform
+ parent: 14160
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 34671
+ components:
+ - type: Transform
+ parent: 14251
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 34672
+ components:
+ - type: Transform
+ parent: 22822
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
- proto: Jug
entities:
- uid: 5275
@@ -175510,6 +176919,18 @@ entities:
rot: 3.141592653589793 rad
pos: 49.510403,35.0432
parent: 2
+- proto: LampBanana
+ entities:
+ - uid: 6727
+ components:
+ - type: Transform
+ pos: -77.8823,4.2693357
+ parent: 2
+ - uid: 39700
+ components:
+ - type: Transform
+ pos: -75.39793,1.1833985
+ parent: 2
- proto: LampGold
entities:
- uid: 243
@@ -176346,6 +177767,22 @@ entities:
- Pressed: Toggle
- proto: LockableButtonSecurity
entities:
+ - uid: 1042
+ components:
+ - type: MetaData
+ name: north blast door button
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -3.5,43.5
+ parent: 2
+ - type: DeviceLinkSource
+ linkedPorts:
+ 34102:
+ - Pressed: Toggle
+ 34103:
+ - Pressed: Toggle
+ 34877:
+ - Pressed: Toggle
- uid: 2596
components:
- type: MetaData
@@ -176473,7 +177910,7 @@ entities:
- uid: 25985
components:
- type: MetaData
- name: blast door button
+ name: south blast door button
- type: Transform
rot: 1.5707963267948966 rad
pos: -3.5,42.5
@@ -176486,12 +177923,6 @@ entities:
- Pressed: Toggle
34101:
- Pressed: Toggle
- 34102:
- - Pressed: Toggle
- 34103:
- - Pressed: Toggle
- 34877:
- - Pressed: Toggle
- uid: 32443
components:
- type: MetaData
@@ -176601,19 +178032,13 @@ entities:
- uid: 34411
components:
- type: MetaData
- name: blast door button
+ name: north blast door button
- type: Transform
rot: -1.5707963267948966 rad
pos: 5.5,-24.5
parent: 2
- type: DeviceLinkSource
linkedPorts:
- 12053:
- - Pressed: Toggle
- 15677:
- - Pressed: Toggle
- 12106:
- - Pressed: Toggle
16476:
- Pressed: Toggle
1738:
@@ -176635,6 +178060,22 @@ entities:
- Pressed: Toggle
37999:
- Pressed: Toggle
+ - uid: 39677
+ components:
+ - type: MetaData
+ name: south blast door button
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 5.5,-25.5
+ parent: 2
+ - type: DeviceLinkSource
+ linkedPorts:
+ 12106:
+ - Pressed: Toggle
+ 15677:
+ - Pressed: Toggle
+ 12053:
+ - Pressed: Toggle
- proto: LockerAtmosphericsFilled
entities:
- uid: 8730
@@ -178510,6 +179951,13 @@ entities:
- type: Transform
pos: -40.5,4.5
parent: 2
+- proto: MaterialWoodPlank
+ entities:
+ - uid: 6265
+ components:
+ - type: Transform
+ pos: 69.34312,-8.391582
+ parent: 2
- proto: MaterialWoodPlank1
entities:
- uid: 36548
@@ -178956,8 +180404,19 @@ entities:
- type: Transform
pos: -40.011898,11.049174
parent: 2
+ - uid: 39645
+ components:
+ - type: Transform
+ pos: 70.397995,-8.179331
+ parent: 2
- proto: MopItem
entities:
+ - uid: 6714
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 70.60893,-8.484018
+ parent: 2
- uid: 18529
components:
- type: Transform
@@ -182442,6 +183901,13 @@ entities:
parent: 2
- type: AtmosDevice
joinedGrid: 2
+ - uid: 6693
+ components:
+ - type: Transform
+ pos: 6.5,-25.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
- uid: 9357
components:
- type: Transform
@@ -182668,11 +184134,10 @@ entities:
parent: 2
- proto: OreBox
entities:
- - uid: 6922
+ - uid: 26239
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -34.5,-40.5
+ pos: -35.5,-40.5
parent: 2
- proto: OreProcessor
entities:
@@ -182740,6 +184205,13 @@ entities:
parent: 2
- type: AtmosDevice
joinedGrid: 2
+ - uid: 6686
+ components:
+ - type: Transform
+ pos: 6.5,-24.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
- uid: 9356
components:
- type: Transform
@@ -182761,13 +184233,6 @@ entities:
parent: 2
- type: AtmosDevice
joinedGrid: 2
- - uid: 17167
- components:
- - type: Transform
- pos: -18.5,37.5
- parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- uid: 19384
components:
- type: Transform
@@ -182817,6 +184282,13 @@ entities:
parent: 2
- type: AtmosDevice
joinedGrid: 2
+ - uid: 39689
+ components:
+ - type: Transform
+ pos: -16.5,38.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
- proto: PaintingBlunt
entities:
- uid: 821
@@ -183102,7 +184574,8 @@ entities:
- uid: 27340
components:
- type: Transform
- pos: 14.624783,12.6721115
+ anchored: True
+ pos: 14.5,14.5
parent: 2
- type: Paper
stampState: paper_stamp-cmo
@@ -183135,6 +184608,19 @@ entities:
+ - type: Physics
+ canCollide: False
+ bodyType: Static
+ - type: Anchorable
+ flags: Anchorable
+ missingComponents:
+ - Flammable
+ - Damageable
+ - Destructible
+ - BadFood
+ - DamageOnHighSpeedImpact
+ - Pullable
+ - DamageExaminable
- uid: 27406
components:
- type: Transform
@@ -183753,6 +185239,13 @@ entities:
- type: Transform
pos: 43.61646,40.589447
parent: 2
+- proto: PhoneInstrument
+ entities:
+ - uid: 39592
+ components:
+ - type: Transform
+ pos: 17.51003,56.6312
+ parent: 2
- proto: Pickaxe
entities:
- uid: 6828
@@ -184467,6 +185960,11 @@ entities:
- type: Transform
pos: -42.413776,-35.308582
parent: 2
+ - uid: 39696
+ components:
+ - type: Transform
+ pos: 63.997437,-8.901122
+ parent: 2
- proto: PlushieSharkGrey
entities:
- uid: 33688
@@ -184491,6 +185989,11 @@ entities:
- type: Transform
pos: -104.682976,3.9293537
parent: 2
+ - uid: 39697
+ components:
+ - type: Transform
+ pos: 64.34119,-9.651122
+ parent: 2
- proto: PlushieSlime
entities:
- uid: 22686
@@ -184633,15 +186136,20 @@ entities:
- type: Transform
pos: -41.5,38.5
parent: 2
- - uid: 34666
+ - uid: 39627
components:
- type: Transform
- pos: 69.5,-8.5
+ pos: 83.5,-6.5
parent: 2
- - uid: 34667
+ - uid: 39628
components:
- type: Transform
- pos: 70.5,-8.5
+ pos: 85.5,-7.5
+ parent: 2
+ - uid: 39644
+ components:
+ - type: Transform
+ pos: 86.5,-6.5
parent: 2
- proto: PosterBroken
entities:
@@ -185101,6 +186609,12 @@ entities:
parent: 2
- proto: PosterContrabandRevolver
entities:
+ - uid: 2396
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -14.5,43.5
+ parent: 2
- uid: 2592
components:
- type: Transform
@@ -187469,6 +188983,11 @@ entities:
- type: Transform
pos: -14.5,57.5
parent: 2
+ - uid: 16161
+ components:
+ - type: Transform
+ pos: 3.5,50.5
+ parent: 2
- uid: 16168
components:
- type: Transform
@@ -187614,11 +189133,6 @@ entities:
- type: Transform
pos: -27.5,53.5
parent: 2
- - uid: 19649
- components:
- - type: Transform
- pos: 3.5,52.5
- parent: 2
- uid: 19730
components:
- type: Transform
@@ -187839,11 +189353,6 @@ entities:
- type: Transform
pos: -14.5,51.5
parent: 2
- - uid: 36116
- components:
- - type: Transform
- pos: -14.5,42.5
- parent: 2
- uid: 36150
components:
- type: Transform
@@ -187884,6 +189393,16 @@ entities:
- type: Transform
pos: 10.5,7.5
parent: 2
+ - uid: 39588
+ components:
+ - type: Transform
+ pos: -0.5,53.5
+ parent: 2
+ - uid: 39589
+ components:
+ - type: Transform
+ pos: -0.5,50.5
+ parent: 2
- proto: PottedPlantRD
entities:
- uid: 28745
@@ -188086,6 +189605,11 @@ entities:
rot: -1.5707963267948966 rad
pos: -6.5,-41.5
parent: 2
+ - uid: 39778
+ components:
+ - type: Transform
+ pos: -28.5,-46.5
+ parent: 2
- proto: PowerCellSmallPrinted
entities:
- uid: 5729
@@ -190328,6 +191852,18 @@ entities:
- type: Transform
pos: -7.5,7.5
parent: 2
+ - uid: 39671
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 67.5,-6.5
+ parent: 2
+ - uid: 39672
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 67.5,-12.5
+ parent: 2
- proto: PoweredLightBlueInterior
entities:
- uid: 6724
@@ -190444,15 +191980,15 @@ entities:
rot: -1.5707963267948966 rad
pos: 26.5,-34.5
parent: 2
- - uid: 23376
+ - uid: 17167
components:
- type: Transform
- pos: -9.5,-54.5
+ pos: -35.5,-40.5
parent: 2
- - uid: 28403
+ - uid: 23376
components:
- type: Transform
- pos: -35.5,-40.5
+ pos: -9.5,-54.5
parent: 2
- uid: 28968
components:
@@ -190635,12 +192171,6 @@ entities:
- type: Transform
pos: -41.5,72.5
parent: 2
- - uid: 6727
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -35.5,-55.5
- parent: 2
- uid: 9638
components:
- type: Transform
@@ -190671,6 +192201,12 @@ entities:
- type: Transform
pos: -95.5,67.5
parent: 2
+ - uid: 17955
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -33.5,-56.5
+ parent: 2
- uid: 18715
components:
- type: Transform
@@ -190696,6 +192232,12 @@ entities:
- type: Transform
pos: 112.5,-5.5
parent: 2
+ - uid: 25799
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -37.5,-56.5
+ parent: 2
- uid: 29928
components:
- type: Transform
@@ -192161,12 +193703,6 @@ entities:
rot: 3.141592653589793 rad
pos: 7.5,-27.5
parent: 2
- - uid: 11850
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -28.5,-46.5
- parent: 2
- uid: 12092
components:
- type: Transform
@@ -192480,6 +194016,17 @@ entities:
rot: 1.5707963267948966 rad
pos: 83.5,-22.5
parent: 2
+ - uid: 39651
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 69.5,-8.5
+ parent: 2
+ - uid: 39688
+ components:
+ - type: Transform
+ pos: -18.5,38.5
+ parent: 2
- proto: RadiationCollector
entities:
- uid: 19256
@@ -192753,18 +194300,6 @@ entities:
rot: 3.141592653589793 rad
pos: 9.5,24.5
parent: 2
- - uid: 1901
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 10.5,24.5
- parent: 2
- - uid: 1903
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 7.5,24.5
- parent: 2
- uid: 2086
components:
- type: Transform
@@ -192801,12 +194336,6 @@ entities:
rot: 1.5707963267948966 rad
pos: 27.5,43.5
parent: 2
- - uid: 2709
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -19.5,25.5
- parent: 2
- uid: 3303
components:
- type: Transform
@@ -192899,17 +194428,11 @@ entities:
rot: 3.141592653589793 rad
pos: 65.5,-15.5
parent: 2
- - uid: 5662
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -20.5,25.5
- parent: 2
- - uid: 5667
+ - uid: 5178
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -21.5,25.5
+ rot: -1.5707963267948966 rad
+ pos: -37.5,-46.5
parent: 2
- uid: 5943
components:
@@ -192933,12 +194456,6 @@ entities:
rot: -1.5707963267948966 rad
pos: 16.5,-30.5
parent: 2
- - uid: 6624
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -35.5,-54.5
- parent: 2
- uid: 6676
components:
- type: Transform
@@ -192956,12 +194473,6 @@ entities:
- type: Transform
pos: 43.5,12.5
parent: 2
- - uid: 6734
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -35.5,-46.5
- parent: 2
- uid: 6966
components:
- type: Transform
@@ -193095,12 +194606,6 @@ entities:
- type: Transform
pos: -61.5,36.5
parent: 2
- - uid: 9678
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -35.5,-47.5
- parent: 2
- uid: 9753
components:
- type: Transform
@@ -193481,12 +194986,6 @@ entities:
rot: -1.5707963267948966 rad
pos: -67.5,-32.5
parent: 2
- - uid: 10649
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -35.5,-44.5
- parent: 2
- uid: 10701
components:
- type: Transform
@@ -193504,36 +195003,6 @@ entities:
- type: Transform
pos: 23.5,-21.5
parent: 2
- - uid: 11821
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -35.5,-43.5
- parent: 2
- - uid: 11822
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -35.5,-42.5
- parent: 2
- - uid: 11833
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -35.5,-41.5
- parent: 2
- - uid: 11834
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -35.5,-45.5
- parent: 2
- - uid: 11835
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -35.5,-50.5
- parent: 2
- uid: 11846
components:
- type: Transform
@@ -193806,6 +195275,12 @@ entities:
rot: -1.5707963267948966 rad
pos: -4.5,37.5
parent: 2
+ - uid: 15689
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -37.5,-48.5
+ parent: 2
- uid: 15755
components:
- type: Transform
@@ -193829,12 +195304,6 @@ entities:
- type: Transform
pos: 24.5,40.5
parent: 2
- - uid: 16608
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -35.5,-48.5
- parent: 2
- uid: 16848
components:
- type: Transform
@@ -193865,18 +195334,6 @@ entities:
rot: -1.5707963267948966 rad
pos: 13.5,-29.5
parent: 2
- - uid: 17690
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -35.5,-40.5
- parent: 2
- - uid: 17692
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -35.5,-49.5
- parent: 2
- uid: 17732
components:
- type: Transform
@@ -193894,6 +195351,16 @@ entities:
- type: Transform
pos: -40.5,-30.5
parent: 2
+ - uid: 17953
+ components:
+ - type: Transform
+ pos: 8.5,24.5
+ parent: 2
+ - uid: 17954
+ components:
+ - type: Transform
+ pos: 9.5,24.5
+ parent: 2
- uid: 18219
components:
- type: Transform
@@ -194261,6 +195728,12 @@ entities:
rot: 3.141592653589793 rad
pos: -46.5,-38.5
parent: 2
+ - uid: 25965
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -37.5,-55.5
+ parent: 2
- uid: 26084
components:
- type: Transform
@@ -194295,6 +195768,12 @@ entities:
rot: -1.5707963267948966 rad
pos: 88.5,78.5
parent: 2
+ - uid: 27141
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -33.5,-55.5
+ parent: 2
- uid: 27167
components:
- type: Transform
@@ -194486,12 +195965,6 @@ entities:
rot: -1.5707963267948966 rad
pos: 13.5,24.5
parent: 2
- - uid: 30392
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 2.5,52.5
- parent: 2
- uid: 30399
components:
- type: Transform
@@ -195326,6 +196799,116 @@ entities:
- type: Transform
pos: 36.5,-26.5
parent: 2
+ - uid: 39654
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 71.5,-8.5
+ parent: 2
+ - uid: 39657
+ components:
+ - type: Transform
+ pos: 67.5,-6.5
+ parent: 2
+ - uid: 39658
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 62.5,-8.5
+ parent: 2
+ - uid: 39659
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 64.5,-11.5
+ parent: 2
+ - uid: 39665
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 62.5,-9.5
+ parent: 2
+ - uid: 39668
+ components:
+ - type: Transform
+ pos: 64.5,-6.5
+ parent: 2
+ - uid: 39670
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 67.5,-11.5
+ parent: 2
+ - uid: 39780
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -37.5,-54.5
+ parent: 2
+ - uid: 39783
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -37.5,-43.5
+ parent: 2
+ - uid: 39784
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -37.5,-49.5
+ parent: 2
+ - uid: 39797
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -37.5,-44.5
+ parent: 2
+ - uid: 39798
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -37.5,-50.5
+ parent: 2
+ - uid: 39811
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -37.5,-45.5
+ parent: 2
+ - uid: 39812
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -37.5,-47.5
+ parent: 2
+ - uid: 39823
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -37.5,-42.5
+ parent: 2
+ - uid: 39824
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -37.5,-41.5
+ parent: 2
+ - uid: 39825
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -37.5,-40.5
+ parent: 2
+ - uid: 39829
+ components:
+ - type: Transform
+ pos: -36.5,-56.5
+ parent: 2
+ - uid: 39830
+ components:
+ - type: Transform
+ pos: -34.5,-56.5
+ parent: 2
- proto: RailingCorner
entities:
- uid: 2384
@@ -195481,12 +197064,6 @@ entities:
rot: -1.5707963267948966 rad
pos: 42.5,12.5
parent: 2
- - uid: 6714
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -35.5,-55.5
- parent: 2
- uid: 7086
components:
- type: Transform
@@ -195533,11 +197110,6 @@ entities:
rot: -1.5707963267948966 rad
pos: -67.5,-36.5
parent: 2
- - uid: 11863
- components:
- - type: Transform
- pos: -33.5,-55.5
- parent: 2
- uid: 12318
components:
- type: Transform
@@ -195813,6 +197385,28 @@ entities:
rot: -1.5707963267948966 rad
pos: -47.5,-30.5
parent: 2
+ - uid: 39660
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 63.5,-10.5
+ parent: 2
+ - uid: 39662
+ components:
+ - type: Transform
+ pos: 63.5,-7.5
+ parent: 2
+ - uid: 39775
+ components:
+ - type: Transform
+ pos: -33.5,-56.5
+ parent: 2
+ - uid: 39828
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -37.5,-56.5
+ parent: 2
- proto: RailingCornerSmall
entities:
- uid: 268
@@ -196077,23 +197671,12 @@ entities:
- type: Transform
pos: -67.5,-33.5
parent: 2
- - uid: 11010
- components:
- - type: Transform
- pos: -35.5,-51.5
- parent: 2
- uid: 11325
components:
- type: Transform
rot: 3.141592653589793 rad
pos: 20.5,-21.5
parent: 2
- - uid: 11836
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -35.5,-53.5
- parent: 2
- uid: 11845
components:
- type: Transform
@@ -196436,6 +198019,41 @@ entities:
rot: -1.5707963267948966 rad
pos: 81.5,-11.5
parent: 2
+ - uid: 39655
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 63.5,-6.5
+ parent: 2
+ - uid: 39656
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 62.5,-7.5
+ parent: 2
+ - uid: 39664
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 62.5,-10.5
+ parent: 2
+ - uid: 39669
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 63.5,-11.5
+ parent: 2
+ - uid: 39781
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -37.5,-53.5
+ parent: 2
+ - uid: 39826
+ components:
+ - type: Transform
+ pos: -37.5,-51.5
+ parent: 2
- proto: RailingRound
entities:
- uid: 8216
@@ -196444,6 +198062,18 @@ entities:
rot: -1.5707963267948966 rad
pos: 96.5,70.5
parent: 2
+ - uid: 17692
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 7.5,24.5
+ parent: 2
+ - uid: 17952
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 10.5,24.5
+ parent: 2
- uid: 20595
components:
- type: Transform
@@ -196493,11 +198123,6 @@ entities:
- type: Transform
pos: 63.5,85.5
parent: 2
- - uid: 37636
- components:
- - type: Transform
- pos: -67.5,-29.5
- parent: 2
- uid: 37637
components:
- type: Transform
@@ -196528,16 +198153,6 @@ entities:
- type: Transform
pos: -49.5,66.5
parent: 2
- - uid: 37646
- components:
- - type: Transform
- pos: -43.5,54.5
- parent: 2
- - uid: 37647
- components:
- - type: Transform
- pos: -68.5,38.5
- parent: 2
- uid: 38769
components:
- type: Transform
@@ -197251,6 +198866,12 @@ entities:
parent: 2
- proto: RandomPosterAny
entities:
+ - uid: 5121
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 74.5,-6.5
+ parent: 2
- uid: 15148
components:
- type: Transform
@@ -198752,12 +200373,6 @@ entities:
- type: Transform
pos: -18.5,79.5
parent: 2
- - uid: 26239
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 86.5,-3.5
- parent: 2
- uid: 26394
components:
- type: Transform
@@ -201164,11 +202779,6 @@ entities:
- type: Transform
pos: 12.5,56.5
parent: 2
- - uid: 2786
- components:
- - type: Transform
- pos: 76.5,-22.5
- parent: 2
- uid: 2907
components:
- type: Transform
@@ -201796,16 +203406,6 @@ entities:
- type: Transform
pos: 78.5,-21.5
parent: 2
- - uid: 6458
- components:
- - type: Transform
- pos: 75.5,-22.5
- parent: 2
- - uid: 6459
- components:
- - type: Transform
- pos: 74.5,-22.5
- parent: 2
- uid: 6667
components:
- type: Transform
@@ -204386,6 +205986,11 @@ entities:
rot: 3.141592653589793 rad
pos: -60.5,54.5
parent: 2
+ - uid: 28403
+ components:
+ - type: Transform
+ pos: 75.5,-26.5
+ parent: 2
- uid: 28511
components:
- type: Transform
@@ -204667,6 +206272,16 @@ entities:
- type: Transform
pos: -58.5,55.5
parent: 2
+ - uid: 34680
+ components:
+ - type: Transform
+ pos: 74.5,-26.5
+ parent: 2
+ - uid: 34686
+ components:
+ - type: Transform
+ pos: 76.5,-26.5
+ parent: 2
- uid: 34739
components:
- type: Transform
@@ -204934,6 +206549,11 @@ entities:
- type: Transform
pos: 81.5,-6.5
parent: 2
+ - uid: 39738
+ components:
+ - type: Transform
+ pos: 75.5,-22.5
+ parent: 2
- proto: ReinforcedWindowDiagonal
entities:
- uid: 11280
@@ -205234,10 +206854,10 @@ entities:
parent: 2
- proto: SalvageMagnet
entities:
- - uid: 6685
+ - uid: 39779
components:
- type: Transform
- pos: -34.5,-55.5
+ pos: -35.5,-56.5
parent: 2
- proto: SalvageMaterialCrateSpawner
entities:
@@ -206943,6 +208563,44 @@ entities:
19128:
- On: Forward
- Off: Off
+ - uid: 39827
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -32.5,-47.5
+ parent: 2
+ - type: DeviceLinkSource
+ linkedPorts:
+ 39813:
+ - On: Forward
+ - Off: Off
+ 39814:
+ - On: Forward
+ - Off: Off
+ 39815:
+ - On: Forward
+ - Off: Off
+ 39816:
+ - On: Forward
+ - Off: Off
+ 39817:
+ - On: Forward
+ - Off: Off
+ 39818:
+ - On: Forward
+ - Off: Off
+ 39819:
+ - On: Forward
+ - Off: Off
+ 39820:
+ - On: Forward
+ - Off: Off
+ 39821:
+ - On: Forward
+ - Off: Off
+ 39822:
+ - On: Forward
+ - Off: Off
- proto: SignAnomaly
entities:
- uid: 4002
@@ -206984,17 +208642,17 @@ entities:
- type: Transform
pos: -52.5,36.5
parent: 2
- - uid: 9574
+ - uid: 7992
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -41.5,36.5
+ rot: -1.5707963267948966 rad
+ pos: 81.5,-3.5
parent: 2
- - uid: 34665
+ - uid: 9574
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 70.5,-6.5
+ pos: -41.5,36.5
parent: 2
- proto: SignBar
entities:
@@ -208815,12 +210473,6 @@ entities:
- type: Transform
pos: 3.5,46.5
parent: 2
- - uid: 15874
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -76.5,15.5
- parent: 2
- uid: 18078
components:
- type: Transform
@@ -209355,6 +211007,12 @@ entities:
rot: -1.5707963267948966 rad
pos: -70.5,4.5
parent: 2
+ - uid: 11830
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 70.5,-6.5
+ parent: 2
- uid: 18998
components:
- type: Transform
@@ -209454,6 +211112,12 @@ entities:
rot: -1.5707963267948966 rad
pos: -67.5,0.5
parent: 2
+ - uid: 11841
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 70.5,-8.5
+ parent: 2
- uid: 12129
components:
- type: Transform
@@ -209586,6 +211250,11 @@ entities:
- 0
- 0
- 0
+ - uid: 34673
+ components:
+ - type: Transform
+ pos: 12.5,4.5
+ parent: 2
- proto: SMESBasic
entities:
- uid: 9623
@@ -211863,11 +213532,11 @@ entities:
parent: 2
- proto: SpareIdCabinetFilled
entities:
- - uid: 27141
+ - uid: 39675
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 29.5,42.5
+ rot: -1.5707963267948966 rad
+ pos: 29.5,41.5
parent: 2
- proto: SpawnMobAlexander
entities:
@@ -213169,6 +214838,20 @@ entities:
- type: Transform
pos: -32.415024,46.428356
parent: 2
+- proto: SpeedLoaderMagnumRubber
+ entities:
+ - uid: 39843
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -19.679543,-7.755556
+ parent: 2
+ - uid: 39844
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -19.48423,-7.974306
+ parent: 2
- proto: SpeedLoaderSpecialPractice
entities:
- uid: 39526
@@ -213531,6 +215214,16 @@ entities:
- type: Transform
pos: 72.5,-14.5
parent: 2
+ - uid: 39621
+ components:
+ - type: Transform
+ pos: 65.5,-11.5
+ parent: 2
+ - uid: 39622
+ components:
+ - type: Transform
+ pos: 66.5,-11.5
+ parent: 2
- proto: Stairs
entities:
- uid: 25176
@@ -213592,6 +215285,23 @@ entities:
rot: 3.141592653589793 rad
pos: 35.5,-26.5
parent: 2
+- proto: StairStageWood
+ entities:
+ - uid: 39614
+ components:
+ - type: Transform
+ pos: 67.5,-11.5
+ parent: 2
+ - uid: 39617
+ components:
+ - type: Transform
+ pos: 63.5,-10.5
+ parent: 2
+ - uid: 39619
+ components:
+ - type: Transform
+ pos: 64.5,-11.5
+ parent: 2
- proto: StairWhite
entities:
- uid: 11865
@@ -213706,6 +215416,12 @@ entities:
- type: Transform
pos: -39.5,-12.5
parent: 2
+ - uid: 10649
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -94.5,20.5
+ parent: 2
- uid: 22939
components:
- type: Transform
@@ -213724,6 +215440,11 @@ entities:
rot: 1.5707963267948966 rad
pos: 5.5,24.5
parent: 2
+ - uid: 25103
+ components:
+ - type: Transform
+ pos: -9.5,79.5
+ parent: 2
- uid: 28920
components:
- type: Transform
@@ -213739,6 +215460,60 @@ entities:
- type: Transform
pos: -70.5,12.5
parent: 2
+ - uid: 36115
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 3.5,72.5
+ parent: 2
+ - uid: 36116
+ components:
+ - type: Transform
+ pos: 6.5,79.5
+ parent: 2
+ - uid: 37636
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 13.5,72.5
+ parent: 2
+ - uid: 37646
+ components:
+ - type: Transform
+ pos: -3.5,79.5
+ parent: 2
+ - uid: 37647
+ components:
+ - type: Transform
+ pos: 12.5,79.5
+ parent: 2
+ - uid: 38004
+ components:
+ - type: Transform
+ pos: -91.5,10.5
+ parent: 2
+ - uid: 38139
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -9.5,72.5
+ parent: 2
+ - uid: 38784
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -0.5,32.5
+ parent: 2
+ - uid: 39150
+ components:
+ - type: Transform
+ pos: 4.5,79.5
+ parent: 2
+ - uid: 39304
+ components:
+ - type: Transform
+ pos: -1.5,79.5
+ parent: 2
- uid: 39420
components:
- type: Transform
@@ -213881,6 +215656,34 @@ entities:
- type: Transform
pos: -7.5,-12.5
parent: 2
+ - uid: 39587
+ components:
+ - type: Transform
+ pos: -90.5,10.5
+ parent: 2
+ - uid: 39590
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -95.5,5.5
+ parent: 2
+ - uid: 39730
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -94.5,-10.5
+ parent: 2
+ - uid: 39731
+ components:
+ - type: Transform
+ pos: -88.5,-2.5
+ parent: 2
+ - uid: 39732
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -82.5,1.5
+ parent: 2
- proto: StationMapBroken
entities:
- uid: 4726
@@ -214696,41 +216499,241 @@ entities:
- type: Transform
pos: -18.5,40.5
parent: 2
+ - type: EntityStorage
+ air:
+ volume: 200
+ immutable: False
+ temperature: 293.14673
+ moles:
+ - 1.7459903
+ - 6.568249
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - type: ContainerContainer
+ containers:
+ entity_storage: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 30902
- uid: 405
components:
- type: Transform
pos: -18.5,41.5
parent: 2
+ - type: EntityStorage
+ air:
+ volume: 200
+ immutable: False
+ temperature: 293.14673
+ moles:
+ - 1.7459903
+ - 6.568249
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - type: ContainerContainer
+ containers:
+ entity_storage: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 33237
- uid: 618
components:
- type: Transform
pos: -16.5,40.5
parent: 2
+ - type: EntityStorage
+ air:
+ volume: 200
+ immutable: False
+ temperature: 293.14673
+ moles:
+ - 1.7459903
+ - 6.568249
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - type: ContainerContainer
+ containers:
+ entity_storage: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 34665
- uid: 4452
components:
- type: Transform
pos: -18.5,39.5
parent: 2
+ - type: EntityStorage
+ air:
+ volume: 200
+ immutable: False
+ temperature: 293.14673
+ moles:
+ - 1.7459903
+ - 6.568249
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - type: ContainerContainer
+ containers:
+ entity_storage: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 34666
- uid: 11824
components:
- type: Transform
pos: 8.5,-25.5
parent: 2
+ - type: EntityStorage
+ air:
+ volume: 200
+ immutable: False
+ temperature: 293.14673
+ moles:
+ - 1.7459903
+ - 6.568249
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - type: ContainerContainer
+ containers:
+ entity_storage: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 34667
- uid: 14160
components:
- type: Transform
pos: -16.5,41.5
parent: 2
+ - type: EntityStorage
+ air:
+ volume: 200
+ immutable: False
+ temperature: 293.14673
+ moles:
+ - 1.7459903
+ - 6.568249
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - type: ContainerContainer
+ containers:
+ entity_storage: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 34670
- uid: 14251
components:
- type: Transform
pos: -16.5,39.5
parent: 2
+ - type: EntityStorage
+ air:
+ volume: 200
+ immutable: False
+ temperature: 293.14673
+ moles:
+ - 1.7459903
+ - 6.568249
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - type: ContainerContainer
+ containers:
+ entity_storage: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 34671
- uid: 22822
components:
- type: Transform
pos: 8.5,-24.5
parent: 2
+ - type: EntityStorage
+ air:
+ volume: 200
+ immutable: False
+ temperature: 293.14673
+ moles:
+ - 1.7459903
+ - 6.568249
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - type: ContainerContainer
+ containers:
+ entity_storage: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 34672
- proto: SuitStorageWarden
entities:
- uid: 36942
@@ -216809,6 +218812,11 @@ entities:
- type: Transform
pos: -39.5,-26.5
parent: 2
+ - uid: 11010
+ components:
+ - type: Transform
+ pos: 54.5,-8.5
+ parent: 2
- uid: 11291
components:
- type: Transform
@@ -216950,6 +218958,11 @@ entities:
- type: Transform
pos: -52.5,-12.5
parent: 2
+ - uid: 34678
+ components:
+ - type: Transform
+ pos: 56.5,-11.5
+ parent: 2
- uid: 36731
components:
- type: Transform
@@ -216961,6 +218974,52 @@ entities:
rot: 3.141592653589793 rad
pos: 89.5,13.5
parent: 2
+ - uid: 39598
+ components:
+ - type: Transform
+ pos: 57.5,-9.5
+ parent: 2
+ - uid: 39599
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 57.5,-10.5
+ parent: 2
+ - uid: 39600
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 54.5,-11.5
+ parent: 2
+ - uid: 39607
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 57.5,-8.5
+ parent: 2
+ - uid: 39608
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 54.5,-7.5
+ parent: 2
+ - uid: 39610
+ components:
+ - type: Transform
+ pos: 57.5,-11.5
+ parent: 2
+ - uid: 39618
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 56.5,-7.5
+ parent: 2
+ - uid: 39623
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 57.5,-7.5
+ parent: 2
- proto: TableFancyBlack
entities:
- uid: 16617
@@ -217635,11 +219694,6 @@ entities:
- type: Transform
pos: 13.5,4.5
parent: 2
- - uid: 1042
- components:
- - type: Transform
- pos: 12.5,4.5
- parent: 2
- uid: 1125
components:
- type: Transform
@@ -218756,12 +220810,6 @@ entities:
- type: Transform
pos: -50.5,11.5
parent: 2
- - uid: 6265
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -13.5,50.5
- parent: 2
- uid: 6501
components:
- type: Transform
@@ -218857,6 +220905,11 @@ entities:
- type: Transform
pos: -30.5,-24.5
parent: 2
+ - uid: 6923
+ components:
+ - type: Transform
+ pos: 17.5,56.5
+ parent: 2
- uid: 6952
components:
- type: Transform
@@ -218897,12 +220950,6 @@ entities:
- type: Transform
pos: -14.5,-25.5
parent: 2
- - uid: 7992
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -14.5,36.5
- parent: 2
- uid: 8340
components:
- type: Transform
@@ -219296,6 +221343,11 @@ entities:
- type: Transform
pos: -59.5,13.5
parent: 2
+ - uid: 17690
+ components:
+ - type: Transform
+ pos: -28.5,-46.5
+ parent: 2
- uid: 17848
components:
- type: Transform
@@ -219755,6 +221807,12 @@ entities:
rot: 1.5707963267948966 rad
pos: -19.5,-7.5
parent: 2
+ - uid: 34675
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -13.5,50.5
+ parent: 2
- uid: 34833
components:
- type: Transform
@@ -219827,6 +221885,11 @@ entities:
- type: Transform
pos: 3.5,54.5
parent: 2
+ - uid: 39591
+ components:
+ - type: Transform
+ pos: 19.5,56.5
+ parent: 2
- proto: TargetClown
entities:
- uid: 9486
@@ -221335,6 +223398,11 @@ entities:
- type: Transform
pos: -10.5,33.5
parent: 2
+ - uid: 39681
+ components:
+ - type: Transform
+ pos: -20.5,39.5
+ parent: 2
- proto: VendingMachineSecDrobe
entities:
- uid: 9657
@@ -221421,11 +223489,6 @@ entities:
- type: Transform
pos: -60.5,-33.5
parent: 2
- - uid: 11226
- components:
- - type: Transform
- pos: -17.5,37.5
- parent: 2
- uid: 11342
components:
- type: Transform
@@ -221441,6 +223504,11 @@ entities:
- type: Transform
pos: 54.5,-37.5
parent: 2
+ - uid: 15716
+ components:
+ - type: Transform
+ pos: -18.5,37.5
+ parent: 2
- uid: 18138
components:
- type: Transform
@@ -221473,6 +223541,11 @@ entities:
- type: Transform
pos: -80.5,5.5
parent: 2
+ - uid: 39673
+ components:
+ - type: Transform
+ pos: 69.5,-7.5
+ parent: 2
- proto: VendingMachineVendomat
entities:
- uid: 4542
@@ -221507,10 +223580,10 @@ entities:
parent: 2
- proto: VendingMachineWinter
entities:
- - uid: 5160
+ - uid: 39616
components:
- type: Transform
- pos: 54.5,-11.5
+ pos: 53.5,-7.5
parent: 2
- proto: VendingMachineYouTool
entities:
@@ -223530,11 +225603,6 @@ entities:
- type: Transform
pos: 69.5,-28.5
parent: 2
- - uid: 2919
- components:
- - type: Transform
- pos: 71.5,-25.5
- parent: 2
- uid: 3003
components:
- type: Transform
@@ -223837,11 +225905,6 @@ entities:
rot: 3.141592653589793 rad
pos: 29.5,59.5
parent: 2
- - uid: 3436
- components:
- - type: Transform
- pos: 73.5,-22.5
- parent: 2
- uid: 3437
components:
- type: Transform
@@ -224925,11 +226988,6 @@ entities:
- type: Transform
pos: -92.5,10.5
parent: 2
- - uid: 5026
- components:
- - type: Transform
- pos: 77.5,-22.5
- parent: 2
- uid: 5027
components:
- type: Transform
@@ -226050,6 +228108,11 @@ entities:
- type: Transform
pos: 75.5,28.5
parent: 2
+ - uid: 8396
+ components:
+ - type: Transform
+ pos: -14.5,43.5
+ parent: 2
- uid: 8440
components:
- type: Transform
@@ -229485,12 +231548,6 @@ entities:
- type: Transform
pos: -40.5,-8.5
parent: 2
- - uid: 19227
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 81.5,-4.5
- parent: 2
- uid: 19230
components:
- type: Transform
@@ -231521,6 +233578,12 @@ entities:
rot: 1.5707963267948966 rad
pos: 30.5,58.5
parent: 2
+ - uid: 27736
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 86.5,-3.5
+ parent: 2
- uid: 27757
components:
- type: Transform
@@ -231672,6 +233735,11 @@ entities:
- type: Transform
pos: 55.5,40.5
parent: 2
+ - uid: 28624
+ components:
+ - type: Transform
+ pos: 78.5,-26.5
+ parent: 2
- uid: 28641
components:
- type: Transform
@@ -232709,6 +234777,11 @@ entities:
rot: -1.5707963267948966 rad
pos: -27.5,22.5
parent: 2
+ - uid: 34679
+ components:
+ - type: Transform
+ pos: 72.5,-26.5
+ parent: 2
- uid: 34715
components:
- type: Transform
@@ -232930,6 +235003,27 @@ entities:
rot: 1.5707963267948966 rad
pos: 85.5,4.5
parent: 2
+ - uid: 39611
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 87.5,-3.5
+ parent: 2
+ - uid: 39734
+ components:
+ - type: Transform
+ pos: 73.5,-26.5
+ parent: 2
+ - uid: 39735
+ components:
+ - type: Transform
+ pos: 73.5,-22.5
+ parent: 2
+ - uid: 39736
+ components:
+ - type: Transform
+ pos: 77.5,-22.5
+ parent: 2
- proto: WallReinforcedDiagonal
entities:
- uid: 22062
@@ -232946,6 +235040,11 @@ entities:
parent: 2
- proto: WallReinforcedRust
entities:
+ - uid: 754
+ components:
+ - type: Transform
+ pos: 77.5,-26.5
+ parent: 2
- uid: 1474
components:
- type: Transform
@@ -233370,6 +235469,11 @@ entities:
rot: 3.141592653589793 rad
pos: 63.5,49.5
parent: 2
+ - uid: 11966
+ components:
+ - type: Transform
+ pos: 78.5,-25.5
+ parent: 2
- uid: 12588
components:
- type: Transform
@@ -233423,6 +235527,11 @@ entities:
- type: Transform
pos: -101.5,55.5
parent: 2
+ - uid: 14116
+ components:
+ - type: Transform
+ pos: 78.5,-24.5
+ parent: 2
- uid: 16660
components:
- type: Transform
@@ -233514,11 +235623,6 @@ entities:
- type: Transform
pos: 90.5,-9.5
parent: 2
- - uid: 18572
- components:
- - type: Transform
- pos: 77.5,-23.5
- parent: 2
- uid: 18633
components:
- type: Transform
@@ -235830,6 +237934,36 @@ entities:
- type: Transform
pos: -96.5,54.5
parent: 2
+ - uid: 39601
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 87.5,-7.5
+ parent: 2
+ - uid: 39602
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 87.5,-6.5
+ parent: 2
+ - uid: 39606
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 87.5,-8.5
+ parent: 2
+ - uid: 39612
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 87.5,-5.5
+ parent: 2
+ - uid: 39613
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 87.5,-4.5
+ parent: 2
- proto: WallSolid
entities:
- uid: 6
@@ -239166,11 +241300,6 @@ entities:
- type: Transform
pos: 76.5,-7.5
parent: 2
- - uid: 4004
- components:
- - type: Transform
- pos: 75.5,-8.5
- parent: 2
- uid: 4011
components:
- type: Transform
@@ -242321,6 +244450,12 @@ entities:
- type: Transform
pos: 75.5,-6.5
parent: 2
+ - uid: 35713
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 76.5,-9.5
+ parent: 2
- uid: 35752
components:
- type: Transform
@@ -242332,6 +244467,11 @@ entities:
- type: Transform
pos: 69.5,-12.5
parent: 2
+ - uid: 39604
+ components:
+ - type: Transform
+ pos: 53.5,-8.5
+ parent: 2
- proto: WallSolidDiagonal
entities:
- uid: 1893
@@ -243546,11 +245686,6 @@ entities:
- type: Transform
pos: -40.5,24.5
parent: 2
- - uid: 20946
- components:
- - type: Transform
- pos: 76.5,-9.5
- parent: 2
- uid: 20949
components:
- type: Transform
@@ -243571,6 +245706,11 @@ entities:
- type: Transform
pos: 43.5,-30.5
parent: 2
+ - uid: 35712
+ components:
+ - type: Transform
+ pos: 76.5,-10.5
+ parent: 2
- uid: 39322
components:
- type: Transform
@@ -244173,6 +246313,17 @@ entities:
rot: 3.141592653589793 rad
pos: 84.5,-11.5
parent: 2
+ - uid: 39596
+ components:
+ - type: Transform
+ pos: 55.5,-11.5
+ parent: 2
+ - uid: 39615
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 55.5,-7.5
+ parent: 2
- proto: WindoorAssembly
entities:
- uid: 32364
@@ -244303,12 +246454,6 @@ entities:
- type: Transform
pos: 1.5,-20.5
parent: 2
- - uid: 20310
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 3.5,-24.5
- parent: 2
- uid: 23006
components:
- type: Transform
@@ -244348,12 +246493,6 @@ entities:
- DoorStatus: Close
27418:
- DoorStatus: Close
- - uid: 38004
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -0.5,42.5
- parent: 2
- uid: 38024
components:
- type: Transform
@@ -246266,6 +248405,35 @@ entities:
rot: -1.5707963267948966 rad
pos: -44.5,64.5
parent: 2
+ - uid: 39595
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 53.5,-7.5
+ parent: 2
+ - uid: 39597
+ components:
+ - type: Transform
+ pos: 54.5,-11.5
+ parent: 2
+ - uid: 39603
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 54.5,-7.5
+ parent: 2
+ - uid: 39620
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 56.5,-11.5
+ parent: 2
+ - uid: 39624
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 56.5,-7.5
+ parent: 2
- proto: WindowFrostedDirectional
entities:
- uid: 281
@@ -246344,12 +248512,6 @@ entities:
- type: Transform
pos: 3.5,-11.5
parent: 2
- - uid: 1689
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 0.5,53.5
- parent: 2
- uid: 1773
components:
- type: Transform
@@ -246474,12 +248636,6 @@ entities:
rot: 1.5707963267948966 rad
pos: -18.5,22.5
parent: 2
- - uid: 2586
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 0.5,50.5
- parent: 2
- uid: 2630
components:
- type: Transform
@@ -247041,12 +249197,6 @@ entities:
rot: -1.5707963267948966 rad
pos: -13.5,71.5
parent: 2
- - uid: 7664
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 0.5,52.5
- parent: 2
- uid: 7952
components:
- type: Transform
@@ -247059,12 +249209,6 @@ entities:
rot: 1.5707963267948966 rad
pos: -23.5,-37.5
parent: 2
- - uid: 8474
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 2.5,51.5
- parent: 2
- uid: 8816
components:
- type: Transform
@@ -247222,30 +249366,12 @@ entities:
rot: -1.5707963267948966 rad
pos: 3.5,10.5
parent: 2
- - uid: 15320
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 0.5,51.5
- parent: 2
- - uid: 15716
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 0.5,55.5
- parent: 2
- uid: 15878
components:
- type: Transform
rot: 1.5707963267948966 rad
pos: -2.5,60.5
parent: 2
- - uid: 17496
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 0.5,54.5
- parent: 2
- uid: 18434
components:
- type: Transform
@@ -247270,17 +249396,6 @@ entities:
rot: -1.5707963267948966 rad
pos: -58.5,4.5
parent: 2
- - uid: 19395
- components:
- - type: Transform
- pos: 1.5,56.5
- parent: 2
- - uid: 19454
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 1.5,49.5
- parent: 2
- uid: 19633
components:
- type: Transform
@@ -247382,12 +249497,6 @@ entities:
rot: -1.5707963267948966 rad
pos: -13.5,70.5
parent: 2
- - uid: 19936
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 2.5,50.5
- parent: 2
- uid: 20012
components:
- type: Transform
@@ -247584,12 +249693,6 @@ entities:
- type: Transform
pos: 71.5,13.5
parent: 2
- - uid: 25965
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 2.5,55.5
- parent: 2
- uid: 26585
components:
- type: Transform
@@ -247655,18 +249758,6 @@ entities:
- type: Transform
pos: -10.5,-53.5
parent: 2
- - uid: 28624
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 2.5,53.5
- parent: 2
- - uid: 28625
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 2.5,54.5
- parent: 2
- uid: 28664
components:
- type: Transform
diff --git a/Resources/Migrations/deltaMigrations.yml b/Resources/Migrations/deltaMigrations.yml
index 5081d04dc5d..ad30788a9a5 100644
--- a/Resources/Migrations/deltaMigrations.yml
+++ b/Resources/Migrations/deltaMigrations.yml
@@ -99,3 +99,7 @@ SpaceTickSpawnerNPC: SpaceTickSpawner
# 2024-03-07
LockableButtonBrig: LockableButtonSecurity
SignDirectionalICU: SignDirectionalIcu
+
+# 2024-03-29
+#Remove whenever holoparasite isn't broken I suppose
+MagicalLamp: Lamp
diff --git a/Resources/Prototypes/DeltaV/StatusEffects/job.yml b/Resources/Prototypes/DeltaV/StatusEffects/job.yml
index 4b61fd46d7d..949ac6a99e3 100644
--- a/Resources/Prototypes/DeltaV/StatusEffects/job.yml
+++ b/Resources/Prototypes/DeltaV/StatusEffects/job.yml
@@ -2,5 +2,5 @@
parent: JobIcon
id: JobIconMedicalBorg
icon:
- sprite: DeltaV/Interface/Misc/job_icons.rsi
+ sprite: /Textures/DeltaV/Interface/Misc/job_icons.rsi
state: MedicalBorg
diff --git a/Resources/Prototypes/Nyanotrasen/Entities/Markers/Spawners/Random/books.yml b/Resources/Prototypes/Nyanotrasen/Entities/Markers/Spawners/Random/books.yml
index 28340ead40a..59e3690b6bc 100644
--- a/Resources/Prototypes/Nyanotrasen/Entities/Markers/Spawners/Random/books.yml
+++ b/Resources/Prototypes/Nyanotrasen/Entities/Markers/Spawners/Random/books.yml
@@ -45,6 +45,7 @@
- BookMap
- BookJourney
- BookInspiration
+ - BookJanitorTale
# Guidebook Books
- BookSpaceEncyclopedia
- BookTheBookOfControl
diff --git a/Resources/Prototypes/Nyanotrasen/Entities/Markers/Spawners/Random/boxes.yml b/Resources/Prototypes/Nyanotrasen/Entities/Markers/Spawners/Random/boxes.yml
index a75f31cf0f7..181bacca45e 100644
--- a/Resources/Prototypes/Nyanotrasen/Entities/Markers/Spawners/Random/boxes.yml
+++ b/Resources/Prototypes/Nyanotrasen/Entities/Markers/Spawners/Random/boxes.yml
@@ -36,6 +36,7 @@
- BoxCandle
- BoxCandleSmall
- BoxDarts
+ - BoxCartridgeBB
chance: 0.7
rarePrototypes:
- BoxHugHealing
@@ -49,6 +50,7 @@
- PresentRandom
- BoxHolyWater
- MysteryFigureBox
+ - BoxCleanerGrenades
rareChance: 0.05
@@ -100,6 +102,8 @@
- BoxMagazineCaselessRifleRubber
- BoxMagazineUniversalMagnumPractice
- BoxMagazineUniversalMagnumRubber
+ - MagazineBoxSpecialRubber
+ - MagazineBoxSpecialPractice
chance: 0.15
rarePrototypes:
- BoxMagazinePistolCaselessRifle
@@ -121,4 +125,8 @@
- BoxShellSoulbreaker
- BoxMagazineUniversalMagnum
- BoxSpeedLoaderLightRifle
+ - MagazineBoxSpecial
+ - MagazineBoxSpecialIncendiary
+ - MagazineBoxSpecialUranium
+ - MagazineBoxSpecialMindbreaker
rareChance: 0.015
diff --git a/Resources/Prototypes/Nyanotrasen/Entities/Markers/Spawners/Random/devices.yml b/Resources/Prototypes/Nyanotrasen/Entities/Markers/Spawners/Random/devices.yml
index c8efdbdc8cf..abd4d86a1ef 100644
--- a/Resources/Prototypes/Nyanotrasen/Entities/Markers/Spawners/Random/devices.yml
+++ b/Resources/Prototypes/Nyanotrasen/Entities/Markers/Spawners/Random/devices.yml
@@ -1,7 +1,7 @@
- type: entity
parent: MarkerBase
id: RandomBoards
- name: random machine board spawner
+ name: random device & board spawner
components:
- type: Sprite
layers:
@@ -71,6 +71,16 @@
- HotplateMachineCircuitboard
- ElectricGrillMachineCircuitboard
- FatExtractorMachineCircuitboard
+ - SpaceHeaterMachineCircuitBoard
+ - StationMapCircuitboard
+ - Igniter
+ - IntercomElectronics
+ - DoorRemoteFirefight
+ - RadiationCollectorFlatpack
+ - ContainmentFieldGeneratorFlatpack
+ - SolarAssemblyFlatpack
+ - StationBeaconPart
+ - HandheldStationMap
chance: 0.8
rarePrototypes:
- TraversalDistorterMachineCircuitboard
@@ -107,4 +117,26 @@
- ShockCollar
- GlimmerMonitorCartridge
- PotatoAIChip
+ - CargoTelepadMachineCircuitboard
+ - FlatpackerMachineCircuitboard
+ - OreProcessorIndustrialMachineCircuitboard
+ - TurboItemRechargerCircuitboard
+ - PowerCageRechargerCircuitboard
+ - HellfireHeaterMachineCircuitBoard
+ - HellfireFreezerMachineCircuitBoard
+ - BiofabricatorMachineCircuitboard
+ - SalvageExpeditionsComputerCircuitboard
+ - RadarConsoleCircuitboard
+ - RipleyCentralElectronics
+ - RipleyPeripheralsElectronics
+ - HamtrCentralElectronics
+ - HamtrPeripheralsElectronics
+ - HonkerCentralElectronics
+ - HonkerPeripheralsElectronics
+ - HonkerTargetingElectronics
+ - RemoteSignallerAdvanced
+ - SignalTimerElectronics
+ - LogProbeCartridge
+ - HoloprojectorField
+ - DeviceQuantumSpinInverter
rareChance: 0.25
diff --git a/Resources/Prototypes/Nyanotrasen/Entities/Markers/Spawners/Random/hats.yml b/Resources/Prototypes/Nyanotrasen/Entities/Markers/Spawners/Random/hats.yml
index b9def15132e..f0dd4709034 100644
--- a/Resources/Prototypes/Nyanotrasen/Entities/Markers/Spawners/Random/hats.yml
+++ b/Resources/Prototypes/Nyanotrasen/Entities/Markers/Spawners/Random/hats.yml
@@ -42,6 +42,18 @@
- ClothingHeadCage
- ClothingHeadHelmetKendoMen
- ClothingHeadBandMerc
+ - ClothingHeadHatCowboyWhite
+ - ClothingHeadHatCowboyGrey
+ - ClothingHeadHatCowboyBrown
+ - ClothingHeadHatBrownFlatcap
+ - ClothingHeadHatGreyFlatcap
+ - ClothingHeadHatPartyRed
+ - ClothingHeadHatPartyYellow
+ - ClothingHeadHatPartyGreen
+ - ClothingHeadHatPartyBlue
+ - ClothingHeadHatWatermelon
+ - WaterDropletHat
+ - ClothingHeadHatRedRacoon
rareChance: 0.03
prototypes:
- ClothingHeadHatAnimalCat
@@ -98,5 +110,13 @@
- ClothingHeadHatFlatBrown
- ClothingHeadTinfoil
- ClothingHeadHatStrawHat
+ - ClothingHeadHatCowboyBountyHunter
+ - ClothingHeadHatCowboyRed
+ - ClothingHeadHatCowboyBlack
+ - ClothingHeadHatGladiator
+ - ClothingHeadHatMagician
+ - ClothingHeadHatHetmanHat
+ - ClothingHeadHatTacticalMaidHeadband
+ - ClothingHeadHatPirateTricord
chance: 0.5
offset: 0.2
diff --git a/Resources/Prototypes/Nyanotrasen/Entities/Markers/Spawners/Random/machineparts.yml b/Resources/Prototypes/Nyanotrasen/Entities/Markers/Spawners/Random/machineparts.yml
index 7785e5aaa82..61a99faa2f1 100644
--- a/Resources/Prototypes/Nyanotrasen/Entities/Markers/Spawners/Random/machineparts.yml
+++ b/Resources/Prototypes/Nyanotrasen/Entities/Markers/Spawners/Random/machineparts.yml
@@ -36,5 +36,5 @@
- MatterBinStockPart
- CrateMaterialSteel
- CrateMaterialGlass
- chance: 0.45
+ chance: 0.50
offset: 0.0
diff --git a/Resources/Prototypes/Nyanotrasen/Entities/Markers/Spawners/Random/seeds.yml b/Resources/Prototypes/Nyanotrasen/Entities/Markers/Spawners/Random/seeds.yml
index 9f183dcefbd..0c3370890c8 100644
--- a/Resources/Prototypes/Nyanotrasen/Entities/Markers/Spawners/Random/seeds.yml
+++ b/Resources/Prototypes/Nyanotrasen/Entities/Markers/Spawners/Random/seeds.yml
@@ -48,6 +48,7 @@
- PeaSeeds
- PumpkinSeeds
- CottonSeeds
+ - LilySeeds
chance: 0.95
offset: 0.0
rarePrototypes:
@@ -64,4 +65,6 @@
- LemoonSeeds
- SteelcapSeeds
- KoibeanSeeds
+ - SpacemansTrumpetSeeds
+ - LaughinPeaSeeds
rareChance: 0.05
diff --git a/Resources/Prototypes/Nyanotrasen/Entities/Objects/Devices/CircuitBoards/production.yml b/Resources/Prototypes/Nyanotrasen/Entities/Objects/Devices/CircuitBoards/production.yml
index 0e4c262b543..fc40ea16397 100644
--- a/Resources/Prototypes/Nyanotrasen/Entities/Objects/Devices/CircuitBoards/production.yml
+++ b/Resources/Prototypes/Nyanotrasen/Entities/Objects/Devices/CircuitBoards/production.yml
@@ -65,3 +65,19 @@
- type: ReverseEngineering
recipes:
- DeepFryerMachineCircuitboard
+
+- type: entity
+ id: MailTeleporterMachineCircuitboard
+ parent: BaseMachineCircuitboard
+ name: mail teleporter machine board
+ components:
+ - type: Sprite
+ state: supply
+ - type: MachineBoard
+ prototype: MailTeleporter
+ requirements:
+ Capacitor: 1
+ MatterBin: 1
+ materialRequirements:
+ Steel: 4
+ Cable: 4
diff --git a/Resources/Prototypes/Nyanotrasen/Entities/Structures/Machines/mailTeleporter.yml b/Resources/Prototypes/Nyanotrasen/Entities/Structures/Machines/mailTeleporter.yml
index 9bcaef52bbf..6430e94105a 100644
--- a/Resources/Prototypes/Nyanotrasen/Entities/Structures/Machines/mailTeleporter.yml
+++ b/Resources/Prototypes/Nyanotrasen/Entities/Structures/Machines/mailTeleporter.yml
@@ -1,6 +1,6 @@
- type: entity
id: MailTeleporter
- parent: BaseStructureDynamic
+ parent: [ BaseMachinePowered, ConstructibleMachine ]
name: mail teleporter
description: Teleports mail addressed to the crew of this station.
components:
@@ -37,11 +37,11 @@
!type:DamageTrigger
damage: 75
behaviors:
- - !type:SpawnEntitiesBehavior
- spawn:
- SheetSteel1:
- min: 1
- max: 1
+ - !type:PlaySoundBehavior
+ sound:
+ collection: MetalGlassBreak
+ - !type:ChangeConstructionNodeBehavior
+ node: machineFrame
- !type:DoActsBehavior
acts: ["Destruction"]
- type: ApcPowerReceiver
@@ -56,3 +56,5 @@
True: {visible: true}
False: {visible: false}
- type: PowerSwitch
+ - type: Machine
+ board: MailTeleporterMachineCircuitboard
diff --git a/Resources/Prototypes/Nyanotrasen/StatusEffects/job.yml b/Resources/Prototypes/Nyanotrasen/StatusEffects/job.yml
index 64a597d590e..943660199ba 100644
--- a/Resources/Prototypes/Nyanotrasen/StatusEffects/job.yml
+++ b/Resources/Prototypes/Nyanotrasen/StatusEffects/job.yml
@@ -2,33 +2,33 @@
parent: JobIcon
id: JobIconGladiator
icon:
- sprite: DeltaV/Interface/Misc/job_icons.rsi
+ sprite: /Textures/DeltaV/Interface/Misc/job_icons.rsi
state: nyanoGladiator
- type: statusIcon
parent: JobIcon
id: JobIconPrisonGuard
icon:
- sprite: DeltaV/Interface/Misc/job_icons.rsi
+ sprite: /Textures/DeltaV/Interface/Misc/job_icons.rsi
state: nyanoPrisonGuard
- type: statusIcon
parent: JobIcon
id: JobIconMailCarrier
icon:
- sprite: DeltaV/Interface/Misc/job_icons.rsi
+ sprite: /Textures/DeltaV/Interface/Misc/job_icons.rsi
state: nyanoMailCarrier
- type: statusIcon
parent: JobIcon
id: JobIconMartialArtist
icon:
- sprite: DeltaV/Interface/Misc/job_icons.rsi
+ sprite: /Textures/DeltaV/Interface/Misc/job_icons.rsi
state: nyanoMartialArtist
- type: statusIcon
parent: JobIcon
id: JobIconForensicMantis
icon:
- sprite: DeltaV/Interface/Misc/job_icons.rsi
+ sprite: /Textures/DeltaV/Interface/Misc/job_icons.rsi
state: nyanoMantis
diff --git a/Resources/Prototypes/Objectives/objectiveGroups.yml b/Resources/Prototypes/Objectives/objectiveGroups.yml
index fba2c4cc172..f00641702a2 100644
--- a/Resources/Prototypes/Objectives/objectiveGroups.yml
+++ b/Resources/Prototypes/Objectives/objectiveGroups.yml
@@ -80,7 +80,6 @@
TechnologyDiskStealCollectionObjective: 1 #rnd
FigurineStealCollectionObjective: 0.3 #service
IDCardsStealCollectionObjective: 1
- CannabisStealCollectionObjective: 1
LAMPStealCollectionObjective: 2 #only for moth
- type: weightedRandom