From f67f7034b936125b2ae389d57a9fd8a3fc38c3cc Mon Sep 17 00:00:00 2001 From: deltanedas <39013340+deltanedas@users.noreply.github.com> Date: Sat, 27 Jul 2024 12:08:12 +0000 Subject: [PATCH 01/89] fix ninja not showing in round end (#30405) fix ninja not showing in round ned Co-authored-by: deltanedas <@deltanedas:kde.org> --- Resources/Prototypes/GameRules/events.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Resources/Prototypes/GameRules/events.yml b/Resources/Prototypes/GameRules/events.yml index 7784b72556..73b2920ca7 100644 --- a/Resources/Prototypes/GameRules/events.yml +++ b/Resources/Prototypes/GameRules/events.yml @@ -145,7 +145,7 @@ components: - type: StationEvent weight: 6 - duration: 1 + duration: null earliestStart: 30 reoccurrenceDelay: 20 minimumPlayers: 30 From f49fc5a89c4b7cc8b3ed2bee69ae091f62dea1a3 Mon Sep 17 00:00:00 2001 From: Errant <35878406+Errant-4@users.noreply.github.com> Date: Sat, 27 Jul 2024 16:58:19 +0200 Subject: [PATCH 02/89] Do not duplicate Job Greeting on antag selection (#30407) Silence MindAddRoles in AntagSelectionSystem --- Content.Server/Antag/AntagSelectionSystem.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Content.Server/Antag/AntagSelectionSystem.cs b/Content.Server/Antag/AntagSelectionSystem.cs index d2bc26f20d..c9ef237474 100644 --- a/Content.Server/Antag/AntagSelectionSystem.cs +++ b/Content.Server/Antag/AntagSelectionSystem.cs @@ -336,7 +336,7 @@ public sealed partial class AntagSelectionSystem : GameRuleSystem Date: Sun, 28 Jul 2024 01:08:49 +1000 Subject: [PATCH 03/89] Some plant mutations (#28993) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Some new plants mutations * glasstle inhand * gapple trico increase ↑ 1-10 to 3-16 * replace trico with doc delight --- Resources/Locale/en-US/seeds/seeds.ftl | 6 + .../Objects/Consumable/Food/produce.yml | 116 ++++++++++++++++++ .../Objects/Specific/Hydroponics/seeds.yml | 31 +++++ Resources/Prototypes/Hydroponics/seeds.yml | 78 ++++++++++++ .../Hydroponics/glasstle.rsi/dead.png | Bin 0 -> 867 bytes .../Hydroponics/glasstle.rsi/harvest.png | Bin 0 -> 1011 bytes .../Hydroponics/glasstle.rsi/meta.json | 40 ++++++ .../glasstle.rsi/produce-inhand-left.png | Bin 0 -> 411 bytes .../glasstle.rsi/produce-inhand-right.png | Bin 0 -> 412 bytes .../Hydroponics/glasstle.rsi/produce.png | Bin 0 -> 835 bytes .../Hydroponics/glasstle.rsi/seed.png | Bin 0 -> 423 bytes .../Hydroponics/glasstle.rsi/stage-1.png | Bin 0 -> 581 bytes .../Hydroponics/glasstle.rsi/stage-2.png | Bin 0 -> 688 bytes .../Hydroponics/glasstle.rsi/stage-3.png | Bin 0 -> 817 bytes .../Hydroponics/golden_apple.rsi/dead.png | Bin 0 -> 390 bytes .../Hydroponics/golden_apple.rsi/harvest.png | Bin 0 -> 688 bytes .../Hydroponics/golden_apple.rsi/meta.json | 41 +++++++ .../Hydroponics/golden_apple.rsi/produce.png | Bin 0 -> 478 bytes .../Hydroponics/golden_apple.rsi/seed.png | Bin 0 -> 396 bytes .../Hydroponics/golden_apple.rsi/stage-1.png | Bin 0 -> 166 bytes .../Hydroponics/golden_apple.rsi/stage-2.png | Bin 0 -> 183 bytes .../Hydroponics/golden_apple.rsi/stage-3.png | Bin 0 -> 215 bytes .../Hydroponics/golden_apple.rsi/stage-4.png | Bin 0 -> 286 bytes .../Hydroponics/golden_apple.rsi/stage-5.png | Bin 0 -> 454 bytes .../Hydroponics/golden_apple.rsi/stage-6.png | Bin 0 -> 573 bytes .../Hydroponics/papercane.rsi/dead.png | Bin 0 -> 314 bytes .../Hydroponics/papercane.rsi/harvest.png | Bin 0 -> 296 bytes .../Hydroponics/papercane.rsi/meta.json | 32 +++++ .../Hydroponics/papercane.rsi/produce.png | Bin 0 -> 401 bytes .../Hydroponics/papercane.rsi/seed.png | Bin 0 -> 371 bytes .../Hydroponics/papercane.rsi/stage-1.png | Bin 0 -> 143 bytes .../Hydroponics/papercane.rsi/stage-2.png | Bin 0 -> 186 bytes .../Hydroponics/papercane.rsi/stage-3.png | Bin 0 -> 210 bytes 33 files changed, 344 insertions(+) create mode 100644 Resources/Textures/Objects/Specific/Hydroponics/glasstle.rsi/dead.png create mode 100644 Resources/Textures/Objects/Specific/Hydroponics/glasstle.rsi/harvest.png create mode 100644 Resources/Textures/Objects/Specific/Hydroponics/glasstle.rsi/meta.json create mode 100644 Resources/Textures/Objects/Specific/Hydroponics/glasstle.rsi/produce-inhand-left.png create mode 100644 Resources/Textures/Objects/Specific/Hydroponics/glasstle.rsi/produce-inhand-right.png create mode 100644 Resources/Textures/Objects/Specific/Hydroponics/glasstle.rsi/produce.png create mode 100644 Resources/Textures/Objects/Specific/Hydroponics/glasstle.rsi/seed.png create mode 100644 Resources/Textures/Objects/Specific/Hydroponics/glasstle.rsi/stage-1.png create mode 100644 Resources/Textures/Objects/Specific/Hydroponics/glasstle.rsi/stage-2.png create mode 100644 Resources/Textures/Objects/Specific/Hydroponics/glasstle.rsi/stage-3.png create mode 100644 Resources/Textures/Objects/Specific/Hydroponics/golden_apple.rsi/dead.png create mode 100644 Resources/Textures/Objects/Specific/Hydroponics/golden_apple.rsi/harvest.png create mode 100644 Resources/Textures/Objects/Specific/Hydroponics/golden_apple.rsi/meta.json create mode 100644 Resources/Textures/Objects/Specific/Hydroponics/golden_apple.rsi/produce.png create mode 100644 Resources/Textures/Objects/Specific/Hydroponics/golden_apple.rsi/seed.png create mode 100644 Resources/Textures/Objects/Specific/Hydroponics/golden_apple.rsi/stage-1.png create mode 100644 Resources/Textures/Objects/Specific/Hydroponics/golden_apple.rsi/stage-2.png create mode 100644 Resources/Textures/Objects/Specific/Hydroponics/golden_apple.rsi/stage-3.png create mode 100644 Resources/Textures/Objects/Specific/Hydroponics/golden_apple.rsi/stage-4.png create mode 100644 Resources/Textures/Objects/Specific/Hydroponics/golden_apple.rsi/stage-5.png create mode 100644 Resources/Textures/Objects/Specific/Hydroponics/golden_apple.rsi/stage-6.png create mode 100644 Resources/Textures/Objects/Specific/Hydroponics/papercane.rsi/dead.png create mode 100644 Resources/Textures/Objects/Specific/Hydroponics/papercane.rsi/harvest.png create mode 100644 Resources/Textures/Objects/Specific/Hydroponics/papercane.rsi/meta.json create mode 100644 Resources/Textures/Objects/Specific/Hydroponics/papercane.rsi/produce.png create mode 100644 Resources/Textures/Objects/Specific/Hydroponics/papercane.rsi/seed.png create mode 100644 Resources/Textures/Objects/Specific/Hydroponics/papercane.rsi/stage-1.png create mode 100644 Resources/Textures/Objects/Specific/Hydroponics/papercane.rsi/stage-2.png create mode 100644 Resources/Textures/Objects/Specific/Hydroponics/papercane.rsi/stage-3.png diff --git a/Resources/Locale/en-US/seeds/seeds.ftl b/Resources/Locale/en-US/seeds/seeds.ftl index 2dc0b88c74..f98118c23e 100644 --- a/Resources/Locale/en-US/seeds/seeds.ftl +++ b/Resources/Locale/en-US/seeds/seeds.ftl @@ -32,6 +32,8 @@ seeds-potato-name = potato seeds-potato-display-name = potatoes seeds-sugarcane-name = sugarcane seeds-sugarcane-display-name = sugarcanes +seeds-papercane-name = papercane +seeds-papercane-display-name = papercanes seeds-towercap-name = tower cap seeds-towercap-display-name = tower caps seeds-steelcap-name = steel cap @@ -48,6 +50,8 @@ seeds-eggplant-name = eggplant seeds-eggplant-display-name = eggplants seeds-apple-name = apple seeds-apple-display-name = apple tree +seeds-goldenapple-name = golden apple +seeds-goldenapple-display-name = golden apple tree seeds-corn-name = corn seeds-corn-display-name = ears of corn seeds-onion-name = onion @@ -88,6 +92,8 @@ seeds-ambrosiadeus-name = ambrosia deus seeds-ambrosiadeus-display-name = ambrosia deus seeds-galaxythistle-name = galaxythistle seeds-galaxythistle-display-name = galaxythistle +seeds-glasstle-name = glasstle +seeds-glasstle-display-name = glasstle seeds-flyamanita-name = fly amanita seeds-flyamanita-display-name = fly amanita seeds-gatfruit-name = gatfruit diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Food/produce.yml b/Resources/Prototypes/Entities/Objects/Consumable/Food/produce.yml index b2375a2dbf..75ed63a4ce 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Food/produce.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Food/produce.yml @@ -95,6 +95,21 @@ - type: Produce seedId: sugarcane +- type: entity + name: papercane roll + description: Why do we even need to grow paper? + id: Papercane + parent: ProduceBase + components: + - type: Sprite + sprite: Objects/Specific/Hydroponics/papercane.rsi + - type: SolutionContainerManager + - type: Produce + seedId: papercane + - type: Log + spawnedPrototype: SheetPaper1 + spawnCount: 2 + - type: entity parent: FoodProduceBase id: FoodLaughinPeaPod @@ -869,6 +884,42 @@ tags: - Fruit +- type: entity + name: golden apple + parent: FoodProduceBase + id: FoodGoldenApple + description: It should be shaped like a cube, shouldn't it? + components: + - type: FlavorProfile + flavors: + - apple + - metallic + - type: SolutionContainerManager + solutions: + food: + maxVol: 30 + reagents: + - ReagentId: Nutriment + Quantity: 10 + - ReagentId: Vitamin + Quantity: 4 + - ReagentId: DoctorsDelight + Quantity: 13 + - type: Sprite + sprite: Objects/Specific/Hydroponics/golden_apple.rsi + - type: Produce + seedId: goldenApple + - type: Extractable + juiceSolution: + reagents: + - ReagentId: JuiceApple + Quantity: 10 + - ReagentId: Gold + Quantity: 10 + - type: Tag + tags: + - Fruit + - type: entity name: cocoa pod parent: FoodProduceBase @@ -1411,6 +1462,71 @@ - Galaxythistle - Fruit # Probably? +- type: entity + name: glasstle + parent: FoodProduceBase + id: FoodGlasstle + description: A fragile crystal plant with lot of spiky thorns. + components: + - type: Item + size: Small + sprite: Objects/Specific/Hydroponics/glasstle.rsi + heldPrefix: produce + - type: FlavorProfile + flavors: + - sharp + - type: SolutionContainerManager + solutions: + food: + maxVol: 15 + reagents: + - ReagentId: Razorium + Quantity: 15 + - type: Sprite + sprite: Objects/Specific/Hydroponics/glasstle.rsi + - type: Produce + seedId: glasstle + - type: Extractable + grindableSolutionName: food + - type: Damageable + damageContainer: Inorganic + - type: ToolRefinable + refineResult: + - id: SheetGlass1 + - type: Destructible + thresholds: + - trigger: + !type:DamageTrigger + damage: 10 + behaviors: + - !type:PlaySoundBehavior + sound: + collection: GlassBreak + params: + volume: -4 + - !type:SpawnEntitiesBehavior + spawn: + ShardGlass: + min: 1 + max: 1 + - !type:DoActsBehavior + acts: [ "Destruction" ] + - type: DamageOnHit + damage: + types: + Blunt: 10 + - type: MeleeWeapon + wideAnimationRotation: 60 + damage: + types: + Slash: 15 + soundHit: + path: /Audio/Weapons/bladeslice.ogg + - type: Tag + tags: + - Galaxythistle + + - type: entity name: fly amanita parent: FoodProduceBase diff --git a/Resources/Prototypes/Entities/Objects/Specific/Hydroponics/seeds.yml b/Resources/Prototypes/Entities/Objects/Specific/Hydroponics/seeds.yml index abde52d406..5f6cf903aa 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/Hydroponics/seeds.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/Hydroponics/seeds.yml @@ -163,6 +163,16 @@ - type: Sprite sprite: Objects/Specific/Hydroponics/sugarcane.rsi +- type: entity + parent: SeedBase + name: packet of papercane seeds + id: PapercaneSeeds + components: + - type: Seed + seedId: papercane + - type: Sprite + sprite: Objects/Specific/Hydroponics/papercane.rsi + - type: entity parent: SeedBase name: packet of tower cap spores @@ -243,6 +253,16 @@ - type: Sprite sprite: Objects/Specific/Hydroponics/apple.rsi +- type: entity + parent: SeedBase + name: packet of golden apple seeds + id: GoldenAppleSeeds + components: + - type: Seed + seedId: goldenApple + - type: Sprite + sprite: Objects/Specific/Hydroponics/golden_apple.rsi + - type: entity parent: SeedBase name: packet of corn seeds @@ -427,6 +447,17 @@ - type: Sprite sprite: Objects/Specific/Hydroponics/galaxythistle.rsi +- type: entity + parent: SeedBase + name: packet of glasstle seeds + description: "Scars of gloomy nights." + id: GlasstleSeeds + components: + - type: Seed + seedId: glasstle + - type: Sprite + sprite: Objects/Specific/Hydroponics/glasstle.rsi + - type: entity parent: SeedBase name: packet of fly amanita spores diff --git a/Resources/Prototypes/Hydroponics/seeds.yml b/Resources/Prototypes/Hydroponics/seeds.yml index 5aef050fec..65fbf0b91d 100644 --- a/Resources/Prototypes/Hydroponics/seeds.yml +++ b/Resources/Prototypes/Hydroponics/seeds.yml @@ -341,6 +341,8 @@ packetPrototype: SugarcaneSeeds productPrototypes: - Sugarcane + mutationPrototypes: + - papercane harvestRepeat: Repeat lifespan: 60 maturation: 6 @@ -355,6 +357,24 @@ Max: 5 PotencyDivisor: 5 +- type: seed + id: papercane + name: seeds-papercane-name + noun: seeds-noun-seeds + displayName: seeds-papercane-display-name + plantRsi: Objects/Specific/Hydroponics/papercane.rsi + packetPrototype: PapercaneSeeds + productPrototypes: + - Papercane + harvestRepeat: Repeat + lifespan: 60 + maturation: 6 + production: 6 + yield: 3 + potency: 10 + growthStages: 3 + idealHeat: 298 + - type: seed id: towercap name: seeds-towercap-name @@ -625,6 +645,8 @@ packetPrototype: AppleSeeds productPrototypes: - FoodApple + mutationPrototypes: + - goldenApple harvestRepeat: Repeat lifespan: 55 maturation: 6 @@ -642,6 +664,38 @@ Max: 4 PotencyDivisor: 25 +- type: seed + id: goldenApple + name: seeds-goldenapple-name + noun: seeds-noun-seeds + displayName: seeds-goldenapple-display-name + plantRsi: Objects/Specific/Hydroponics/golden_apple.rsi + packetPrototype: GoldenAppleSeeds + productPrototypes: + - FoodGoldenApple + harvestRepeat: Repeat + lifespan: 55 + maturation: 6 + production: 6 + yield: 3 + potency: 10 + idealLight: 6 + waterConsumption: 0.75 + nutrientConsumption: 0.75 + chemicals: + Nutriment: + Min: 1 + Max: 10 + PotencyDivisor: 10 + Vitamin: + Min: 1 + Max: 4 + PotencyDivisor: 25 + DoctorsDelight: + Min: 3 + Max: 13 + PotencyDivisor: 10 + - type: seed id: corn name: seeds-corn-name @@ -1192,6 +1246,8 @@ packetPrototype: GalaxythistleSeeds productPrototypes: - FoodGalaxythistle + mutationPrototypes: + - glasstle lifespan: 25 maturation: 10 production: 3 @@ -1205,6 +1261,28 @@ Max: 25 PotencyDivisor: 4 +- type: seed + id: glasstle + name: seeds-glasstle-name + noun: seeds-noun-seeds + displayName: seeds-glasstle-display-name + plantRsi: Objects/Specific/Hydroponics/glasstle.rsi + packetPrototype: GlasstleSeeds + productPrototypes: + - FoodGlasstle + lifespan: 25 + maturation: 10 + production: 3 + yield: 3 + potency: 10 + growthStages: 3 + waterConsumption: 0.5 + chemicals: + Razorium: + Min: 1 + Max: 25 + PotencyDivisor: 4 + - type: seed id: flyAmanita name: seeds-flyamanita-name diff --git a/Resources/Textures/Objects/Specific/Hydroponics/glasstle.rsi/dead.png b/Resources/Textures/Objects/Specific/Hydroponics/glasstle.rsi/dead.png new file mode 100644 index 0000000000000000000000000000000000000000..fb10912e697abc45db9b07e4c28cd9ae1481086a GIT binary patch literal 867 zcmV-p1DyPcP)EX>4Tx04R}tkv&MmKpe$iQ>7vm2Q!E`WT;Lp6cusQDionYs1;guFuC*#nzSS- zE{=k0!NHHks)LKOt`4q(Aou~|=;Wm6A|?JWDYS_3;J6>}?mh0_0YbCFbgL&0=!R{k zlL;xCTa`ku5DO4_d?D+x z#(9ggUa7P8J^2g6d1Gan>oiA^#3Gg;LxPGr%Ba9bj8=mb3u)R<`1nU$zf3NbTxBqF zET9SrvbZ`1vWQbSa17|AkWmPkL?|s8U8T^Upa>m06kCuYl%j(mI5}L0@LkUun_9XQ z?oGMeckg@O%ew#?8X6iJ8vg~R&4p=m0RV0giofDzNd;~Yit%WOv=Obdxjg)4oskI7 zu@X7H!%bw;YrhiU2BDya{hrTws}oD6HX&!oxk9lNTXzsD z)%b(F)rp;u-m79vn~Txy-A-+y0|0P-Robim{>Eo&y&Ht$>1B#Sv4rtx2mp9~_{`9t z(cR+N5-@0Vg*vV0STbyCqkUpM$6}siv9tlG!6nQmGnCu4EgmUg(CCVji&LyN+uuqJ z8(B&FZ?97Tk>#Fau}YN-%1PRYazg|4dp^5PtsdBN}0K`TA tkVFBz)sfeaCZ&d|t#O1J8X6jh;sbr>+X8RjVl@B&002ovPDHLkV1kfWiWvX^ literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Specific/Hydroponics/glasstle.rsi/harvest.png b/Resources/Textures/Objects/Specific/Hydroponics/glasstle.rsi/harvest.png new file mode 100644 index 0000000000000000000000000000000000000000..924aedcea7a612abb9820c0d27b1b60467e41de5 GIT binary patch literal 1011 zcmVEX>4Tx04R}tkv&MmKpe$iQ>7vm2Q!E`WT;Lp6cusQDionYs1;guFuC*#nzSS- zE{=k0!NHHks)LKOt`4q(Aou~|=;Wm6A|?JWDYS_3;J6>}?mh0_0YbCFbgL&0=!R{k zlL;xCTa`ku5DO4_d?D+x z#(9ggUa7P8J^2g6d1Gan>oiA^#3Gg;LxPGr%Ba9bj8=mb3u)R<`1nU$zf3NbTxBqF zET9Sh;ZX^=N*Yl2zWZ^O$90Cb$a$| z{N}6q+R+aP@samF@AnI^2Y!6^X&-$6c$8Jabo&GV7fy>_J$;D_r$wSXD-0ba)9urT z;2OCn&#?IYfNv*d^qh*8t;ae_05Ev}4&%Ff9Od2si>a;|y%H2kd5rJwQ7GlHTud<^ z4NiOLyM4hyEl+7c~{88=&mW%1y#$%(6YH`gD%UKTqettZWaw$uY zB$q{#Bxf1xO$MD*a-{>dAJVY(eQn##M?+X%K#gkANJ}Z}_MD0_8FaMw!wQxcP`Or@ z_JGO>;6F^sws{vDRi(c-(ju|EfK=rC(HtT>hT<8)@`8=% z#OLH?6dO10HW7E5(g0Hzgm`WN;P~_m;(t*dcbm9voUhpuv!FWHTkklhPK=O^AD^Bn hx7+~-9B{xc_zMY#dEKQCPMH7z002ovPDHLkV1hb-*eC!1 literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Specific/Hydroponics/glasstle.rsi/meta.json b/Resources/Textures/Objects/Specific/Hydroponics/glasstle.rsi/meta.json new file mode 100644 index 0000000000..1359fd7f8c --- /dev/null +++ b/Resources/Textures/Objects/Specific/Hydroponics/glasstle.rsi/meta.json @@ -0,0 +1,40 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from https://github.com/tgstation/tgstation/commit/40d89d11ea4a5cb81d61dc1018b46f4e7d32c62a", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "dead" + }, + { + "name": "harvest" + }, + { + "name": "produce" + }, + { + "name": "seed" + }, + { + "name": "stage-1" + }, + { + "name": "stage-2" + }, + { + "name": "stage-3" + }, + { + "name": "produce-inhand-left", + "directions": 4 + }, + { + "name": "produce-inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Objects/Specific/Hydroponics/glasstle.rsi/produce-inhand-left.png b/Resources/Textures/Objects/Specific/Hydroponics/glasstle.rsi/produce-inhand-left.png new file mode 100644 index 0000000000000000000000000000000000000000..0527f86b93771eab13d20a638beee6530c7c9825 GIT binary patch literal 411 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7TyC=jKx9jP7LeL$-D%zLp@y_Ln`LH zy``Uj$U%bb1N#@5)@6MOZa)Mff=nZ~Kgj;U&=Glu=VVE9<}XIR*mj1SDV%b~JU)r{ zR;r!8F)8i(?zqX%)o1_y{cP1daRntXFj5L@WjGM@RyBIbrdZ9NmT9|#Cg}!6uG(8O zKRN39F}2qPmpVfgo8#nn-;}t1`DxynuO$cb%#JO%?!JaAvVC%2@8(ENhc#T1KjrwI zOEcLYNUPZYHtmM%19po!`4T_pZ52;gdWu0nb*D`gf5rbFF28L4mfqJ&j>=ru$Hd^j z{^tDu?t8wywt>E09y|Y&@zEaqzadK(t`h_*e)~(NU`SB_3%>uRSY7hs5 z$VFMJp8U7+`Nnres6YJV|I!(6WLGR@2>nzqt5(gPwR*|Rock~DHER9b&$qmqeb%WD z((h$gX#c-{G2(qgcI4ixpLfi?dK Bw_^YR literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Specific/Hydroponics/glasstle.rsi/produce-inhand-right.png b/Resources/Textures/Objects/Specific/Hydroponics/glasstle.rsi/produce-inhand-right.png new file mode 100644 index 0000000000000000000000000000000000000000..cd3cc3216e9e530e9f73fc500ecc37914ea16d25 GIT binary patch literal 412 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7TyC=jKx9jP7LeL$-D%z!#rIaLn`LH zy|pm!P=E;A1Nkp9t;_ln+$uUEgG?j0Kgh0NIHHr+ma^-hNo_;-I_HL*O)UMAY|9MN zUzyE}$lP`5TiO5R9tscV6!%-(JGg+s{~Kv5Rc5ts3b1Bmh*u3N_f5UHSLce~qDqa~ zOTDUJzv7?%Sn~EuiRL)@eO@U~{j5qws`<6cFMSME0tx{ora!j)t0#M)>PBm_^^N)K zByNViHcLo}1~LnB*k32!GOOFON&LvC4BH2fKXX4k9h_~(aN^?Zx{uGddoUy{<6C=^ z;coXk-S1`9jyZn>{@rO7Ka%vw?93HMuUdz_c4|AK*S>pQ{kT2BsTbm0FsXKW*M9N9 z)Ubuszty*=-o4+w!f18CDTYn&-n)j(4Ascpl$y@nb4p8O-~RuHR;+Ofm25heD(ba= x|MLqo);QgbY>fK9U-SF-Wmg=5rlqXOUwi%D_bvBsNdkkL!PC{xWt~$(697J-yAuEa literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Specific/Hydroponics/glasstle.rsi/produce.png b/Resources/Textures/Objects/Specific/Hydroponics/glasstle.rsi/produce.png new file mode 100644 index 0000000000000000000000000000000000000000..11c43d8d13ef2e818537ecb8809909ad270af5ff GIT binary patch literal 835 zcmV-J1HAl+P)Px%{YgYYR9J=8mrqC(Q5?rVqpRaqZs~$+nwqE(dCqHxP76^HMF$HyL=Y_$L4OXJ z$R0u>sgVAWWI@qEqUf+4jHrnIULu6TS~quVU3GMw+1Yj4&DTNQqPCiGilyK6z4!Zm z-uL%=Gw;Fw9FKY)3cEQ9>@3#Db-Vft2e{iA5L#5_ZfC%j3kwF&qAI1!U1(9&j=p(- zj>jLeJN5Mk#bi2;7FC%{$2t5UlpQ- zEB-bVrrP;UYi4r9v^apn>_mVeMWfm&F{~P_beA$18KJ(SjIe4jttXfsjaW$sm~`Oq zgOKR;HcGWFnU5(!txG1PXw;Q2A*>oy%{h=xsN6Z&DxG=}G2M)&06N#MlmLcRgGxu5 zkfKpDSB4swOmJKy6&a+ka290$niZx?VEP#D47?KnBbg$qoDv^Xf*P01U{pbi1QDqO zDP3oC_bp3D(G=;i$6*mtG_Gz~Edk7b{k}|1ppSimv_Zh{lK{3}zAv0^Pj;^Dxb|iu z=Z@AN@C)yelVV3_PtNg<=P^@G{P7gDt}4&DlQK^g0ON^N&UNiAp1`U|5;G4>~d_`uqp} zeb@gOn>xPx$VM#b(bVWt zAoKyGNoW$M=&4H~l8=gpcnyy$4p!$zQN#T$_i^vx{Qviy!+l_}SS)``Od6QlsfEc* zfnYq~vlU=;aVpLmH*xE@ie#ohasPPf>bMGkY_%0ibBdipRE3q~)`#cmTnT{Ji4Vvs zv1(#Kv%ZmDx<9?WA)PDXxN2_VD~wv8#T{4SxQY|CJ^$8cQek5Q*=j3X>~k{_M=3=! z5v5o(@+$_kh^BkEhwuAz%lV}-!FV9bDVl-BsjfFF3|~ULwHV!U9?w(k9(ioeMzlM9 z0HZdDE1++7es;y?Y!sRB6vLrU>aI5zH^q1e>x~NSPCqg+^hrHEaCtqUc2NA50nt04 zUqQ)`>GB8T0gt`*&%OiF-agN!;+)3+0*Uxra4)*OkpXQ&5+@b6SS*%*!8<;9d+7PQ RmP-Ht002ovPDHLkV1jc=z3%`3 literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Specific/Hydroponics/glasstle.rsi/stage-1.png b/Resources/Textures/Objects/Specific/Hydroponics/glasstle.rsi/stage-1.png new file mode 100644 index 0000000000000000000000000000000000000000..d4204913b5ead6961b25bc590ecfce8c62276a5d GIT binary patch literal 581 zcmV-L0=oT)P)EX>4Tx04R}tkv&MmKpe$iQ>7vm2Q!E`WT;Lp6cusQDionYs1;guFuC*#nzSS- zE{=k0!NHHks)LKOt`4q(Aou~|=;Wm6A|?JWDYS_3;J6>}?mh0_0YbCFbgL&0=!R{k zlL;xCTa`ku5DO4_d?D+x z#(9ggUa7P8J^2g6d1Gan>oiA^#3Gg;LxPGr%Ba9bj8=mb3u)R<`1nU$zf3NbTxBqF zET9Sk8_nuQQf!?e?T;EostqhJ(_0!jb?vJo<5 TV5q(;00000NkvXXu0mjf@b3WT literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Specific/Hydroponics/glasstle.rsi/stage-2.png b/Resources/Textures/Objects/Specific/Hydroponics/glasstle.rsi/stage-2.png new file mode 100644 index 0000000000000000000000000000000000000000..804aa0201271ca56ca431a544417ec8b6d2af80f GIT binary patch literal 688 zcmV;h0#E&kP)EX>4Tx04R}tkv&MmKpe$iQ>7vm2Q!E`WT;Lp6cusQDionYs1;guFuC*#nzSS- zE{=k0!NHHks)LKOt`4q(Aou~|=;Wm6A|?JWDYS_3;J6>}?mh0_0YbCFbgL&0=!R{k zlL;xCTa`ku5DO4_d?D+x z#(9ggUa7P8J^2g6d1Gan>oiA^#3Gg;LxPGr%Ba9bj8=mb3u)R<`1nU$zf3NbTxBqF zET9SM+dGPVf0oD1j18y)YlZEWA3igc0U2Nh^P{v)?Ef1*2dTzyJWs WvtbV+%d(XK0000EX>4Tx04R}tkv&MmKpe$iQ>7vm2Q!E`WT;Lp6cusQDionYs1;guFuC*#nzSS- zE{=k0!NHHks)LKOt`4q(Aou~|=;Wm6A|?JWDYS_3;J6>}?mh0_0YbCFbgL&0=!R{k zlL;xCTa`ku5DO4_d?D+x z#(9ggUa7P8J^2g6d1Gan>oiA^#3Gg;LxPGr%Ba9bj8=mb3u)R<`1nU$zf3NbTxBqF zET9ScAenQPL#_r33X z@7@6x78Vu;c)pipn&ZqQ_-FNP$`7Y*V7osf0NBP67K5;Mo>~sH`!i}ZT>yaR2Zv(* zt$=K=8%-CVA741XxWs<9uFGA$fOM~gR1`fuqS17*->tEYBW&Xco#E1WAPaHI;?8hM zt!|H6-JTJ#)&U_E38{z)S*4JQUT&@&09Xt{r%3%@TvN3BGh(&be>(L-D&kmO{!#~C zZ?B!zd~#B$=LdzcJfy4nL`P8#+=eX5)K!^}(pykOUKJ)gB3Fcv>S*%$6jB|{37_nc z&Z$BN(nQII&>1f2Z9E2$?|rf%@SLRMnLL?}3dL!6c)Ew49~=fM`<+Zjcz?Ld<>GkV vTT%LmuzgIp7=#Wd_WS_64=gM!Eb8JHQ905+oK>sG00000NkvXXu0mjf(%x?) literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Specific/Hydroponics/golden_apple.rsi/dead.png b/Resources/Textures/Objects/Specific/Hydroponics/golden_apple.rsi/dead.png new file mode 100644 index 0000000000000000000000000000000000000000..817c0f4bff16fee612ea7c54b594e29462015f5f GIT binary patch literal 390 zcmV;10eSw3P)6gV^dr>h0X{IwZWvK-kUY(By!Pc_StEx~6fvcqT^>@#Dq8xFIS=5Y?Q1e-%> z7W~)@E^ub}U*OE}|Kc3){|pScLxySqW;x7aWQWX*K^4R1c$$F_BZTGXK~L4Fz~>Y6 zP@%fz$QEJCj@TTB%~2EsTm=$(uAoW0!kq$qwl8)P@^$agO)@BV`Q#&pu>e=-$P^h#dT`S`amcEewq3YZ(4VnL+f@exXbwvBLs$J!8x%E|5wM^Vd%kS4g&*;+3Px%YDq*vR9J=Wl`&`&Q5?p9DI!SILQ*$PNNJ#;gS2~>>rkx_0#`&z2FVf~gi4Xx z!AYcp2re0JXxu7j4?@s@1m4m`I#@e(X(9B4ETx6>A}Ydjc)47o^>V#hI+$;HcmI3u zzTdn5_Y&yoq^b(pF&}dycDrs?G&tDrYVHpJm=*0$kk@5NA_Z2R#@gL@Az^bEb zWd-5bogj`4u{i0k&si?+0MJY>uo-{itq-t!e}F#j+txY1hwYcv)+o#h1pzc}kEr_lckOyQQ)cmH7RCv@dkA<67H=SzvL#5Q zFe@5+4itvw;rlmc){Cq@Dyz`N;%dRI>^}l%C0fr2l?6c8%IbJob&Rzj&5NAA5#?xsm7kol*6ye;Ko)p^ufing<7HY5VPn z1W4DiFm)4SMdM-=^sy4#m!1N!T-;&lz6hLyU;wRFyjq9ViFt?)Kr*RXFrl)6RfpYO zaK6BmtEv_N!uJ#$HrF!(G#gW7(WeABHd~F>9LH7x-N>tX$2bMSWR&FLab_GzRmhof zq>)qC=3OPx$m`OxIR9J=Wl)FnDQ51*2nQ`2iUBxAeqNYh_A*)S5!H5tP3roS$)(2^m!oMJh zqzEZ(?d)TdB83u3DIrA`gF*3$yNo+`cW3XtDSTwRoe6^=+^;_8{J#4HgTY`hJS7fx z9DT4|&}q)JlY~>8gOZ|I;`PXYUVJr`s#I&4E%bf(qXsvV)~c305t8!vb0*)1i6q)u6&!k9bORS>MSAis z3b3L}0K(uH@2)QAI~*n7fYt({RHs@lP_uth5t1B7+>{Op^&kLV_O`AfB$aX_eSs+a zH?$Nq5H$sW#UFa|?nAh!DFPY$TZu2=IvUTlAQ~bR655Lo!Oh`*#>RD%A3>~+4-39l zQZq3-K@=&X>JI>(J-@vHd!MfWSlSHIe+A8K%zGL@HZ+;613<=i{wvsEFc|Ln3;so% Ug6ux(7XSbN07*qoM6N<$g8QS;-T(jq literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Specific/Hydroponics/golden_apple.rsi/seed.png b/Resources/Textures/Objects/Specific/Hydroponics/golden_apple.rsi/seed.png new file mode 100644 index 0000000000000000000000000000000000000000..9fc96ba7c2934b8857a0d409c07c6f57674230e5 GIT binary patch literal 396 zcmV;70dxL|P)Px$MoC0LR9J=Wl|4(tP!xtAKZZCt2*zHK4q}=tr5&VDNQY)~@<%v0IXStxI63(j z+{LL|9J-3MxHRo1h0;3dq+1*$A=pIDEd?F!vs}nIocHBDHwhRF2E!k-B5k~?T*o!L zPJhbUhBmzrJ2KlXD^&v60hw8B_AQ|uJJQ`p|L3+q9(4ZvU&0kS04 zbqpjZOXWTfpC1USZ9Ke6z5|_B7-#o9-a6pq@i47> zj;kfCZ6Faz#FbwH;O=cdx2HerEziKuTdn*O88bIycx|6&8cT)ZE{Gj{e~ z0B8hFvEaf6vaH>AnU2d$$7KL^pKcd6AbJaueP&ZA64i-cY(RJTbP0l+XkK;XOgz literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Specific/Hydroponics/golden_apple.rsi/stage-3.png b/Resources/Textures/Objects/Specific/Hydroponics/golden_apple.rsi/stage-3.png new file mode 100644 index 0000000000000000000000000000000000000000..9b193a59e3b8299279744948c692ecb677c3c4f3 GIT binary patch literal 215 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdz#^NA%Cx&(BWL^R}6FprVLn2y} z6C_v{Cy4Yk1sXg#xUKd-`?*J<(rhP+QrrVLW@v2u^2bo!>#h1>#yG#8=h+elwSMon z6zpqzXn#gALe_=fz?khJM-k)8zy>y+XbB1SD~wZ^x?~Fe{$#L9NaIm?muRxHVa*Ti zf@51s4#j;slceZ=ndM;+Tif~f0!(|HczAg3K9MlxayzIY!OFv+p`l&;->+~X&~Xf& Lu6{1-oD!MPx#*hxe|R9J=Wl%W~IFc5`b`LGxmi3L!o41vLQ159mJh>F6&3YCn2!!SS)B<(d6 z(MvA~@|&hpsnHlQ+#0JeC>_U@$C5EUFOC*0MN?6i;8>N8V<&~PL$3^ zMnz3%^)^CHeUw84BA^vq5RboQBkqTM&<0G*d@f{n-X?_u-RE#aT2~`{u%nwd5>nHb>z3 k=qFZd04GkULZMK=3ulFe0UVCfoB#j-07*qoM6N<$f|zT0p#T5? literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Specific/Hydroponics/golden_apple.rsi/stage-5.png b/Resources/Textures/Objects/Specific/Hydroponics/golden_apple.rsi/stage-5.png new file mode 100644 index 0000000000000000000000000000000000000000..fc1807e0899d514f7465d381794b679a560ed07a GIT binary patch literal 454 zcmV;%0XhDOP)Px$fJsC_R9J=Wl`l`jKp4hs^=YrAgC`Y#joF>UUy@AJI(zRz1|P!)V_jx8ZAqIN;s2*Nex zPz|{av?H4gk*|$%Fi5Yu?3Kgzpwct=+PK|VqK5AGkabL&WUcr1Fp1r=w zd`n-niinB>?0F75*!rj3AU%`EhWQlw+OS&MY~6_f2yP{Wnh6FkhsQlR^q_JuY9`=e zoCJgAYl=b&7ynPmnb#N1IA{xzQ$V&;Z1E?el3#bZ(1SGG&*FJ)P`8ps6c>gNr w|NTFs9hhD|!P!r|aDD+i7uC?9L4$veKj4Atu{5_5tpET307*qoM6N<$f?NR0^Z)<= literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Specific/Hydroponics/golden_apple.rsi/stage-6.png b/Resources/Textures/Objects/Specific/Hydroponics/golden_apple.rsi/stage-6.png new file mode 100644 index 0000000000000000000000000000000000000000..e2790c179ab92e0291d6f52ba93b23c96925a508 GIT binary patch literal 573 zcmV-D0>b@?P)Px$_en%SR9J=Wl&x>uKp4h{k5?|I($ecpp34n?ALYaEElXwnNY zY0WJz#Dqj?suCQR*116f?4|oIkfCP2FyB?#tQR@V7epI@_a%hD?+ozWOPkR~7$Lh6 zevb`#mYRLXZU0o2cuPesaI}Cd#S^h1smivHs)XsR*#~f3@Wr3B0P-;8vip9!}$m-i;x;4H+J!LA3(m`Hs!>F*gmba=obdh|_% zmx>bylj5SE_A*aakMBFxI54@~2Q99ZPyrrsZ?TNTfxqR>mE>$gtB5$0ZC{31j zcEX?%w2178$&e>vbJlSOwc)Ub$acX_?N1yGnQhHSe~=G)d4NRe=nB2M6*W0o3be_Y zFU&kkdq2(Zdy#K_fGCaA=L)7Xo}Ra7suF+PA74iDye?x})`W$_I&S>J%wUTS}(=+@k;K$GL_w?(6J*W+MAVv!S6aAYA zkn5)ApQmpiz}6njc!&wRAEG_D`*Z^z@@C=V4EQ!y!x2Xu@t@-lY%v3iS|8W)00000 LNkvXXu0mjfH}eq6 literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Specific/Hydroponics/papercane.rsi/dead.png b/Resources/Textures/Objects/Specific/Hydroponics/papercane.rsi/dead.png new file mode 100644 index 0000000000000000000000000000000000000000..6c7185bb1e470f850e312ac4ad03db4f19b43af5 GIT binary patch literal 314 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdz#^NA%Cx&(BWL^R}Up!qLLn2y} z6C_v{Cy4Yk1sZU5uv|TA_J3n%`_F>4&X3C{B&dlKgb(OQ6if%R+zRoxDs1 zBF~&Tw0X~_3yiCiHH#RSnVFj#JN3El-?HOy?%i4|(7b9H@5MBsw++wF#|uBzU}Ixz zyM4Vs;6CG|NsD+uK-O1K;-GbY7;o1Mpwc#pqkIjGUAshkUL<*D>K1HV%zizwBk&DF z&c1`HZMv}mZy09e$L-zGtk|~h-MhD+uaq;`eR%ekU1Z;;Rf@H;3Q9T+ifuAMA;kyo z-hM85L?xudY(~TZr!|L+)ys|k{Pw@GcT3R=4Ui{)Ffn{G^bqHpn7s?=e+ExiKbLh* G2~7ZZLVTP6 literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Specific/Hydroponics/papercane.rsi/harvest.png b/Resources/Textures/Objects/Specific/Hydroponics/papercane.rsi/harvest.png new file mode 100644 index 0000000000000000000000000000000000000000..d1f2111b252f58bb36342de074f841b5f16aa61d GIT binary patch literal 296 zcmV+@0oVSCP)Px#;z>k7R9J=WlfenYFbqY%OSkAM-lAYl(L*Q6p;I`}EwYN|a8D|ZQ6nYTgo58C zK^Xt9FBupN{+ZyBgGW9^EO_LUQjRgM3`n&m;#RS}sa!0F<^`@4kPPy7iV62ewCdZD zI+JR9M_@`o>P+j_ItG&gNu)Nz|4+K%{i60`;ArcY5Inw-|60~2SjD>U01-K0{W6$R z*t!E(i}<|2P0%kSBFDm#K?ya1`XVXbax9#bbquBvl<)|oT4`1~ci6yI*IKQKfvv8! uS`z~jTDRSHfYG{bx&u8q-N0Zl7<>RtxVj0W0>1MA0000Px$OG!jQR9J=Wlr56NKoCYBTk8-MH{lB01J^nVACW6WhLF@UlxY1RYU;rm9w! zB>+`b0njuJ0KGgwL`+0XRSh7UAcP6dDhPx$ElET{R9J=Wl|M=YK@`S+2C=b8mB@qL&PK2?kpv5^yg)7>74IYfZ^4xy6#O)kVGSZeVU72EYXjM+R|4MV%W;F`^xa4ZwUA<;c)v9u zP17$mv*}#bQx>9p$-;G-uT8x74rtUvE5opMd&WCJ^0$~@ta=?8CtNvL*Cgz3*#2L(RFm;cO#0mthi}&&HoRGT jm{HsDzbP0l+XkKgPulA literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Specific/Hydroponics/papercane.rsi/stage-3.png b/Resources/Textures/Objects/Specific/Hydroponics/papercane.rsi/stage-3.png new file mode 100644 index 0000000000000000000000000000000000000000..1c926be364b0482251b68555aac1a245664541ce GIT binary patch literal 210 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdz#^NA%Cx&(BWL^R}J)SO(ArY-_ zCvD_CpuodoA35nz^#(y!U2DVkV8w+;0vRNgRN{X+{V?E{IHo5cC@k2YqIJ0VoJ{hQ zdvCfoKMmk`xT5`z@yj`@7#J$vPYe=j_s|ai+qV6x-fIR1k;bB*m-wzs(T}*-7&+rW z9aGTZXk$^v=XVyrTzhjv!?)GDS+~UB)in?n{t Date: Sat, 27 Jul 2024 15:09:56 +0000 Subject: [PATCH 04/89] Automatic changelog update --- Resources/Changelog/Changelog.yml | 16 +++++++--------- 1 file changed, 7 insertions(+), 9 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index f16c4a0d41..8af7766ff1 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,13 +1,4 @@ Entries: -- author: MilenVolf - changes: - - message: Borgs now have brand new voice and walking sounds. - type: Add - - message: Syndicate assault borgs now have new feature to scare - manic laugher. - type: Add - id: 6491 - time: '2024-04-29T04:38:31.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/27205 - author: KrasnoshchekovPavel changes: - message: Fixed formatting of floating point numbers during localization @@ -3781,3 +3772,10 @@ id: 6990 time: '2024-07-27T07:27:21.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/30393 +- author: BombasterDS + changes: + - message: Added new plant mutations for apple, sugarcane and galaxythistle + type: Add + id: 6991 + time: '2024-07-27T15:08:49.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/28993 From dc1be42b8f101ac156b5344f7b93890b1e8d653f Mon Sep 17 00:00:00 2001 From: Brandon Hu <103440971+Brandon-Huu@users.noreply.github.com> Date: Sat, 27 Jul 2024 18:47:38 +0000 Subject: [PATCH 05/89] tweak(Chemical Dispenser): Give the chemical dispenser a hitbox (#30412) weh --- .../Entities/Structures/Dispensers/chem.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/Resources/Prototypes/Entities/Structures/Dispensers/chem.yml b/Resources/Prototypes/Entities/Structures/Dispensers/chem.yml index 681f0a390c..cf51ca9b1f 100644 --- a/Resources/Prototypes/Entities/Structures/Dispensers/chem.yml +++ b/Resources/Prototypes/Entities/Structures/Dispensers/chem.yml @@ -37,6 +37,17 @@ - Chemist - type: StealTarget stealGroup: ChemDispenser + - type: Fixtures + fixtures: + fix1: + shape: + !type:PhysShapeAabb + bounds: "-0.25, -0.4, 0.25, 0.4" + density: 190 + mask: + - MachineMask + layer: + - MachineLayer - type: entity id: ChemDispenserEmpty From d846a621e5d4109d6620cb90cddbb00d8a02db5e Mon Sep 17 00:00:00 2001 From: Brandon Hu <103440971+Brandon-Huu@users.noreply.github.com> Date: Sat, 27 Jul 2024 19:49:05 +0000 Subject: [PATCH 06/89] tweak(Core_map_Jobslots): Increase round start chemist slots from 1 to 2 (#30408) that is odd --- Resources/Prototypes/Maps/core.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Resources/Prototypes/Maps/core.yml b/Resources/Prototypes/Maps/core.yml index d7a15f2b1d..950984c719 100644 --- a/Resources/Prototypes/Maps/core.yml +++ b/Resources/Prototypes/Maps/core.yml @@ -37,7 +37,7 @@ #medical ChiefMedicalOfficer: [ 1, 1 ] MedicalDoctor: [ 3, 4 ] - Chemist: [ 1, 2 ] + Chemist: [ 2, 2 ] MedicalIntern: [ 2, 2 ] Paramedic: [ 1, 2 ] #science From 9bd623a927463210bbde4a9207ff128c4bb2e257 Mon Sep 17 00:00:00 2001 From: Flareguy <78941145+Flareguy@users.noreply.github.com> Date: Sat, 27 Jul 2024 14:51:10 -0500 Subject: [PATCH 07/89] Makes security a bit brighter (#30369) makes sec more red --- .../equipped-HELMET-hamster.png | Bin 2536 -> 742 bytes .../beret_security.rsi/equipped-HELMET.png | Bin 6624 -> 764 bytes .../Head/Hats/beret_security.rsi/icon.png | Bin 6654 -> 719 bytes .../Hats/beret_security.rsi/inhand-left.png | Bin 6423 -> 728 bytes .../Hats/beret_security.rsi/inhand-right.png | Bin 6419 -> 719 bytes .../Head/Hats/beret_security.rsi/meta.json | 2 +- .../warden.rsi/equipped-OUTERCLOTHING-vox.png | Bin 849 -> 1673 bytes .../warden.rsi/equipped-OUTERCLOTHING.png | Bin 842 -> 1575 bytes .../OuterClothing/Coats/warden.rsi/icon.png | Bin 354 -> 292 bytes .../Coats/warden.rsi/inhand-left.png | Bin 2058 -> 933 bytes .../Coats/warden.rsi/inhand-right.png | Bin 2066 -> 957 bytes .../equipped-OUTERCLOTHING-vox.png | Bin 1930 -> 0 bytes .../WinterCoats/coatwarden.rsi/meta.json | 4 ---- .../equipped-OUTERCLOTHING-vox.png | Bin 0 -> 1974 bytes .../equipped-OUTERCLOTHING.png | Bin 1851 -> 1780 bytes .../coatwardenarmored.rsi/icon.png | Bin 761 -> 717 bytes .../coatwardenarmored.rsi/meta.json | 6 +++++- .../hos.rsi/equipped-INNERCLOTHING.png | Bin 636 -> 1065 bytes .../Uniforms/Jumpskirt/hos.rsi/icon.png | Bin 363 -> 530 bytes .../security.rsi/equipped-INNERCLOTHING.png | Bin 637 -> 995 bytes .../Uniforms/Jumpskirt/security.rsi/icon.png | Bin 367 -> 496 bytes .../warden.rsi/equipped-INNERCLOTHING.png | Bin 628 -> 1018 bytes .../Uniforms/Jumpskirt/warden.rsi/icon.png | Bin 364 -> 514 bytes .../hos.rsi/equipped-INNERCLOTHING.png | Bin 667 -> 1165 bytes .../Uniforms/Jumpsuit/hos.rsi/icon.png | Bin 353 -> 454 bytes .../security.rsi/equipped-INNERCLOTHING.png | Bin 666 -> 1038 bytes .../Uniforms/Jumpsuit/security.rsi/icon.png | Bin 336 -> 407 bytes .../warden.rsi/equipped-INNERCLOTHING.png | Bin 661 -> 1115 bytes .../Uniforms/Jumpsuit/warden.rsi/icon.png | Bin 349 -> 408 bytes 29 files changed, 6 insertions(+), 6 deletions(-) delete mode 100644 Resources/Textures/Clothing/OuterClothing/WinterCoats/coatwarden.rsi/equipped-OUTERCLOTHING-vox.png create mode 100644 Resources/Textures/Clothing/OuterClothing/WinterCoats/coatwardenarmored.rsi/equipped-OUTERCLOTHING-vox.png diff --git a/Resources/Textures/Clothing/Head/Hats/beret_security.rsi/equipped-HELMET-hamster.png b/Resources/Textures/Clothing/Head/Hats/beret_security.rsi/equipped-HELMET-hamster.png index 8f503d62378251f2f1e70eda663ac87845a64aef..b6d156e44f9f0be2a61cc4534805c161c69d41f1 100644 GIT binary patch delta 348 zcmV-i0i*ut6XpewBNYLKX+uL$Nkc;*aB^>EX>4Tx04R~OA_sN>e|N(H!TqUS%q3vjmRl#sP8#A2Od?$5x7ANs-|nW#v&jkWFneP$duuI zOfs8f|1Uf1{sl>r^j}paAMGJ`_fLg$EMbWpw-7rVUCgvlRoJG z{KM%)+qS%HHUPY{f6gLA$lHx{(U+#XsD-wI#58!R(9WWf*QoaZm+m95! z77_9z&AA5BuSDaNs=T`%n297ClOzHfrE=e%au*NQ>stKXEb3J+0I=ThuJA7T&IwKGvFIB5( ulKv@;1M41+xEc|%{dh@|BuSDa{XHKp^H%`^1m>au0000aB^>EX>4U6ba`-PAZ2)IW&i+q+U;0TlH({0 z{pS>W1cMNQ;|Kv&dxJgxKH((ONvC%@nfaNjwL1o5EF?W4J$IP@{Jp|oI8v=CWR_Z5 zDF=?+a!ZO%JR^btqTQ7bw{s0P<8W6n(bjD#v$7!*}1i!DCO1Z_%|XpdEr)RNH=fL8W1 zt|UNjPz9Ix3w%iUaIpdS4c(K%jX%j1YP(1eMM_S_ax#zg>JgtZyU zL;?awiNvwQLsF6$;l~Pm6oP7^oH`(g%xOT&l!*$!sma&II}-QY#OWMH&H@ljg#^%G zdjYGA#D9kPkz5f&%EXzO3kz3ntc6N0TuPDR$xnqO3ri7^DowOf&6R7ZQfsKKYD|7o88YfDk@AUhLk+KrTt!4rC+wI3 zv6Lea7e@dAogA~H#+*}d=p3`7AjQ#%rhol@rK55!% z=za%s!J+#CxzD&gL2Y=ov4g@!$hV<8^&o6NOwv^Ghnn>LHoW@6A17$lBlU?&;oYL9 z)_>uDzwc&K;xbySwb?*G0to~M07G=qY$MUDoP3$p~F+3#tlKi){fInWzLNYY-&pEDUzC#%$E%9Goq4G)kPc zWobJ4)G)Z~Vlt-HNwAD=T?o>Ls7A*6Wq)m>3ok^Ec%QXX*#S0UmzhV0Ml=?2XT&vh zm%2z|%iYV3f`!aJI>W@3PS^HAHlBDpJcR*u(PUzWH7lv}{KEO#v7f{Zu@>CLeQ;au zw&7(6J`xzFgKaQ=vo<&el{zA+CM5PeCwvIU!TGd>^U}a2Vse+!;0jxSp-6`sxqr{C z!OABXaR&z=#cpIb9|}YUS>U7vP7Yl=Os0yBstu~icD5bUL~Ttw#h`wB^;V!UiY`Ue z8LDF`vzM)wg_PmzImcLq=csEn;5!$>4v7QEW0NaDo{T^1Y1sCn79`DxAV5An+i?6C z5IYu<$d0|SQi1e3SJl;Lat^9_B!5J`K`~BS@Q63T;ZgD%ZK0(?ll zhU}QJ_Rz}ML$L{J>C%f=fN%!l?vzxpW!xz%v>#qU`nz~{`xadKqj#I)`=WzmDI+6i zm)+$Iyw*^TTs?M5{m`;+1c9=<^JKz98-6z7v6USTpTi>D;$nJaw+35EX@5Ij#U~-a zSN?`d;dLXPx8Zdop4$*!H{!VsA-`?ReH&gk;<*jsbt9g?5Z*K9vkl>OBc87i-rW)} zZ;|f;5#HSrk2Zwg6GeAh^p+(SXjy*&048JgUZ~GNrSB_U>Zn(HFi9KQOcPb6$L< z!y4Sh^FX!E{-psch=1Ygr>t?#0{E!GRbVBv8%;t;9eJRhhkDH1$jtCP21a^i+prVG zUy^CYhYi9AD?2Y)v+9w-TM+Xe>w9n6&X9Mv@85;n?KYB0(hLUICcSle-O(B z00006VoOIv0RI600RN!9r;`8x010qNS#tmY3ljhU3ljkVnw%H_000McNliru=LrcC zAtv^{OJM*20QyNpK~#9!?b^)^f551W(XrazAV^5mB`NELK(7#Ot1g|002ovPDHLkV1l#m{#XD2 diff --git a/Resources/Textures/Clothing/Head/Hats/beret_security.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/Hats/beret_security.rsi/equipped-HELMET.png index fc1ad2e939e70d0fbd32f6e5ddde529b368413a6..8ebba8d620889e765474e3dc55db5740b3b86f57 100644 GIT binary patch delta 370 zcmV-&0ge9PGyDaRBNYLKX+uL$Nkc;*aB^>EX>4Tx04R~Oa0Ye(e|Q{9*8l(kGD$>1 zRCt{2+A&VUFc`)02jT#ozBM~+tPJegSUEsX!AUqpC)SFgM~Jf45|byGJemQOrfww2 z7sW#2|C_2*^|QZp^OOF$3(t?%Qa*fscCInUF#k=`%Zxo-dBX3T=J+6lEY%xCnct@* z#hATAxb%iU?)SRhe{5uCGP9GnvXo(dpVHUiCEc2-b>{ziYKQPXC2eEWd+~i&=^xNa zIgC7SBz;KQEwztU%1>t5JL#p})!5fxJv;ya000000002+GxtSec^h1_Copys?ag-= zBu+X4l3qioGK8`0J|)E%UHOyx0b?5&-qY7M%=UH^CN)HEP>O=WP&YN%sgtw|$A-Xz z*{t;@4Pd47gKuM$v|urzaF!F}_gh~%)| zqG*dCvZ3(aP-#U#ye9z_zuT|(^Lf7hlaP?J_q*P;_Pf^F`#gsq z87_|Ms{c}j!C>liCz?C-*IN2kR)ju(;fD6ZV2bObJ-sFFKm=SU5^%U7AY2k91mR#L zmji=E_CDRpOMhsr@uqFvpUS$nhWbicv@!KZQ!_P3$%i_Uc>W5g*B$7;6QSyz^aal>XVCR>h^PHcES zbMnvRr%gLlUe9h@+NEY=^w{F)R4q|lr8D^EalN{kPB(Swm7}5PZ7%z%ghZRFU+?^3 zlRvrYP`5$cowq8>yDF`69`t2Q2UU+5z3!bF$(X8ZvG~@s`VY;RsP5wjUd0zolyqH= z=-yL%dirjM*z~c6_J++j9}^q6Q)6f-4JNq zkRCuPA@9F&wyj6hy7PiUNQ)&Gl#jlufl(R+Cm$U_NxBLGDs1*8@5JD>lWv74m!RL) zzb?owExWG0eePGC$(DO6IoBNc-(l4f+M}lr=*wHRwJ906A~Q-`$L{)9P9smLQDcK= zmKkQR(q8h^K$rbo3#JY55^?p`gYL|)&RiFf5O;4Sy6%LxZ4)Uee4Q@u`>6IjtnuZy zdgCjzDtun_rDiUHCmm96hhI+cvSIFg>m549&_0Ynn5;#49s5;R$BWq4d|{Oz7E8pJ z2etO3q~srudGVy+QH#?)_fp?Ke1n6%OKe1S_tdq0M=QkW?U%ww`-27Y&+sj2Id!|v zx;duk>o;lV07GuM&c}pjeDXGDk>a{~bhq)In`}Ca@~e6hgzhlzE1DC|QGzCENW;^A z(qeLUZEZb)2t2FZlOb2UO?me{2be~d8Rv+{Ix_Ef5@)OZF;;WCJIUNe4-5BR3;Imf zK68E8FWhuy7J2`Lc120fj8WPqy-R|$nPuf@MoKH`!LUTD7r2-jjjh$x&MP0|9qc{H z!yBK`@CH37L}si;8^gUHo9uu;pqC|Rkz|Ccv)LKv$xmk9?rSj-DBs7 zJ;qvJxaPc3Iu%pso#kIu3cFBPb1L6=b<4wGVu84MWr6+A2G@%AmF&jQOs-r`tv#Ud zWs!~^p5eOuC^NEfxHB?8;8xD+$$b3fWJJlPq_$w#y@u4lp#4Q9{x@vxC*&z%{pH8O zYC*DmyAOe+mw(*l8NKw^uKO`3h!;2Z=zZ@O5BfYOHWs^ic(*?8eTAzuG5RidKrvTi zJ>Z}CU2&rI;2E{Zs~dd=e^wk@!Qy1C$gu6+tr}ORq;#mnd0QL;cDT0M()qTRuiyEq zy^cG5kJN+SlB*~0h3=bZ5Kc_y)?F?&IIz1_Jg#x{j<0sxu2TQ3s%}+#T4%%0z)k!9 zCB@p<#^>p3fWmdjlL=l;@##qwBF3UJ;WkbAz`=VA?J>G&)0$n~uYB%GP=~IyC>xBR zl!_AxlI2&bLhk&q&tgzZjF|pKbM)$L;ga(uJGGYS3ui9dly*iDYkcn1?^>3$U)_$y zmTNPah))aWy&Up!Z*+}Y|K`xkH$gLg?E;&(2pgwxWs==K!N_TKhhZ89F@wl;J^h=G zhs|j4m$qNdCi!N=ixV!|7;Sh(Z04_bB1RUUyS?o6r3+X6*Pb3dc4_+dzoUE&AEX12~c**ZP75{%G|N91#j)5{79 z`rY{PP1aQ7ZfoP9r+ML$z#>dB9}jp|mjfv6Z>8&gQK-#tw}1v{jKS z#uQE<472z4FTHPwpTLrrf3vLVk`j=s;kO?!3aw>~nhd1Z{bqktm$AkiK;+~q_avv9 zcUk+$-Oe*sQs$jQGwR1Fiq{iPO!veNobxS9TOOwK6SYf1v>Rb1DMsfCi`1!t5|gHL z{3mu**MjaCB+<2gY{T?tGlS1P9)CEXHZye{Y0*)iyLcJIy&=(Na;JFvm2&RYLk zb>1FL6GXUHsIqs~`rT;#Gkffd7`>_ml#FfD->+4t?@7rW^c7ANdxr@_yE?CWX(<@O z3sEk6Q0~KT(`{2$j+;MgjCec#;8}bE!xY;YqNn89iu>}`?u?t~_ZVFG{Z!8n+@+gt zbg-HmmRmG-Q)6SR)n2Y2zhvdOKb^R0Q2WQn8GP@0y?Xrd!#AT&nm4JY+s3+BaN3vr zXjp-&oV`XKFRH=sbTGlX>VK{K61lz{W4hAh`SMUFH)6|*+bGk_a`XH%s=@aUR%6mS zx1?`7OH498tYxQhBN!XU41%qkDaG`_T+j%pECE%d|wtxwuB6&jSpohUMtRjT~D;Si(nP32y zPeqJZRwLkCHWjgz=!|g|+JS*wr)UxA5$)p1iVkLx*$693Rf|XpM8E?j06dZx!WUB_ zsR$V_1^O->MkC-dh$NVb@OEav?F1qaPCyY*7^Hn9HynqsRE1lJ*c^&G&0&E8x}qWi zB@!V8jgE+jKtM?!-O4y4yIda;C!rb8D5Xgv@Bjl*Efkr*5jM@BEUhi09f z-&^y=3o1f-q9Xwz8jHf9dAyG-#1i}P5B~nrLhK3MPodpGu^>#u0`0>=zGTf}r^1jh z@nWB0Vo*9Hi#vqPK|?{wJTJC!q&qX-+el>$;PQkr3n_XrlFfRL6NZUGWEeIJ4TgX` zC=fBkjQt2N;c`AC=%e*WXZ|A)$lZJXkI?V*lEos^l|mD+!lX{=G%7+GFNG~&aoH5v zSC%T;)u>|0=Kq(bOj^aW*W*jyF zB;!CNfsMx^37|O>X>NumAjxJVGK)ke0(b&`5rwOW3v~hzvN$R!6&s?$ldx=%4MGIw zL?{{(iH&3e&<7jC#1qH_0>KPFPbJL*#fCwrB5){-j9fOt2mvG+C43)W*6^lXPaIzUTi{b!r0#Lbec|ZV& z7V-mR6Vk*`pyfc)0@Ch)m}TS8YAALh5ReE&o&rG#6(NlcE~S(;72IN>T_~FcESaGU z46>yix6pI8Kmb~HX@UMb@P9CQ1PUVf|2Liw(Dy7hB1wcm6znQ;Wd?yP$=~z*75F`q zJG9%0C88+$e_7Q3z*)=}tP^A_5JfHW?*WF+U(IhxAzYbMaJXz6pa86S`Ncpu$d;u5 z(s6!@6$tPHKxn^RXtsCb+`lMffQZKt0f3CeVxcXHzy?`JCJ7)Ri9`$$UaN~vgTlaA^5rLqzxG*?85(Bxxcw+Dr0+E6zBIdKb zko|vVd2BN*fMr5mjspRxPq6^hTsR^dX-48;2Cq~ohggcZ6V!)DRgO{d4vgtAzV=OaT&a8i~j|;$bO*(|C{+@*u1r!Ko|vWQh^fJ z2>#!?{|n$e!)7iEirXwzH0jKvI&8*qJm+fOy ztAUjtU*qL`n=oM5*fMN5S5f%LwN0z4>^sv7SjS`Wa{Zi+_Rgg7^f%%MiA^sZ2hCYp zTh0uXht7PXu-etAtcDb0g5>YmYnTv|ec{IV#yUrT%~(#gW-7;8b0}_j%K7|LhIixi zS)*@<4_a{Zb513Hj)FuJ`9tEX>4Tx04R~OQw4Sbe|N(H!T{Ng)?T8 zIMyg35Xihr?83aiGrI!AFpU4s=%)o{F53f?Mb2uy0pKnMb=_|Vn7M3U7CATLG1qTv zEzoq`pdf<-q$f`0e?l6<$H0A$!wr>-82C~yOk4&rT&#KZ8*&+e?~#MD1Lx*_PA+1t z926apnO~ymI+or8u-I)`?6xYoDu5uZZVdkhPy5e`y1gUtF)(o%)ypez zy!{QlYd63&`Mw<;FaD$Am8qU#I)<{yPwT7ohAIZ8d_Jv4Bd!kcF@!MWk7pQ$Vfgueh43=r{%wVa<`4+8Ct=knh78bR)&nby7?TwyLwX%(R z;=%oKlw;kkvY+zqLC}-e(QGV_Sr+#r_e!dak_qIo*UWnQh!`cNP_pB z*8Tpq5pLP|78}Derh@n~%Z#l_cCQs1pI^RoeXmWGxr58Yr`*hn8v`Xb&PYtl-45LO zzNvS%aGZg;mwjK^8vb`1zu#TBFK*4V*nCDt5|p#xf6VZR98tj4eeq?xxr-W{CKp#* zbL%;G`Af^|vr|I5)=e_MYJQt^a@6wbS+4N~PdXATS}sKokc&}GT3b=pvj_e;{(47B zL-yPoI8=PjR60Y;+`Rlv?QD|Ag94uf{pSmpTXLC9q@8=eZe7 zn%!1!_hT)OL^11SH$7e_i@IuAKX#hF$>pNOO--dMC)$>;u)ROw!4>2%p zJi5H2V{2GuT}aQ=(%hBJkw?a}Avex($K&LE(OYwOm0d56KMZi24)q;9t9Y;{;SnwF z$CSNh*v)~3KJ#}56z({5g)V+s%$O7`zEn3aEWB)0vx$GxtYycOf|8~(6Y^_q0uu|I z7uJNH)X{5u?ByVE+sx32Zr61yh(}`CcN#>Vr)Z9|JMw0&o!8l8*p{wQ?X)50+Jwq? zS&8eH)V(+*>(#+Up1<2<%`>m?&w4fK)VKh1$F@Pw>l?1JYJeusuag#m&NmUAQcKBC zjgse-LGOFXGoY|kPR!)XvoH5_8Eu%mB>kr=@w>o=VzO>a>v=z+7`)wvpG(PU2TyP6 zXWE__?Q!pR+lj&_YrG$OOw0E433JRnf2e7OR=wxqQUTSfHZRA-^~f|@#Dx0`E)Q;7 zGEM%o)7GaT;OqUXbC_Yr-KQ&>*!>PqQf13Zhi^O}Iz8 z6l5dVCVE@1&k?2yGYXByy=HdUx@Q;!YGoGo<@P;mEBtoyOx9K-(Ba}hamUz-jYO|{w!Yu^>_ zz44twSsZN5j3sY&d!P(XOJWA3b&OA*S*&%-c$=r#?((Daxpb=q9;L=<4TeUszH3Y8 z_b_xf=&wEDQa9dU`Z3;-l(ETf2lZ!7C)aE?D&II?R~fQfuOcO?c%{#or|U@UwI!!k zTWlY=wYA{Dn2NKWy<2Rw5`SoQwh$*wd%k?m<+9V)q*_{n69Ha+b0ar5kLh=HXZK(c z9mfSrUbyX!tXu3@nF{RD%C8*Devd$gS8%!_hl7u!;MU0 za%NAe_7Ke}x&JlZZwZNf1D8(KZdtR|byJ9rsc_k}rP}TTIzKdD@Vn+c_qDxkN&2rD zy%t@sy0%sRLMjO57qzm+ezy~|-Z!4MJKV%^`8Ds8<7&2NZ~xzm-)^#v%Q%+!{CSe; z-SDoMowH!ya^m&Lx=BJYAzg`>9w z^Y^fQ?d~pFB!NT0;M=yhv-Yjbp&nQk%9cil&NI1j+9nw$A3kDTz93R}q22Uv*j_(= zm!EEImnLfQrDf+oNnf9Q_1BA+W^6sI`&EW^PJsvhx+i&{@{~Y=pXcd&r93lje`}_} zjZIBxF00BES0-sb-NYEod+;XCF%Jw|4igPv7ftaM!R>Y0?cKiT!{GWa zG=8y&II9-%=5rCL*d9iue9S&hEF;b`63NLmP6i{9n1am5gd&ME<(JAT3R#3YQ^J@$ zkSFuRR)~BPa4aZcK`@dKiEvPgtBbx<9G4&vV+xoYCytWHxpB@EH7}R=ubQS($ZCip z(wVY|7eMxu;usmShwMSXJ5Cf!r?}{oop4mZ4fOhIn1UENQ&uPxGA@;>R4VP240|aq zq|!JX4i%(R>2!cV0P=W=0*(VDaw`?Z5Qi5gM{to$A(BeSDo&U$jZrvLD8xE>n4DNe zyyJ+;VFjwOnqICzseZ%&BK#o$R5}Q<0gw*RInQH4<`63f&QD)dMsihRJyV(=(621Te?6ecDNkrT|cPw)zn;Nu2;;*V` z4Ke|Y&0-@klTK#}7$d0sByt5TK`<2+L2fT1cp!vHLm@r{IG`v7Ks1mKaOfxtKpAX0 zlf!~g2F4sg;g5@mN`RwATBV{w2`Y@n1lbHe2jIgFOaP+O*#I9AumA@K6mp=k`6z_2 z)Ksc{;JOF+IaBEN;K!MOC|Dto;$ot_L=sf0lz&_b7KyPS1*{4ijm3fJY>3XJ(Ks{) zIAolfF%-k)M4GEuX`nrwt`@-|1-1$;OEvN=#sH)YsuCi79A> zR4Mt-cs@cuu(;z2r4*0!$Nl*$F+}m_JbwiKz!XSyJGlan_xm?a{R7TvC}DjGSt%Yr zLVpkzJv16>Nl_wosK{h>8{opoQ26C=EQYGLfQaMJ60!o82r;7H4j0?|dC?yvGK#X< zh=9)m7$E9EWS;{cfCWqhaG*00HYT8fPjVa0SIFfZ3uQi0X72CF@!jH7$EfD zcaH&bnY8!rIZ;*TuAi!n1jWc?Q6dcgG|S&t{lCDCkRR?a z|4w`)Y)INuDvKw2@Ct>$Qu3$j{{T3|FkggV61nuxOdkmu3d@LV1Yz^g9C1A%ZadTu z*PY=SSGB>v@HN~!{z44|^%o_d72hx6`Vy|sioj=qzhu{!aD7$;J`4OMyZ&q8(*O9t z1d|ZAb|vvR7->)kp9+<`ZdASEKs(F;-K6k47#BZv?nt|3uW}A`C21k&54q_jMG=M``yS--K9l46S^ag73Bxan)p_Uc52u1 zkg+!h_n=?Vd+*(!`?liTX;D;NlMA-NwH2!?sP@I%_p-T3Se}T06bNbo;tqPT#SRv;OBK9fn09r6_g-)zpCG60sEA zF`snWe?wX3q>`f7hN<_Qm#49QUs|x0bhGHK-BXcJhkE|Ss;)++)6}tI#|X!F57EZ< zT+8Xl8`eJ-T|A>JJh@}=rO~vp>!0BdU+ItI6{tcKZ=qq`eTkH}i%x6;iR9Ba^ZP69Ooav&RK?0e^SH0m1+P0S-w-K~#90?bL;=HQfUxW~0d?9wncOd}8QboubG=EM0 zdcCG?TW)7F0G`-igmnC7;k^gS?1XFqx5;-Qa1T81d|!>6tA-c`-dDg2uq=2SCaEFb zK&+GVo6}{XxLK82yd+7IBuSDaNs=_(@4RUIL^E*pc1Zt0>Szk^q3?jVEA%nf?q4~b zn%Gb1Lg@PkE*Rb!V`c9UDP;vLlPso*t4wi^rT_zt5&d63|K?mINs{yzyaHY#MOrZ# REZG16002ovPDHLkV1lzfkFx*( literal 6423 zcmeHLd0Z2B7LVMAAkuPFQ9?vngxmu;2=|$4Kp~>22$RVKB1tADfdr5Wc;TXvdQlZB zpj8AsT0syB9%!Ld@j#?XK@iWX1zQDFgq;Lb+;-dbv)liKB;@yg-}im*_pTXc!@SU7 zGm|MM7!1aY9TE_Z{`JwkjSSGw65)zY3`T!-3U`qr98_YZGDIL0!B|DI6vo0Tp#XzX z-FUoEEOR_)K6KH!-^i$Nl3LdY*Kd$I#3`w6hc-|1=zTnNLz-Jt;QVRU+|RePym)vq zfB4jat0f2jdBVMQW0<&NyIOtkWy=wdJ1HGU!qQl0dX+s7o)yGqUHOXB+lrhO#DBtal&`=%(1-A2|Mvd!>CP=~~Bka;MK$ zwVe1m`glx`*YIJ3r+%cyuUuy}SJ@CMbywEqRqbt&dT;KgEqwaPW~QlkrJj#hz4J)d zf)|ZVrNJ>9S7Fyan;vGXnzX;}Mpy&e%g{U8V&o|0Vp~)1cMny8Z5}xnmA!rC1J%m5 zQl0QL(a$Hgm#*KSyMHi+v*MGw%)01>^>>Ufdz=ovz0>e8dy|RuCfB*RWq)GD)>%u- zU@QM6O|C09F_s8nS!itOm)S|=qc)FXMVZUKi%)*;*H-;_v1AL>jXm$G2Pym<^4oi> z>VWbA~bzEeedc$=Kjm7c1$n{*{Aod>-H#Lb?!0u zPIC2KYv%zHU>acLGPU^h6P<-tXVwjV{c~0!!F53Zcka?%3i#0MlI1C9k4#j(f}3NbJW_Y{rvd{y!&?by2}N2-g6gqW)Ez= z`q>H2$V1bc>xMsCSMA`Hcwl~_gG_M_$e$0GsMGb7E=B`0>#Uv6C`yAx%O=+^Ecc2J zUTt*sXxiC5w}6B-&CAR0{`8aJM=Ya<+Aw`hLF-A+}C6Mo364K5LP z<^1SVy@oa8oS^p@rMYQ(mUOqvJV9g>Z?NO+?k6iQ@=kdUwneHYadL*Hbi0J*J-?72 z|G=m!n;Lo0WLO&C&W!FpwV~p^$bEnm&Eif?aG9~`o5j+tDR%32MK`8lLRTJ1_Pu0P zJb2>((KPbM0XsuAu-ZUP!hGClJoRUTtQG@%pF$(OCh2XO?up|R6TJ@Vlp)3$EAFJs z3%N66_vdV%v{lj8Nh?Kqu6IZ7Xj~UaV@cnV#-oNxYIW+X#ujGU8(pi$#23LU)-!E`aFmyuJN$Ab|+_fYTqvf z$M7PQ@7~<$+;vjY;>{Us?Qg$SS%~-}kDYGi7u0wT zv^IV9y;st@9X`SHcP1@XPc-B#)o*RT;Hv9Dosox@iJ&6z`c2F`@vtDGOw_R0EK zy+>i-^40n>%Q@n0X4`pX$#;&sJ6$m;{~@P6$H6k_`+Jwg4--_iP2QQEFP$w6x2-HZ zoJZvBjCn+RWxWsaFVcG^cr+aU<+Qb>Vm!B`SU8`H3!bpR@x?Ue?EYl9f;mCQq24#h zYD6`2XvVd*Q)ahK0o?Y@pvkfLjLAO7s8?9r&YrSwo4q%5dzBVVoa}fh%cEkSSJiXn zx&8>#ANLkEzL;88lEd;aC8l676V?j-{pYd${a=q`bO`6AeeM}j?_;~}=Kg6Bj*gslIQY;n~)6?8||l z4iTKov!1AXrgy&V%&qCg6h`t&uDhET?}8nRCX@4{tUQ)o4m>ug{)^AQIM}cy+gYVP zk~%o}na$m(&cs#f=`#~3r<^P=k~@xO(XtNE@cF-at;n%*TsxSjI$vOF=`D*+dcH~C z31-9@Y~u31q=&fPU9w05Mv}On`13dEKkay)?+(0o^i zb@YJ7;({zo*EPbn5c1~*zh$job?HgN_cOPa8U?BKw-x%yhPqbu)l>>3vNIf$fb@Qw z_F>xz%%qHz*5fBPi)%j98QhcMa_9lEE&Y1fl~N8~q4!jxYtzQzbm|h6=^0MZ6vyCS zTP$Uau2&oDoOPex)agi&+?;Zco`wm(T6$+{SC@tDg^2#@h8mA0FZ&VB-c{bU(Xw-^ zEPl|(U@TIF==E_CXD$;$!~~F!@L+;UEJd%M7!1o>B?X}bSb^oiaYBhFuD9kS4lCq) z;ugAbNF1p@94`z>k--rup0b=lR-d-jw6%!>8!wL|q5{o2qrpgniKo6zIwm7q3uAnM9&esU#?= z1Vk1`Br_NcB8ftzQ1B=MFHe>zKowphpP```~~hwfv? z$kAOWP=yM|3~1I`dbxs6WTOiJJr4>XQb;5^oN85iCX>k)zDyckl|K;BA85 zIge)NcaEUu-tfPJejP8ZFWR^=0}v=tW0W1>iPQMYW`4BS*9VWP)DLknuU17+6A z(bF*fWiY5fWLyLhdEzwQVl|Z7roytu+J!k6fwYQRFwEC<+*r@~fpJ9bl12P8@b8!+ z;t{3fzvFoeeZ%4_Qz#KxLYOR!w;YBPf6ntq;5SU+=(Lk7WXbHmIMl!4Sfd3Sg6bl& zR;1#2*(UBw)YD0y^YR3Q*ghsilnR0a&t-({C00)-Nk!M<^54WM~On@gK#>_5ip z&-q=vG9K0x7l}f}lNfk1iA$m~-Q1Z}cid>U$Fl$T9FIx@1a4#)z(ZsT0}qhtZg>V2 z^@LBR0x%!og8-HBuDk#H@c<^3!gQm)J|2sxxq!S*CQCD7IUMHrbh9)gn90`kSwx~# zDnkEFdbbQ-x5au;Jv^fs_Xw2E|a%U6krK@TdPE$7r55bEYW8T2D~}J0hkfZZ$a&Wt*FFU8WJVP zU`#*KyeD9G<=LV_Lj{`?Xn4=q*b?iOVCylAie9k;e7We8{2O1FoFRRj-hJ|xF1_X_ zPM>~Wen*=Ay_YPntZccBjnfM2+s&0>7P+&(;ugF6W{w!H1!fAHzb~AlyTy@>zGC)= zkRKSFsjW@xnRemH!r0vSe75D$3=;Cwo|w4-sVnvEEN6iqdkjW(44Y-#dD8gt7srz- z!ul4ZO>j+Lu=$Doq4bxxTw*5;RerfAr7l6g`^x2!h>Oudhu5qq+i>_{@2hJtE0z1t&7B)H$CYK)388(;&ZiBA7Uo?N}nc8=ro?8&+ vbG<4ico%KAo+8go_2|V}EX>4Tx04R~O%msD-*;W5I77m*%Rt1!$A{yg@2$MaKgapD)gn&YdP&Ox%2}B?XNgx4KHmN8oiqL9B z5KwASgep)J1r-(b7B`Bhl|@^Nir~UhRH}CpP_gy4*XQ2;GkLPi`QG!M^PTORXVx$E z^_*fb(*T7+O<{Yv`6It9)kkj<@?9>B>qMb+vXZz#a(_^PmPo|{VGN9xCrV&6tP~1R zDCNz*<;xQ0TYWOxGlQn-qQ`F5(0+7x5^c?f{vGT4YPN9>Ii3IMYzLkUtX;DByzuwo zUf;&<#Wl5D_lm^mPnQop*bA+A*6@62PiSRNd|R{4=o8E<{o=FE{fzGnQZKK0zBP2xn%W$*u)@#3d$9e6K!qP zV3AA>o;%oj{X7@7@KmQJoR!8Bop#xD=*tqfs#1-jsm_6QUux)i?a{8b%|D_s%O+C1 zs#IP9`1cDXrm2Ra1F4g4>l|2|HRWY#TeoXiP`GaA z*};zMbHDU~#ZEu^p(7?WkS-o7u`dQBb3>D`zHinT?r$ zWO2jNrfd0YXE$=n3`a^CxIs?A7J9e~YUe<4de*8ht$u{U(_RzK; z8|wX1e#pw<=&4sXXV(B!j}Ssl%Ob#l5t?3asvKCti(Zyt(JwICx%_mMNvCd~ zL_2Xx$7AequD9+V{BtI&?gFpa#C!S^Avy z$vu{x_6tmgp!YD*1)N5$Dm$VH^Ya&M&^MFaEiF8onsoWn@}Qha9+gJ5Pu;x4{cig= zrPk^dFZs+^q`en6IO1@o&8asBZ9H{twMS&zk#)6aN+~_R!W$1UuJ0|>%II@EeC&F- zFx=ze6hTeRr6AKiRedy3##L697D}U|s^lOlF}7RZ##AHCdJ$MUIB?&lG(9T$3)iBi z80R5YckPMn`m_Yc1H$^@h9fru3oTdPoxjzjUi3J$@t9T2;d~9vv$vI>G}(J6o7ory zQ%9+XO47V61DkVw?7BT47)6JN=bkL2KHIIaL~C})gP`j=mFq-vR=zC01zz07a15=&A6$# zJk5(onITIy(mZ&rEvY{mYiQwbx|rAnU+Y&Co@&fRTSw9Rk05bnL*=v0ZjZk@D! z)%DC5Pq%$1P0+P6RGPv)!wdEE+qZT&u&Hy+@-;dGf)AF;L$o`q90t<&HVO&`EenRi z@^mcnbui&e7d81*ltw+Ap7`@qImlWT07UG7h=2y}^Kww<-!?B`g= zjmM?@q;++gr1;gh=sJSo3ro}e>l%tJOT{RZMyAl!bt&7`_4Q0fCUL>)txT^bmiZT5 zWgDEh+I{GfEyeU;LzDQt#il1+gf`U=R!Hy9Aq&0yLucud7DaX&n*Y5Ugg z-!|uFTPrtLCXbA)G5a;RGd^YW>;=)p6IRBT2pv^f_F3Q91G@$s~#f_Y11qxqZ8{jBVEn+r0=|cMoK(OS$}{`TT-y`}I6F>*N)?NJqO<9@l>_ z5J^vQ4BS$O&3<}mu0c;oOKPia%!#dEqd8KPW>aw=*PeRA@9KUIAlDugX_>WiIGtKp zMQWN=7;(Pm(^g|Ct^4Up}F%QNnVbHBl|%BI3gZT1@J_GNW)FkM^-tUH`*fE zcodO%;*_8SN5JB7v9a%H$mH$`Z|%KTL&in!RdD{WOdKzTVD|)AB%e3Ys3ay{HqmCh z3|5KMe#h_yIK(Nn<%v3;Y|hd*I;t>63S%W|4HbGKk`KMXN#dn3Y78I3!7*?w;)o1k zCcJ}}3k7cz^v-@%D}QnXG53c59rWvXseMt$mF^~n;#Ef3ZcL2IUpik53HfyOUlJeB zqYC(Z00s#ZfXpM=13VIq2M{0{41pww0F$5zRBVw<4vHXHMTL-Kg$NIsil^W~0ui84 zK>t`JM3{iJ@pl`tg#Yo7Ok-!Slwgg3iqDUB- zx8u$BS}uG~AyWt-9;87802B}i0GUMO0aO7V0(dZw#G~*CBmzi&mt7_n$Q7Uzc8)}9 z0Le4bTiuAPa+cRp+5xgf8QRNP9o9ql-Jv1;8X|5>tr%iBbLLVPfRyM zHG=7ERi6dKOC&KuSo&@myl#vCfSaH{-hzLpJ`pyi?JAZeB10-l?xzs_rTO;&#~6Hs z5G<03|H}1=kg>2#IA;-`$7IO)joc34-rNt2H-TzS{DZIY=K2RMAk-g?d{BHphU;Uv zJ}3eo1pZiEAH(%Q5%?hR$LjjOh0EaW69rg=+}0|P=LMzikCKsR4U>4@o^Gg1s<#&Q zf;A%1mv{xsP^ih%RUZx1*9GQ?P*=|8xa;=l>l@G2p4VZJiHHW-Zq8ifasEw$!72QV zvrlkWwWx}?=^N^^vt`rnJWOO{Wy{RWtl~@=sZ8fkOrGcG#q^PTuXOhcqtK6@+|62qwYR#<2Ug3z)N^7s{emKs+P&5Vv74DdR^ rm_A~CeCM|hH7pK4OKjjG+ITkZMz!70mSmBZii+*->vqs(Mf$%1Ue}SH diff --git a/Resources/Textures/Clothing/Head/Hats/beret_security.rsi/meta.json b/Resources/Textures/Clothing/Head/Hats/beret_security.rsi/meta.json index ade65863af..28bbc3125c 100644 --- a/Resources/Textures/Clothing/Head/Hats/beret_security.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Hats/beret_security.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e and modified by Flareguy", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Clothing/OuterClothing/Coats/warden.rsi/equipped-OUTERCLOTHING-vox.png b/Resources/Textures/Clothing/OuterClothing/Coats/warden.rsi/equipped-OUTERCLOTHING-vox.png index 3b01d4176c4b3c57943f79b766855f87bc032c34..56983936f4157bc87595c9b0b59a06020c41db69 100644 GIT binary patch delta 1667 zcmV-}27LL^28j)j8Gi-<0063Kaozv`00DDSM?wIu&K&6g00u)zL_t(|ob8%VXcJi+ z$G=nC^bgxj+BBJT&63NC3`9W|+^v$f2Xk4)gY}>-tSxwGVkxY6EbG6b2>yYErXJRd zTSdX%>`hqzP(3V#f`h}-9yZw8%p@_1D@hs?-yZ54Cux$-8-JS>cIN}(G4tO1zQ6a) zo0;Uj2bh?cn3$NDn3()O;XZc)MhFIjgm*ZxZQC|1EG$5dDhP!_hWf&E(Vnhul1N4& zNz%IO1VJEeHV2+Qdt5V9seZ@nztKZ-$o}{vnr`02BhG?Ydn=6S>u$WKtD9_f^N2;G zh{$r034$OH7k|&A!{Na4l3WuL_H=cV&Q2GS$s}H_yj)lRRp-~R*=$%@i7@Hc>1pKS z-Q>c>a}Y%l9S#Qo;FiZjv}K3G0Z|lj;o>>?csJ3T0E_+$={W#k=Z;mfOScatablHun;HT_Dk>Q}u50#`0!Tv51zaF|;h9D*cCoG6NA+lrzHNs_q5 z!66KU!++ekqHuvLmvkjv4XS@VTYw};xm6cf*=sD z*Ngi4kAo+l&#MNo#xtUCZ*zhg0RZ&ah`z43fL7ea^8nU5O+NtO;&}*yu&Gb~a{6Ac z7na64jHS~!dh{s9(rH*4>)`cz4e2vE=HuO@UVr!o0MyqZ0K`5#5AxC?KINX@2yF-5 zZa0>emei8MItp~X1t>fE4x;_uJxtr}h{$qLU0*zo*M|?|Nhrh;l8IffR$v?GM@vf! z4jedu`}gmwWjdWk^44ugj4^e)<>TFCxM>S!_wPr2eLXA|iz=SW<&e+kv3F($*RzG1 zjDLcDtBw4eN*0~__0%aGzkIpq+&QZaw^K>o`b;AL0QSzz006!Xhw)1~jnPm@_bcjC zc-iy?=4@6~yA+zk%WMHCF{&C&4?!)V(NX+$^EZS>M~#MHM#^L`5Ds&+v$}um zXkkj0&dXoRuFa$T)bt(z;PrYTihm+pJil)5z-B@hW+JkzYL?4~MW1<2@LIMG+aIjW z4EM$3MRgHb238Xb#&S%&11Nz09Kq_;@!-rBX$mFCF%M@i_Xew$0ln zS4yQ_7=7_L#?oolaLkOQ(|;9*xse?rx(#sEZBY{_5^ZjV(A*3Fc>2SBR()ouhE|tC zbECQH!SL$v$u|2sx1CO>(Qvvcr%^5!y)YXv5Ds&d1nFPXT2e{lWSgDPRbm#H4WOOB znuv3BpD<;1c9u09Go>20JRWj25$CkIv7p<4$om4)?+WVi$u>Kgdwla2z}gypLm-HW z$q=`1_&940y4g2;921ivt|1Uq_ae-_d0W)+^t%Eg?+X=Ul%jh+psl|j)(`ieb{1w4 zKtfS4@nKe|mbU?oefsPf?nEF+7M)I5OY#ALRYd_NYqwj?#Kh#k!#^aQ_+#~$nHK;6 N002ovPDHLkV1lJYG4=oe delta 837 zcmeC=y~s8}vYwfNfno0U#y3EUu{g-xiDBJ2nU_EgOS+@4BLl<6e(pbstU!KLfKP~P zR#sMHeZ#UPORX&JG&MDC#bs*5#7as^LPJ9x9UOv#!knGl4jeczQ$-^@Eb5@HL0(>7 zWMrg`mA#XrV^dR;tE+1izknAHZ+2$Z4n^(zcOO{PTUZnc3IokIILE#eNXeB1`33*S z2N>Q+$ix9vau#?*7BevL9RXp+soH$f3=B+Ro-U3d5$o!3n`w%c&s5(%yUv#{&{pTOT_hfwpckGl5U3|h6q_iB`` zq}>M1zdRRi`Egvind|iXna7iRMgLh1+&4X0>|SXS9IyA|-SiWp|Kb}gzojte3Fv&4 zX8AZ*V2<`5@dL~ST#9oTK1ehCc+O%W{*TAt&BqVwf^3f}Jw5*MocJqw;YftL7sH{M zTeu%G3D>9cNF2N||NP2WMs;t@#}YGb<~y%` zmFAM-$=^R|KYL6|vj(V_H79gogOG4yP8jO0<1{nqasulUMxmpY}htZZPnXW+16sAg}m z31Kj{zNwPIaMQZpg5_mH$CEamwTvpI%NKxjJyCDixHF7t!8L|WPpqH(xTEjl@t1Ea z%eg4qgOhhXzY+8L=0Uf$HV0K3KW?1x$xzD2Vb`?HUt$=J997ZYDR@#?Eh~tDxq8Zt z#=9m5c%x0P%xmB1yoG^>X@#kSE=8Gi-<0063Kaozv`00DDSM?wIu&K&6g00rSmL_t(|ob8%VXcJi+ z$G_Q@wux+;YBSSlN~o3SKwJ<{S}F-Nr--0Qy-5y>tjxia$DAb8yNBo=ge|KSl18DJ zvtcE>ClNNm6hWahZ8Awy+m%k568rYh&M=v@bzYLG`)58dG=DSi&HMg-zj^cC(BBU* zFfcGMFfcIqpJJlDf#-R0^X5%>JRbSpR4PScu^6J!DD`-)!1Fxm?(RlUPY<@Yw^6Ux zTh^w!>GGv3l}yK*;!oYIQV=% zxoz0v!DKAfu^{ZHzq-2G&_{VrtKY4qlTsW2%H?u{)8%rxxj(~b8Cnxc{n}Oyy?wn+ zeQH~^mh=w|zy#|cTwfR7IGxBnU0%w}+V_rDhMEw2Y^{S$+S zJ9T1^!GBYRPG8d+@ObMBBBhc^djAh%$Yw*NR5Cr@`l4l6%}DynYtpn=zYetehX&w$ z;2KWN%;0?B+OF8%Q?J+S4gI8Zsa<_vtEk7Rd@2Fho$f1zCH$Fri zrN5#m;?=8Hx@u#Bbr7EC$up;uEC6JJb&v&sJaak;&+}x0b#(LtNX_WzC|LmHn{@yHZnF-g{eFxmlep8@1-*hW!8%A}XXns9 zk)0iCeX3Ug0MdRxGKqOK?5~M=g1|M5CzG_pwZ-=KcH3iUo&i9!^HQ{53wcu}F^{z0 z-?l+tx&wy`<6yWsUd4DD`kB2 z7;!l87t11>&B|@GHc)4VL{Y@8Y8Ahl&9LlcWPa-ELb_H%w!2&RAaEQ<-1R!fdwcQo zm)#to+9nzsH2+g{?6gaEelixr^xpM>fdM4#b_{NA(s|MbgPWU3+U*z^7ytlF1DK4( zaI0E{D2f<6?dn{Cgc8a5-a!62+wD>gPZAc`VR z&CFmq6q18L162Sxvl+{w5H2n*VmTDTnX$8So4RO1FMK{}DHla8Pz3;h zToaV5R-1~I_A8p`G-{2N!V+?OPhGN&2F(HJ>FuH({98d|D|Ke5m`dRsV1J5~N~V+c z5xGrWG@&O-t&{c$(k2O-&Kt z;DU@{)=rKc`yL-YzSm@j=FHHCkMB(!$C08?Xlg48g4SW$Mk>QONOSPGRiEzw02o^P z+>m|_GYs*1y?Bw!p(qGP5`PFu=S40Duh-j94>-X($k5tneGQmk9pstQDIW^};dx#z zn9x^!S6`{Aw51h&>TPg8?na}{Sy~-=$n&_{p;DZV1OUL17DseatL^%Lh9^&%n{So0 z-!In)v>S|;0-)S$l{x!%%3`(BR1=^qhHT*hP#dgXXpX|^!}zD!V;W#!@bBVpx(wyC TGxqWp00000NkvXXu0mjfB5L*l delta 830 zcmZ3^bBb+(WIZzj1H;_yjcNS%Lh70G|-o ztgNg92M*-r<&~6_SXtU>YHH3@(FhFe>Z+)yc!Pmqsl0r$ot>MKlDxe91Rb4FRaNDBB{d5Ri!>=I32{lFEy>bJn}L)< zNswRgfBb+UCPw-#P%USHM`SSr1K(i~W;~w1B87p0$=%b%F(ktM?X=wD)d~V`j+?th ztEQS{=3c(`|G)lkog`+hZIi3_-*OCs?^b=(-^u-sNl{p%*YUkYXlQtM ziIiMNcC4{%(jJz|b(ItSSyH4VW=L($wXoTuvV}kMpVo$1JUiXn18-YQZ>st2p0WAQ z_5)ctYd!Uv7n9*+wd*z>Y zT=l<9>P3HCbZO)a>^tLd;St9#yR+w+T2J3+X*TrjC`xJjCHI`ed6vKUBPK51qZOQG zpOuq)3Kc{nvRI<#ALPujeH1FD(XBEu_TOL0pdEpwYrB}%->5vk>I?rozjIg5&7GGd z#bEmxx9-i0Zh?(ZkdP6@xtCUyWCb_u2)gQ>;6o2pFX14E>in)I0i)k3} z7P@(`8p+$SHVPcq?tEbOu4%W!4(@+j9Zv1v!eRX)wS5AsMr2Hl8hc2DP_x4}ne!!| z{{*elZit(A)-QI!K|YuD`L4`+_Xb6XBr6KWu&thXuU|g(;PH=hBW^zwQg_fgP-p8g zT~IyDz8L?dq}E=rpTetb2!w!}G?=H%beWShMWC)U^(8YpB!r;4>2S znBVDaklJ`q(L;Ne?v9#M8nJF1<}+sZpMUEt;XLU=YD)&QiTveR0=`R_G$X_2ezMkW zeW7yJdFPge|BPO}FUw?+^VB){DZ5cyB>jPN;s3yZ7y1ob%q8r(#Gcwa&uXr1e4|&w u&Zsioegbz{xxdc!l&0t(?^z%JU@c_b7G*KFp%<9g7(8A5T-G@yGywoD+gy$S diff --git a/Resources/Textures/Clothing/OuterClothing/Coats/warden.rsi/icon.png b/Resources/Textures/Clothing/OuterClothing/Coats/warden.rsi/icon.png index 2a06209b62840028292224769d2a8344aff2e674..455a92bc01dd734dca4ec8ce97509f7441f32011 100644 GIT binary patch delta 158 zcmV;P0Ac^)0;B?vF_A%Fe|||sK~y-6?axsT0wD|p&~~S5O9UzRzwE;5hfyb9V26Z+ z@Ms1Ze4`9l`agVSjl2SCyY#)D+dL?a)DpF zmq|oHR5(xVk3kN@APfW{OKOLb0{{PPY~q8diu!>J64I^)%Y^=iN4S}U&|{2WZ+zO2 z_Sc@USsr+SSd0WF%L6AIAmn$J`>;ltg#w@~g$O!JDJS7$jpBD;Iu+t*g)%K^!fHvG zpawz_TON2pKBzD(54=#p3aaIS7ebX^0@Zhu&_c>Br?8yRTMKfUrJG6k#Um)aUl9~P UIG~-yZ2$lO07*qoM6N<$f|JBpBLDyZ diff --git a/Resources/Textures/Clothing/OuterClothing/Coats/warden.rsi/inhand-left.png b/Resources/Textures/Clothing/OuterClothing/Coats/warden.rsi/inhand-left.png index 62d25c958bbf7696ed424a7d2d29e1ef86b88c85..b4cd26fd59d7261400dec8dce460330aa3dba889 100644 GIT binary patch delta 879 zcmV-#1CacR5Tyr@88`+20063Kaozv`0flKpLr_UWLm*IcZ)Rz1WdHyuk$sUpNW)MR zg-=sO(TajaMI16zCkvt?j#80PE`MUY@OU5R-E(;FK0v6Im}<670IFsgiD*PjXI90I zS9D_lgYcnGVx}HTE~emFU-#5UbrokCHVR;1h}Gm~L3a8^kl4md<&fILHc; zLVQjYb% z3Txbxzc7&1R+3z&HG(LX5JMayWK>W@2^PY%YowS+(0RneKkWG9Sijwh=93~Lv)OydHKl`3`~K=B9wqtVC#n<9*r`qh^nD^=`#{`s%Dc@ch_SEbc7 zAWc)(NfO*#Twpev0e=9pEJM591^^5O16<$TVV$N(lB9Bb(s@-HuYiZkO8~&oS_DCW zAP4}U7!R%8df&eDsvL`?d|ItmrQ<`%Dc7LSvb`kptWLbu*^?LKf zS`0tuZ#$iX$lFD%0P*WP&R<@B%-dccvjfQ6MdY6#06acFweFSLn!8sDkIzrFmaB9g z5fKp)5fKp)5&2E39WQoMbe|;K@!l0cx*hM`EoSNVxpyl-x_vI%9o{#I_PN&ukZ7NK zR{-huxpybQoGeuP+`AQ!lWL!PTL7u{xp$Yr9NXt4;{(y62Lj`d?^OT*002ovPDHLk FV1mlzm0JJ+ literal 2058 zcmZux32YQ)6rR===oM=zR1jnsHc)A2=h$FXAhIxaLeI2;p5&$Og{NK;w|Ql2TUTR3t4s}DxH#&1o}m~;B$zP=vs<0^)OGNYHF5Q01J?%SsZ#N%qzcuZb z9qY%^v2|^0HvP8#z^$0(8SUq{O>X@#>mMQETK4Vw+1Iy^cp$AgYLbF~DZ6Jv&X&t} zQ$nFpn}5oD?X!+kGg@!nzd5nGeoH-+zf;~mqWI!Ca4|afe2+t?(-8!bmzTF{?AWZV ztoHWy(t?}5^;cXtDOLa1=D0zpZmwKoQ8 z+5J2O#r-OH%GGk$e43R+J;O;}USA`I02+d9vuZ*NTfwWam-h=nJ2G(Ua|9MRJF>{+ z!d;g9U%cbJF;9=Lo|j}S6Az+4SGrTV+2J} z7*1j&i2?+w)CN_i1`R4x21z0`1-!z_LP!;)Ags|cUa3;GBOs2!0L75YHN+lNB02y? zuo@YBgC%lp-t!!bkcrg4?sbE3qek*Rw8zfAo8Uuqe(}Y4Hh$LG?_@!YBl1<2x1{GE1SYinJmpRZARlh9f=i$XFKPt6 zjCw(Dp=N`bGUGU9HF4&szash6YDVUB{UAG#1SpSi5^!cjx0j;G>gBv93QiIzL7*h* zAq}*VqzxnjW5e>WVOmoT&&`HCO@=|-ux1_{6k%^LDZmc+MTd{J8yaAI5C|ZH@wBV? zMl%>~x10sJp7J@r?|3C?EuQSSMyO|2)|7zFw_S{Cf{Er0(6SkfUbxoDxsHJh!TUXULlptMV`n+)o-Bahn&s~_>bG6caCFa_T zSr5aDhON_&eX;Mz+5?U9{ReICD><>F^`YF3c>Q~i_T()3+yx!JuFJVBrR{BLb3t>j zOm~}}e4pU{sx?l2`SPd5dnYZ?sOCt9L-zS F@Gl~z-2DIm diff --git a/Resources/Textures/Clothing/OuterClothing/Coats/warden.rsi/inhand-right.png b/Resources/Textures/Clothing/OuterClothing/Coats/warden.rsi/inhand-right.png index 581ba4b95153a40b2f9c92fc5e83af602c390c3a..9d7d68d0ab92e2cab1800fce474f6e6a8319695a 100644 GIT binary patch delta 903 zcmV;219<$B5WNSG88`+20063Kaozv`0flKpLr_UWLm*IcZ)Rz1WdHyuk$sUpNW)MR zg-=sO(TajaMI16zCkvt?j#80PE`MUY@OU5R-E(;FK0v6Im}<670IFsgiD*PjXI90I zS9D_lgYcnGVx}HTE~emFU-#5UbrokCHVR;1h}Gm~L3a8^kl4md<&fILHc; zLVQjYb% z3Txbxzc7&1R+3z&HG(LX5JMayWK>W@2^PY%YowS+(0RneKkWG9rF31(YQjU_qj)Rk=f2C)gMtc7K!HRo~Bo`GKvk zfAT;12M`ev5fKp)5fKpp#BrRLYsQ%TSltJ49OuTEO17rF@9H+DwLYjBV{$1agb_Y_tv`ReSd1>yWQ^Svaj0YJ=uW2-P~@s#j?-ZIc@VEeG&wK+xxrTjZz1- z8>Mi2f9Kud4}_POh=_=Yh=_=Y$aihW&%UdDDf(QO@w4w58_;$9?7PNS#-WYN&((MY zgf=ce*U9N{Swv{#au;VcAhdD0i^c|oHZDJx^F=GPak(q!Qy{c)xhv-egf=dB<@6*7 daQsaFtKSx|2LhYsdiDSS002ovPDHLkV1i)avBCfV literal 2066 zcmZux32+lt7~ZxB(gSNzRHU+9subyFlg;MXB>~bjC9$N$Hig!+o86bNl4Qf~(xe4} zGJ*qE1ZhDL6+v+dcpxYa^(X_i;z6bLpo5lL4?L+AG=a=5*E z!I%ZM?29RjWw~70m@`lZr@W&Bon@um8Y8{3hmotBQw?pu1%r+N-#9lvnYws}is zzudog)5QGcUmxoK<;FAH-cRk!+57VqmQ9#2 zefspawzk8#wz9I)Xf#@{n>2ayWC+xnW<3I5nM!$C#ijo)BSAyBW~EzV3}grag+*hbU|42iRxD1;z;AV$z|c5E zS!Bhk+#b{}N&uxaltzm?VnQv6K@t?TNW7mZFD^-tz>yVOs3;MJAfnNzCaTwnQh?CW zG)-tpf+TT>z~#EI!p88hJY|R^K~oH5P7)%DAcj$umi38C6e|XG3<(TH-0orau$=G# zIzq(Q2%*zxiBL#Y9Y@QGqZS4yv|JV~d+Q>AC7KD{4$#9+efoI~MMicKd09uD@InInze%6e$Jk8^@k2Y{DFp+>GlRU1l ztgvAYs63EaBR~?8)%qyTr^9tL<-;kGrEr=y_;CZN_Z!WumNM(8Wc)lyfThO9z3Myz#X}2Owd`PMJSE010ag(uuP6qsn5qI*W0KVh>vhO~ryxUAUHl}V@hg5F zD!}3qQ;F&h3TV708I~JbN@i;Tk0mC#g={zg;Gu=}G6WMYvnM{ij^|BgfYVwZhf^$R z#?5-8A17HOPjY_X1A2WjUKagIl$C%j0JDQh!19PEffgiuo0ddI7XsB3EeZEphm)k2 z)H4*tkR}WzM&w~3)I&KkHw$q&8-{Qr4)ai>h)2Ut0Y@+{*?iQ|a03HjXn+LU6V!`uK+nzRW9qdDO<6 zt5&@m7)71i<`(L^E?BSavma@)vE#ito93*}8TcboHY0lS z$#F{$^c-kt&;6)zllpn*>`z^`=KBL_gAW(&A$z;oM~tPZlWxmBUphJMhXKR9@pN~` zN@nTUHy&;zvRn55dCTa|cP`cJc<=b#tw(YSZT#5H=&#dkcc0qdw5;OP{;y+qp4!hh zJlju$G}~e6^_oNd^k4{WiIq+0+q1ntqmXDhpE}-o>sxK6&E91t_2108DZS`?O6I}m Vd-A?b>r#8W%TZSRVo}Yie*ui$RTp$|82@4=DyNcs=dD&`Je7m->8h7XqEzcs5}8&Jw4cZuh09gDcyo4si{a$PiIz%KOg~0=P%Gos;g06 zUase*2!yfmEiEmm7T?uw+N>SD*BdesjQm!sRWD17js}vF+^N9e;2^GFzpl(btpGat z*)zDYZMz^$gxzjO(_eNp9@?k(3WsH3VWD15@H>8w5Q#9JKP4rFyg1g_2-MX9Daks2 zXJ;omIy#j30~!H;Y%M{2l)Ek(Kr)hwp{5(dJj-c-QybI24<(HJQfN*GK1+LKxhnsZ z0#JP}HpGyo`4}K!BsYG?-|_b|83q3M* z-n(~E)OrmA^$tIo(lO~0?{VY^%);}x#cs2$1Y#XPQBe^Z8XCMQ z{Q&z{waOh3umD_9U-+&Ozi-}z!k8Gu#l?BaolYmZMn>@L*XL%u@=u16hh8aklGY5Sm_w{G` z1Wr$*Wy#=kNbPC$Nn7(*`+J9l7h`Uq@`cKDR@I~D$b1z59up=hwX z;r^VIhpy`w4kPp+zjSG3V~we?T!lYi0jBfkgYoxOFus0cqi15rBX=koYD5G;m?I(p z!W*Pt; zPDR5JAFt) zwb3RNZB(jLS%4FsMlz*g(z67}kM*F?fAQ&hKaO~g*KKpLnp?aU*Z*Omh85g7^ShpAj zTBcY72#$h3Mf&P{Tf8&gf}zQJk&bH*y$90Wto{o=Sa60{9C($vIEM zI7iI}Ik?bH#-$n_3s?X~XD5(}A<0o7@9ZVo9eB>9=rF;^bIz@Q-4QCmNgu@Dl%uVI zMu?Rc!K(B{TE(3%Z{@}di?a=KR~YiNO|_1I1y~gA4m-<>i4ro;Uitf#R{-(9f|(#k z`q{G+?2xw54ryy32zndble$1V(C0hUEfx#@gSoI+EECH7*%By}1=!PhJBoz<-eqTJ zn=Sx3ZuqlH*hJe@r-8Zvp2k!00~w2b$Sz&F1hYYobVHst$WEE8W2QpD0(6ay0?vnd zl64FX!y5mXKJR#EVC#w{xX2;;VI|DK6T5clp?Pu))YRy6o;Da8Zg;xewg!lR1xPI^ zL9%E5aTpS9ZEc_z(B0jwH=d4CcJ@-31@g-K2zA|?^!p0QPx+a7jc#RCt{2ntyClRU5~@cVKB2Sv%V8wo+&!>DV=e*TsJrY%;+n#u1E+C3GaB z0xyjwZz3`L!8;cnBu1lPNOUfW@fVw>5)(ob5=h+3%lr{ToLNI_U?%rv(009DJJhDF zW9R*&J=fb`M;%I$6Xni0MsQRZR2m-lJScgO+ft#W0MfLYsSHWmB;!0qW zNnh0`(8=4#(9jT8+IU!a9!Klz(dPB$b>71BSZU)iG&F=x-d5F5f$CogOacJbuWKv% z2LM+Blg#>ebU-I>BS${{7?!Rs`2BvEo3g{~0Z~LlLjxWVMF4=gsR@3+AC|5z9QpL) zsyRWaPmv@k?-^y8RbSN{aAVINSQKTK%Z0}QV009tf&iDxg-|Gz_k1-`>Zem_EYmM5 zdM2GpSERqF13GydabX_75?r?1<@?cS6fT!5uS}uOxiAm#HuB%dbj9;QIsL_8)i3J+ z<;+g6meGrHy|U933(rI6eh^lBD|BKITe9!vtr%)4r5`vj$O!_-J=Rr_Bnf7-Sswne z_zVJp0H@2nr&hnL1FZH|9D4E9TLPR!T)Ol(-_6g@0|2CG6km*u)ogbu2m*0B zorp;i_Wt-IruOc|nv*AS^4@!4GMnM|`-rQZy>p*AlR~(0=`@ zeDB@opU1w}UX#mTt#aV}ttdw364l)aQYKHI!R*eR=ual`c_0Au>`(YS5I}!2DR;hB zT-V-xKy+GTQpN52G{d_IhKcVjg(Q>iqrJ^2(?n>mEUAXb|>Tzm2 zmu0P~R2uf-mk|N%JAY!}J!~c!+}gEE4$Flve#Lwq$$TOttyqrR(-FiIQQVl0VCCk` zko@f}U6mlF5W0oKD>Mb^`H4G#i>TnnJB|HmQNx0UvGLAYacb zrjWvrd984{TzQe{^H`c^6D#avM!~Ao&w1riA@gces8MJGD@?1vJI7zhTX%zpP82;; z%jobIV`H4#?JnAH2!sEWZF(oW6svBNIZaNv)9N!A36PBp(;T5%Gchp%r_%{ZF%k+> z_E_3ua=^eF-lBVLH$(U?_qV}dU}>%*38VC~QwG zhHxZ;xw*Njr^qSkjYG%Pp;fP6)HXG!c7UaBiEMz9HTq>(lS^Cs^3iTqeP*bJQkOz)qqeG{;$`q) zqp8T-&CSiF9<3^+G)mc`7G?+R7DcX{pu^#))DG2@(>T~@BD+Pgw(0Uz2mp@7W85jb zJAMCMnye6Z0(F5k-T!lqJb5RV7$$2#z^ zXCJE#s(IM65AMf0Ks+8fKj8AMpYuAN$oz`%!fn-Us@?}Q_VvM#`~K)Kyn6L2t^t^t znSnc(GvIKnRV~hn!{Nx~BeY_4W(P=fGYkdx06=LYB!2;OQb$4nuFf3k000KANkl)buyed@=#U?gAEBx#k~|Z`Vc3r3};tcwRDuq`XIBz zZmgriz_d58774YpNz|&vn;LFCd(eA(6Qj*ZZYOJq9Whs9Qe_-kopJ+(h?(25Usdq`nnA(5sR78a7hZV$PA^Ag$U zw{ozV^V0!8Qqfn_WER9a-6!$I*?w~V{CPAtH>1;iQZyoyeD>wHcsd_OE5`u;#p5Qm=sBY$aV?UGVvQ7#Ly2mY~z=);ZtR)djoR zD(kCYH(N>PS8ce@P5=Pj-n(zz2LSG~6V&>ztN^>&N`Km~Ttt3ZnV2?qZywEO+R@+N zkLEM&7`rzwKFcpFL;IDBvQWNpt{muLC;a!UG}R)F1XB}YjVKsGL#OvpEz#b@zO13L`fL;wH=+h}uxGttW2?hbI{?mff0yE*T_E&IChYF% zK?g!Hd1&;h{+U*jiCoRgi|Gplo&saAsk zuvk}z`l?c~XDzL)SJhXQVzI7{wy3m;Mt`GemqAqlr$QlUG@5m*zUhD;8jS|0LZJQh90glWqa^Ri)z0N`Jsn zVt_E{S!_kHWA(W=14Cg+`zIUj1jS!z)c;j`g7H(_L|378Dkvx@C@3f>C@3gw3iZ5M zjxBFFNwj@V^LwiO000Tk8!nwo;g+kdeol^{6Z=4!<*s}+l8GkiXu_?-4!fGRV?Fofec zG(;lk%g%;Ys|5hGY}Bzu5_AS?)#4-BAl zEj=eE2g4Q%a+j9qJV}Gxr6mkoEXc{p0RVIYC?6O=LnH!@<6>IrtDxEy7Jr<7+}Mbn zy}jT#4hstl(ChWsp5%U=9Bg+wq1WrNu&@A*07mpho#Y&)o`dnb7wifRO0vM^S zjS-6vn#dFt6%{eD2@R1*j7_vqR{)cpEq?Eld}CiSJ7Qd?4qO`skHeo<-GrJeSAan9wU zEh=Tsxm-9c)A^%p!{CwOVY!OhQmwQrVBBUC&*+mqzD@^0L#mq&X%E~Fo0_n=xCoBp zP+wJ=k)v@b^;M;~1YJO@)k3G!VRuhYTIEqMU4=jigTVj*ICfyqmT!+qx50k?;{kxx zkl9p%GpJjDqr~vq&*X)Q9_;pzV+Yo3IdF(NI6^@|0sjEl=9^VhzcQ2n0000mLC4eG-|Kna< zzkb~$TefVO@xeR3q>a$!kJovYtk>n&5whTu=3DgNzmLKCXE8Q*O1n+l0@T&j8NqiC10U`&Md<76o7H*N^S-NB zucqA#*lvA&y*wTm8-wrWEwgT*@+s6TT7=5VN}g)*+Y(^M;xfbE*@^Lu8}ZSxpRjK` zWT#7R42g27?EFD-y+z#HDemi8zri?qb3AP#DE_v#Hh)xCSIcWfd3iudNu(6Gd-pD` zUAv~u|5yPe`I*xgdTk313iqonF2=x>3G^R2AnSX3f#&9B6pQOeyG0d~fIobG6uKg9(EyT>RJfWnhUdIa1E!6K z^8R$f%6~sGF(FHS4m?)&sO!4?a|%H9IoJ?k!o6d-oaZQr@y zwa4q_2rKJJtPD_M@N+mU6hHMvyP=-jx}?@fW`Avvh@W+VKtK+LeB%U5cHS$-AYJ~1 z0`TEakDV1qXU%KCjEQ1+dkBkTt_h~2omM5MzulsKP?KN# zcR19t34V4yIM8C^{SHAmx>yHEBWxN}U9^zg0M%UdI7271$Pl-`bk5J~0;@6{0*UraX_wWAGE0 zC*DA&Ko5BE;DJof86F;XHODN9x_7>3yDi%SFhS9pv|x?FFIcbunSVrKVd1QEu038@ z@w|+YF(HDs3Sn%uWm|yDmoK~8@7#H0dSSd?#pRi!*VxzyC(#+r7gXFTWksMLA&kT+-Ebfce_lPOTX^_LGMtZ@$BgP&?vsCOtO8^p)WPfFqf&U3O?J0XW zGwJ3gq%;etDUq@IkbfAIG6_z5sfNahqycZUdk;*%m& zqzLCyoX0MCJroLQCr1$40>n#H$nB{y10000*($hmva~MDL&u zg?#Yf-n;+%f8YDw|Gfu83^BwI{}WCQcVxM=E;UV)z2lmu$$xTbU7j57$U$=l;hvY^ zW}{9d7H6}tf~IM*TCGY=)8uAhg-9$;vr+fTkI!wOuIqAga*{_2x40GuPXkxPQ-u%!oLd%U(|`1pOY1Tci!4g?Ni`~`GHLvNKZ>Go`r#w9Pjc9{jSzyb z`vsac}?YAz^ZAYC`#X}*KE{L6opmOyjuZVg@W?{^`iSQZ50Z4Ctxa*#6Xxl&-eX3;*rI^DGbp)bbDzJ#4kfnci(phj4;9oBm7S|*xg{YYMH63%71$8s;aVDwagB7H`t)q zLAVjenKm1cb9pQ;Sx{A#?eFh1RaM#Yk_9=J2W>Xu)`t+)QPVW$PzvSkA}{vk>o43_ zZ}M;N)hgCx8LsO_&KpSqC!JxHN(FaB5i9F^T!~aF#fz`3?*RZRl?t46Ch}HX%hX9{ zn7y@$Z;zi~C4Y4bilRW%G}P;L?qixJT-Sx?d3gEr9Ctsw$Hv1)SZkeLn?I5Qhn5YW zbpZf`5Ku~CnkE!QfoYncl!6cf0PtBChn5{BEdW5gYSBq&n37Ba0DiLzRom@$pAV(9 z&ldVA$t0X~hFzz^Km}^mGT+DZZWoPC2fD6<5CTF7FMrx@x4BK%bu>C1oOipI=D7?5 z6_9gzm~Wo*CM!RCEiB41b6pnzIEh{|nxik~BItj&65mxIA zp6B7{=zpm1X|>KEmWpxG0r&?6#8MHWC_<7X%+1YVXJ-e#?;{8T1Rp;QPl0eG$2YeS z1Oet}CNVudEzHkMA_xMEZ*K9?8w!CCC&dNW1%qEawAp}NFmO^_h?^=tfw4pak|go* za?%+-ZjvNnERh&4fn(d^7mzV)3jkou+Cq3S9ZlQT@Cb;dB7EP6mJN9EuykR>4000010gyoOVA0Gp%N@q2S^Of)FnF-Q`IFKET|KIL6(*wSr8CqqEbLq z4DC`WO2dHg(jRWwkZ#CehO4iaOVZd$9UAaQicYzE=kN17+kcn%J-}kISS%Kc#bW8p zS{`Dj1mSs}h@ba7PwbQ+*76X&?!9dNO-iHBF!~d!hEE?q7Dt=|0A3s)qY(sn#rZ^m z5RrBqyqTQ^0L&4B_a8qhw>yl!WEg!V!?ip_W{V=rSafceQZ#}9X~$_h4*c%>cW5K=W)=w5lAF6#{^(d9A45@;UOw-nPYj zXs@Gx;Rq-YB35|VSj*>V1Oav_jjq@0bpSx~4$xdZ>wml-+OKeq0wF_@25|2 z{OcFCw|}>d1;BM(vADR1qoX6t&CPWjYqc8c^}4wL6bKOy&z`_MV>qNVIs(9_5sZM# z*6+Ir#>LZ)gZaeo0m(dLNITBZEB~nVl>-0(H;24FEGG1o0wAM*07Szr$swgU0E~QNBa+ItZCl3HhNm1C;(tr1Gn@;RET6n{+snb`R(V`vb)`8O!>>6Y1|c)KNiW7=zg z)+@_(-L5PB%*+h#-KuH7f(Ajpiog9>#Odj2R~wxg0j&}6?BoPJ^YcF`-cNS%G}x0G|-o z@_b6pKS8Vm3tA9VOJ-+w2R`|ikfrU10qAvRw z6S`(8Ozsi+EoN}rg00~~JY&S7`naS$J?(hiw`eM7%ea3qi87&wV zF@NA^EN$#1uri?LYzCO@&({9#j5P+N9E_}sg}MP4QIimP;rMEAVlKg7aZaaH~Zr{s;@7_khVu6{1-oD!M< DY55a( diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/hos.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/hos.rsi/icon.png index 50d752aa667dc71878b75d1dc2d7ad77eec78096..77744fa9baee913e00bdd58415e2272796468503 100644 GIT binary patch delta 515 zcmV+e0{s2!0+Ixf8Gi-<0047(dh`GQ00DDSM?wIu&K&6g00GQNL_t(oh3%9tZyPZf z#($j_U=Y;FSw_s(og$S)I*`Gl=(@46l6-=pDI{>DD(WXFPube2sFkX!K@FJ{Wf?O` z8>?lL4g`20x$8B5cD_tw_YlkW-)Yg94 z6T9y0I&8TTKkx6`2V(&EGMO+8L%tca)t1tFLU3Fv0q|BzzMr2v$8{pMn%LbdMOEu~ zt*;crFvJt$#X7)A6An+@V!v`p-l(&bq^dPHo<~({es^H!=ks2pK0D_k;B^|I(3PBG zC`h?<+e)PZ*MHYkccK3SMsruD7luMt0wz_!Uma*mX%EaS*fcN%x{z9eDB-G_7K_Cte#A=(-B`dhFzg&@rol@q7lSX(*PUAh=jQ^m zl6XSI^V=ZcW49a6qoqM*?$NZxilABSNGkf{$cHB3^-Dr9ZI9653T`~d>QwXNE>{9ph8002ovPDHLk FV1lwJ^tS*2 delta 347 zcmbQl@|tOaWIZzj1B1(wu46!ou{g-xiDBJ2nU_EgOS+@4BLl<6e(pbstU$hQfKP~P zc_PD^RSafkW_~_CGgUN7xdjjE8ra+0|G&YIm6he=<6~uI73k}`O3M(aB9|bU6xie!SP>Qp_qdu~jfr0NZ2s0kfUy%Y7UE}HE7-Hf7w(m9HVFixXgO6s$ zM&JKm$Uddg^Onx*tA#T zR+LAMsLcUZiEUdnCY!I<(2+Wx&u;YPy83~|ZYBr*GWvgh82N&C!n(I14XF#oR&456 zQ?;A%Do2iWVdAarCt@$RJZ_lxIIk(H;DAp_?}5l`#k?zyMi}0dQMX8XI$N}Dhmy4^ fWB4z|1=qwE7Z~2*>Uh2a=x_#4S3j3^P6)BfM1S5F5C{YUfj}S-+)W}p zowJgxr{ggc>P>968WFelpvg+I&d$^En9*LSH;r>%eb1fQB+a6mtwy9*J5LaP^%?!> zd+MktivFQgvb5z1L80D6IvzuYQp>fRBnN6jR+9C#R->yuPe_+Gul_x^4vM1avokYz zp(vL245j$|^nZzM0Bfy=<#p|cUXyo%N8iQW;S;X0QnUmx|-U6o2CT0Ha?eL@T`UbEGmrA9` z%4yYdZFqRNt3Uhp+@6+K*f@6Mnm<3MeoowXx>&oq!hhb6nr%>a;%@ix;&&XL`y35; z`}cRxl{8NXCMPFtop!p9hhF2jJpdkkM*}+9otnV$^fX3g87d)owXlG_kr8N=qS|QS z=;Q>@_*QIQ{np|lDwPU8Eia=|sbFku%s3t#9B}J%8L(QbVd?S`05DD|&I!RYO7Zym z3GBDq(0`l;=#$l24NE&a7JYUEfCoPGT^B*dMk1llMWYzE+4osMbI~X^5{W?e|C`eH zYybdE^m)Bs!qE3*0CWEgFkZJ#&I!R85XxH+roQLZk_|c+jRLT`eRh5P+HL~?-dtP+ z{?AZY`rLs!xf{mBZ=1eAAP@)y0)apv5C{Z7_vH`(jKt+lREV$`%!L`986w^o zxZZ&GqYsfx5+suZ%hR()7M4x^rZ7+5oDR3ERd9pLfcg0p%4Lef!y<-;B+E5(nM&An zYJc@plfY#_xlHl;*H7%69HCmR7=dIc_2s@_%z9=s{G{Z$40!(SyCL-Q@{e!PpfGFu zje~m^V5>hn?>7KHn6=EY_*sXzvcn9!?>$2)3L(`8*=gCu;>Q54ElX8Z+kG}3k3&^e zq*5uYudj!?4Q_31>BV9Znx>&%uiN&~G*K;_)YwKMp)XzM=IrwG`|Wn<>8YS&7?}Ei zuwodf`hYNE7>N3SFk={)`hc)v7`Xa?+Y*C7AP@-t2mS%1s}GI0000NS%G}l0G|-o zQf|SSDjGm=P}jiE$H(5@-ptG_D=W*#$0vb>OIuqz(API3E^cyd?TsBff`WopX&LJ4 z87eEOg#-skh)YhHG6iVTv#0m^fs}YjkYDis`v2Gf!!w6xaX>Yk1s;*b3=Dh+L6~vJ z#O${~SI+ZvaSVxYe>?4VQL_P$ORmP!3En$R{`_BFrYb$bL20Jvd@CJcrH!8)XRrt_ zGcRTGV|eM$s2DWu+cYN*L$^1@=Y%+SSLSQ>-}{jrGo?O&XW~8`Cxyi+(Z9SSY77=W zVrrgnEWP2wbPbXDE-OBE9%Lyf{xk8P%)^Ml1Fq~P3$2;@9%L|S)H8ngGxe!Bqs8S} zwRsM|iZ7V(^0_l)OwzpU^^ZqjpN;U{g}3&0zqwrT_VkjyG5Ozbf4%gqX7#pz&wPKb zYF?+ku{4i;n!ZqsQoZ;E*QiakoE~Oo>SGfmxNcS7Zh?b@$d&!*1 zCJf(SWU^-*VBWIkRpI%ce&5}vW)=AbZBT#Dp4Qm$_G|nJoe7CW8!H)BC-53Jx4&oi zYfLF@{a=?Lz9MSh@qh6Lbu3oY`Kmw2Jz(;eNixVtLt)mp2w)5{c)I$ztaD0e0ssp# B65Rj* diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/security.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/security.rsi/icon.png index 619ad40626dafa109e2a55330075470fe7915f85..177fdb9db4d2a795d52d4e410553e012234cba8b 100644 GIT binary patch delta 481 zcmV<70UrME0`LQn8Gi-<0047(dh`GQ00DDSM?wIu&K&6g00F8=L_t(oh3%9vYr;Sn zhF?pU5DWw*#SUH(DUp;S*v+wY6x!e5-YuJBxBdp9OaDR_=^rQvE}=n0IHZb32n5p* zD5OI@+h}4gcFnVd`|i8%eeb)w02vt>85t?iMLBpTB+x}U;D3qpkV_+8FG`#7VCmq| zwR3TC-nz#;Nvf&_ZPNr?`!`4kbReh~B{V4Agc|@L$^oy5BOdYdY8AJt8j3e4#oN_o zNSx7jZSWpPqJh?Aj^StoNs@LABj@;?Kb*T(&^Ky2IQKfmvuCl@-@z@25` zdbI)olqkiF5Zq9Ti**-XJrBmd0udx$LPkeXf|?+p6k74_nW35>pra_Me#hJf0O0hW z^9LJXyPpD>#XPSWA(#TGyTE;0S<#vx00{4Py8ga<9suBBvEZ)Dow#iziZsF*85xXk X=9j0DSCtW}00000NkvXXu0mjfUzgVc delta 351 zcmeys{GMroWIZzj1B1(wu46!ou{g-xiDBJ2nU_EgOS+@4BLl<6e(pbstU$hTfKP~P zDYxKE6%8ObsB7To<701cZ)Rqem6he=A|Ly0(615>S@2z$3Dlfr0N32s4Umcr^e8S9rQOhFJK&o$!|LkOGfu zbb$JAfqVZm_lgU29h~vkovi_^E;(sgI?6dNe1X8^ts0{*ny zXqpC8D*U=iDQcdF*4Y{2mKDli5&f2~W7jl$*4;M@#4SrmzwZdh6XNGw_o-1`N6qt4 zrIi0~+crPvo!525Eeko<1zRVg(y2eFQ^9&+^#@J?)_>t{b82R0=8yWUUeHm)(5WA6 zH#i#m)$2!J2efn@)5RiMy57~OUe~?u6D4XpBKHZc)NIvfTx@P)_2h(K*E|oOTvyt6 zKv2Ki(~qJb>NUtXP9$J2E#d9#EHp~-adj1+=jLEL4!+;t@(000Y)gF8y`!Ex}u{RB=u4|cx>hGeVR z#729>F@1IffHx8J2QGpPHvASk-usLN$3Zd{8+zp*w|-~`0KmH;{~s0^`k@@aynhSu z;nv9=rMLy8i~^bZp;t`SC|iYt-o9-gYn}%HQh(kAvh;-w?dM&YufUh0uTUry3WY+U zP$(1%g<|rFw1F_Le1I2eOE6B);`2cNotjY-)XWniJvV{FI{y{mzi~UEv-3e)qBucl zTRd)AC=?3(`j8OhTvuv5pc`zLIOn=JB!rh23I*Y?yijBa0Cr6i`-TAk&%~0k7~hqZ zO@A;x34q(PYnsm-5(Z%hR4L^`oq@`lpmDJVPzTDp#(dwaM9uofs!InH01 z0&C?mF55YSVbW+i5&Ce@G_C7OACJeOX=oajmzS}#vm^CmNS%G}B0G|-o zjEsz#DjN6i-(R(ARVlaNL0toTd;6@cEFT{qZEfv9U*C+lxXHD(H+Jj@3JO}KWjJNZ z6rff?^;~NpB~%jR7yKU$)cH2__-($mE;B*Oje zw1;`k20SgokEUGA%dY%C{q9Yc4b6MK-q!iXgoqSBJM5`C$7KIX;R2?JdM=O7#ZO;x z`kmYPIdnqXq|9Y8Z1WZDzW%fGUwUnp=Hn=vrXN#tALm~_x?X&zRZIOdZinBudnWCv zd7^UW_TAVW({CK+-+VWoF{DsjE&Radc^iK582n?K@OSmsX6^|mvcAqt{3AMH!y4HG z6R*C~XL$PB<rb$p?mnpvZmjAlkObmvWaKh z;NtnfwdzwXZ$wTH!-HSe4AED-zHF~I{7}j|=}=ifF!7$O$_c&N66Q)$9JyxDP9ipzDFTtJtZoY{KfqM?2~yhm1@Z-KrdTU0F<@b7bFk#FaG56I z)_{#LSj{z=u#io%6YbmwmfiWY@BH3(e=iFa6%`dGLbxj_oz~i=Y3lM~%CK4X@NT!u``#W$eo{($Lb!ukjbmfr?2LDy zt2Kc8v`Q$YoYva?g}JNK=@iautxH#8Wd#~>%mDZ!1hZ_Xv|25=zn_gCrDSL=lfi&S z9G6P)+p@);5P$AG%V@+glPF?nEss*p){`WeKRk+P#4+bthWE+Z0(@X7c6YsApWE;E z<%O;-U=l@aU0yPYqC!!N#*5x7BFL%U^`3{*Q`$E-v+>YcF0w2rW~nyxT<`9Z?C^#&9_O1b5bwEDKP; zN)vi~`J1^m%+oZ6gIcYW^Vbpp@Z*E)YYXt%kAU%l_8Lpc2!g9n+Oa;U?}B``qv?HU pEkIBw1phFWWf$6l6%`c#{{f3_#rEDjdu#vz002ovPDHLkV1iA6^fCYd delta 348 zcmZo-dBZe8vYwfNfx%@-*D)Z)SRCZ;#IWw1%u67LCEd~2k%3`jKlh(RRv_OXz$e5t zBO~Mf{rjs{t(vK#QOYfNP}jiT-aacU%g4t@TU$HO*Eb_BZgOqyjU78yX&C}Fsc!!B z8b}G01o;L3M+FQIlw&0s80r}~3p^r=85sBugD~Uq{1quc9VGbITo;&Daw8t=O|)(9upWWZw(6Rdq}qCabn-vY4ozQ!Sp=rd9t?Rq)}N z4Vu$_Mt@e~-`toHr=~rxP;%e@G6n9siC6eunJ!}7HvdGhbi|Wi3@sZ&WiOn#Dx+ci zx#zZcgVKgIxBuPRUi$HdNr?sDLCbYk39QT|o$ENRn4Gh05UoA3A?-~<$1;64jigU2 hvKY>NVRz8Xzw2*u#q@L1Y@n+dJYD@<);T3K0RU;jl5zk5 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/hos.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/hos.rsi/equipped-INNERCLOTHING.png index bf0b30d17aaf22b79875466bb7c08bd4b62cde48..7b2f6442de5890263c906eefdaab194f1834b38e 100644 GIT binary patch delta 1155 zcmV-}1bq9O1&s-i8Gi-<0063Kaozv`00DDSM?wIu&K&6g00c)#L_t(|ob8%DXd_1y z$Nv|sVvXF~`Q}m_9tg+jgg}jgNat{!k(16Uf(xrO7}6vtg}S83;WPmgmr7x!kcvQJ zq0XSBNntexA?b>P0T<`N=SpM?1t!IM)~l6d?aZ!L`IsLVuYX3f`=5FH=0o!yU@#aA z27|$1FwCV~f;g{3DF z`+_tesJ_4Rvq%=z^jGFpNHhr=;7AZM@wPLW4A5>PmjyZ(z~I&^MlFs+lK|ksS{+b- zRNyF8XVla%og*Z3uly82!1E;4C_nVq;??GFR8pj{+qFoIQJn z?xRO|zJLBJcD8`evOl2nv9s>JzWxMP@7@7C{LDX#pC3QQ&E_V$-7Yej%*6k8yREFR zJOt*|iE9V|a5rM!&kG*{yB-VscVZ`ms6I{$so5jMz1AHPT62JR(!uTZv?Xa#cnvMD z)0)qkyAPO!bT|LzXwl>tbKPFL`?TL9LD4qAe}4sI0M#4r+l$9R)cQ)3;N{H_ml)11 zTNKOIHy8{CgTY`h7z~F0H?#5tmO)&(2`=Rlgy=h+uMi??lnNl&iE&g&ts14GLWs!c z^Fs6&oFD-J=XHoi3u6&l_fXQZ79JS_?vBRgS)})rx>|BV;~y4-_e<$SsL=wxE#G}U zA%9L3*4v;sknw|i6+5UubeCle+7JK10#v14aE1-Cm6f{k^n$) zn>eA@7-bLW*)~##3}64oaq*J5r?GKHiGRJC7cZT*qz;+ZJf!RaqXNg^ONs%2tfxH3 z7#(GWAV%ZewL9VFilfu4p3UNkB*MS@$vCQ`TF`gKKh`oyawwa_acA1 z*~Inr^~Cr4`};UJIEXe;QnI(QDxN+}PAqxSB~J*6Wg{dvKYlOh*)}e3hWPQXKYSNs z0ASJxaduuZ%?LW3*Jf{JRn#aIeL(a95$Ep!NrezszecIpTUpg=gI09->BFRZy{sfD zzqYqcDufD;FSGMewIOtVK-?K3QENw%AaQvUe|S17O|2QzKjFkO^ZtX|VKDrQ`5Wh} VLuOqQsl)&P002ovPDHLkV1i?0AE5vM delta 654 zcmV;90&)F~37Z9w8Gi!+005o0f$RVP00DDSM?wIu&K&6g000DMK}|sb0I`n?{9y$E z001*kOjJd8VF1jk05&!@nItGqOiXnP5y34mKR-YJ*Z^v3YD`Q_IyyR0O-(B+D_{f) zl$4YJ006z+skQ(B01-#_L=0vOng`Mf{%siYs!K3y4>BQ_ox8$YV%isB)zNVqzA5Ag8AASU+2F7 zHhw96Ai*N9)mM3c1(0@Y10eER{RL3@b)qmUfH!(0_}bq44S=tD3;?Ds;C82w1Kn>W zZuPiM_IZ@p zz`Ep1bbkN|SxXpoAu(m`XNe&{23Wku6(D0U2Br~U$>;$-AJF7pvs0kSQa(!z)qtm! z@O>AgURi2@5eDrG!L|2*`8jUC5d6yL0eDYiz%HQ$_#xhDpRfb;|4NYloxTP17Izbd oc?4(||Gjn@9`J_#8ZggaLapMlhw_@;00000Ne4wvM6N<$g0jOS{r~^~ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/hos.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/hos.rsi/icon.png index b0e364c82595b62246f1167da0eb74a02e2ed973..78ee734ecf8e0cb022f5e8fbfb05e349c147926e 100644 GIT binary patch delta 439 zcmV;o0Z9Jg0>%T78Gi-<0047(dh`GQ00DDSM?wIu&K&6g00DqWL_t(oh3%5DPr^VH z#y^Y|1`NlfHY7Sg`X`t$IF^aQ&J2z$j4q50%($>{qah@&u5{3ZfKD`#fkvE& zT};lQX=%aeT>{(vl1qADU*7xf%L5b&g+hXc1wQP78-~FdV}Ic>41*7Q;0+60wr4`L zut^AiEEE6$H}g5ho`;Ke8_)GRbWOuuHVXi_oKA7;y25>hX;|PBtWK9w-Xw%~DUIo} zDeQ?3H!E?iye;l9F!*ZT+j_%IdIbWOw9^J3cj=MwkdU)x{8fH0ctqUO2)5Dt%OvPf<0dJ5|a h$i7~oP$(1t@B>Jim6^}nV157q002ovPDHLkV1k(;%RK-9 delta 337 zcmX@c{E%saWIZzj1B1(wu46!ou{g-xiDBJ2nU_EgOS+@4BLl<6e(pbstU$g&fKP~P zc_PD^RSafkW~*1PF69=SsiJXE*TCN1{{IbztgI{_AD__BP%A5|KwsYk7A~NsBj?xx zfs{Z=kYDhBRKV~+IaZQ^p`L-Wz$3Dlfr0NZ2s0kfUy%aTG0)S*F~q|E?SyQh!wMWN zjEyR15C6Wu&HEJp87x*@Bo9?E7g4r%n92Y zm^QFF=if`bTb6Vu@%}ZStcA#-va8B-FEH#_-1U;pLRo3yHTDNV^$!-aFZgc$YnSQU UQ{`MhcQY_}y85}Sb4q9e08##j$N&HU diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/security.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/security.rsi/equipped-INNERCLOTHING.png index bd0af340983492059665502f749afea8c6356d0f..fb2f53fb5ecc7f2da8d838d3d752d5dcda770193 100644 GIT binary patch delta 1027 zcmV+e1pND&1&#=i8Gi-<0063Kaozv`00DDSM?wIu&K&6g00YQLL_t(|ob8&iZ__{& z#=oE}DQQKU_F6>MlTcDQ$y8_ ztBkqDOa=|d!Ct46imH#BDr2rF7c&{JzTr4tnW{fbVhjJcbgPFGz8K%Mh$n-uhKL^UuB!(Gnj@l5hE z08}gsABx3*0e=9n+39qJ>oA0MJ_?F{qysi=8=p>2Ff}!W2Zqsgtz0g5eXnzl8eYVp&qoUu}0mAzmwvEfn%fNNhG`qfwaam(5mM9SVqEijW>FI>1D}V7hh%+nDjd~j)TyvP>l-!;B@Y2PDe;fRQRM)B zgl2;=uYasMB$Va=A=Ypl;CDIfku)k~M~iY%@xLPTfL@4jlV3`bpki5G*o$!YzmHH* zcEG=ab^!GU{c`anh+CgD35KPZaizW2L0_ZMXfzs)Mx)Va{uz`OFy+O`hn6+6MbJSw z;M@h&x8=#}0rFvphU0h!#I+kds13lc&I>z=nSYFu4di9B11SPtWpANS;3yP0*6%KRyRfoBNg(dHymJhwtxS^~u(DD@t7YNn=os1T z&8}-j-vNqI;@28xKZ3L*)@oUJ`qf6ovT$$ywr7aEQIQ1lotC4o&N)DgL{bFY|MJ-r zdVl2pAPJ2c)kRVAQ$WnRqAY}y+$EMZWm{C{A*HRcu<>58tg#INfrNrXi5h?yOo|$vO#HgcyT7{mB)2R%C9ZkL}94y@o{!OE*pkEACUA3k+`*E xIUv!tli!|>OH*ma^iMd6%)EcG9U9Fw<|pA~5^X-JrI7#t002ovPDHLkV1l7s^Oyht delta 653 zcmeC zH2__>-_yl0B*Oje)ZFrB1)f&NXLD*JbHo4tkB`lB@NEbjLzBh zE0_xy7R0k!^lS8)T0YzC#ZG?}akP#OQ2hTJYYAA%O92hU0?#7vCfsdT;y@J@8xn5WA4Y zrKlP`hhL{tWZW4YmTdhYs8Ca>TIIyDVP4Xg%)Q@?8|2SiSNJu7(_*gv_4BWv)_4`J zyM5vFechuvp$8Xz#zjZZ7`@DS7r)eoKOkWBYU2Zv-C8tr- zc;mL&$)A5e?s$A-6QjlXO~vu&Q$iB}@kAhn diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/security.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/security.rsi/icon.png index be5b2406d2084843817b52ec611654674a44f94b..0443f68c6f28b83c012ba6f949f75493e8b0fb90 100644 GIT binary patch delta 392 zcmV;30eAk;0+$1j8Gi-<0047(dh`GQ00DDSM?wIu&K&6g00B`+L_t(oh3%9*YXU(K zh983jHUtZcsRGwXxT`HJ?=PgVu&_ukq_VWM^hcyf5imvmhD8c1HP{@an&JuxIS7GE z<>~nWyArGH1Iuym4Lk47%pQ0=p8rn8C3ql`N5%kfIT{uEcYnVRz%0ucsygj?aY}N4 zX|Gp$0z}3z5XoH(RBZ!a>UCb{^NkP$OnW^dV`wHxA%MxG-_);5T4c=LjHrH-jbH!<5 mcdM{l0oT)eJRXk+;1})xex&x-ySxAZ002ovPDHLkU;%>VgRuhu delta 320 zcmbQve1U0#WIZzj1B1(wu46!ou{g-xiDBJ2nU_EgOS+@4BLl<6e(pbstU$hQfKP~P zDYxKE6^+%aS8Hf!9Mm=N^YIA{4K*_}>*?vq&d#>Cw{L80ym|9x0t**V$McFG+CYlG zB*-uLKMG*Da%aXupcH3;M}1^50|Vb-5N14{zaj-FI?>a`F~q|E?F2@?!wMX(_OI^5 zguk!9Q>SxQ;o=vD+x{#q?3@ekzhGzVSTe=MY4Yz4dLD&EAF#1pD}TVr@quUIX`4{X`&)D8ue})U z_OwA(gTe~DWM4f D5p;ls diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/warden.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/warden.rsi/equipped-INNERCLOTHING.png index 67ba63f7cdbbfad34e817da9a048db76ddedccc7..1858a5598884a5f4c21f757a9aa2ff9353f02cf8 100644 GIT binary patch delta 1105 zcmV-X1g`s)1=|Ra8Gi-<0063Kaozv`00DDSM?wIu&K&6g00b3DL_t(|ob8%1NE=ZY z$Nw!#QFLg%zIG5FLKh9VWGqt17IeBHQwG813Z*zyT!K?69O+QH^u`XlWVkMZLqQ0F z;E<(o#w{GUcwFrwJ*0)#!MyWwMsx4wa3q;9_E>J4r0zjcw0|1uhH_=T$ z51>Kmr8Xd~e}6xz_(G}F(Vur+?9a_z8PH~-R6?OpKw6P-lm1PJ>i3KQ&9<=z;2R+b zzwI`;Tn?z$!|Mj6Xa)iNy*+5QoycGjeP7qHW?46m{a_f-Y+FeG)(EH&!pfd^c~f0S zGYC3fcO0kVx)}uUbsd^*qwIO$>x3+Eea*JfptS4Q27jd;<(P|aGt|z)#zwaA{zR*g|SAF2p`)`()@qT9~^ma1{@YeGN zmIuW3IsND-dJJ}>K`CZtW>O1v8T~X6a=_lRXK<#b@Z{k`n%c1_B=!l$^u>wD0^PV4zX#P!ex2kZSghB!Uw|ufDW-N zoqrH5h5!idS+gwR+JvwJ8kB}Y@j_)YpFg|uj2r~Vx&LsxE;BP4=>Hi$T-`klpO=?7+_ic4&YP>3H7%rWh*1&QZ`8C0n?8r!bJJbzX5dp zLil2WMpmm2S$_pMyw(n2WVQMWAo0^gF9Lw<^i1?I-uf9pCR`nWstGt>uD9>o^>U7J zuKP6V-#x}EGlNwz&czw%6=RhF@C|Xb0q}GY6Ip;hp??F=`E>#Mv73OJ|IYwiU~THE z`YGT6ElpijKLxy{18@MS1CRsSXM;_7iivOn@G`fy1IW+fv*SY=3@2{MWnJ9FT@@*A zh%uD{SiiY#wE^7ELhFPAKR6Wb_Lj!&3^PPhj41sRn; zWk~@_=!}m9Gu{H`M}Pc6u$9jO_?`NIA|VIZB`#DZ6oB?miNeq6C7@N@Rb1vCATR!< iiVO>QLw^mJ=O3Lr?bUN9ptt}4002ovPDHLkU;%po2ETzH!J|ntdFdoVr&2Ekb*YWz z6e@u`RUaJaeh%NS^9k^HJpY}AOED4Y{+uMqpjTBjoP`ih-+y#!-nOllQtAWeI%7;1 zMWHjs^nr6NrPOWP>aodLky7dxV2IwtfpbHbQqFIHh>RwE#Buzi?lOfdo1%4DA}2!4 zxuHi}y#y-*y?=>0>zoaYneM_g{}TflW5#CJoFfdwi{{h1-&oofp5hovDV!Js`;N!$ z7SEdvlu|=5#(<)*Hemg~9+ubo?)Jve?pLdem+|`cj;GI$`IoR~rxbQd0l?6FthwT} nvC}C`C*XQ}kH_Qj0KgZwp{+*oLN=QK0000B9~Ce>P>z*kV5n!{EbxddW?4*KEMy zvhwMwVDLtuHYTZ7OAZw8i< zhmLAO8_vDnX8*m{(rO)x%z_zopr07)-~ Date: Sat, 27 Jul 2024 20:45:53 +0000 Subject: [PATCH 08/89] tweak(NuclearBomb Keg): Give the nuclear bomb keg a hit box (#30415) * bleh * Bugs spread disease :( * they are reproducing * no lore --- .../Prototypes/Entities/Structures/Machines/nuke.yml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/Resources/Prototypes/Entities/Structures/Machines/nuke.yml b/Resources/Prototypes/Entities/Structures/Machines/nuke.yml index 1cf9ceaeab..5384d7e9d0 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/nuke.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/nuke.yml @@ -128,6 +128,8 @@ suffix: keg description: You probably shouldn't stick around to see if this is armed. It has a tap on the side. components: + - type: Transform + anchored: false - type: NukeLabel - type: Sprite sprite: Objects/Devices/nuke.rsi @@ -161,11 +163,11 @@ shape: !type:PhysShapeCircle radius: 0.45 - density: 80 + density: 255 mask: - - TabletopMachineMask + - MachineMask layer: - - TabletopMachineLayer + - WallLayer - type: SolutionContainerManager solutions: tank: From 3283424ba8097f0b0a29691f230c34a5b66df678 Mon Sep 17 00:00:00 2001 From: Brandon Hu <103440971+Brandon-Huu@users.noreply.github.com> Date: Sat, 27 Jul 2024 23:10:07 +0000 Subject: [PATCH 09/89] tweak(Radiation Suits): Increase damage taken by 1000% (#30392) wtf is 0.9% anyways --- Resources/Prototypes/Entities/Clothing/OuterClothing/suits.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Resources/Prototypes/Entities/Clothing/OuterClothing/suits.yml b/Resources/Prototypes/Entities/Clothing/OuterClothing/suits.yml index bacdd0046f..1d5fbb0119 100644 --- a/Resources/Prototypes/Entities/Clothing/OuterClothing/suits.yml +++ b/Resources/Prototypes/Entities/Clothing/OuterClothing/suits.yml @@ -113,7 +113,7 @@ modifiers: coefficients: Heat: 0.90 - Radiation: 0.001 + Radiation: 0.01 - type: Clothing sprite: Clothing/OuterClothing/Suits/rad.rsi - type: GroupExamine From 34a7aa70ceaf30e4f67e4239ed0f2eb0f8d92bd3 Mon Sep 17 00:00:00 2001 From: Spessmann <156740760+Spessmann@users.noreply.github.com> Date: Sat, 27 Jul 2024 16:11:26 -0700 Subject: [PATCH 10/89] Thief objectives for figurines and stamps ask for less items (#30390) Makes thief objective for stealing figures and stamps easier --- Resources/Prototypes/Objectives/thief.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Resources/Prototypes/Objectives/thief.yml b/Resources/Prototypes/Objectives/thief.yml index cc94ab02b3..89334f990b 100644 --- a/Resources/Prototypes/Objectives/thief.yml +++ b/Resources/Prototypes/Objectives/thief.yml @@ -61,7 +61,7 @@ - type: StealCondition stealGroup: Figurines minCollectionSize: 10 - maxCollectionSize: 50 #will be limited to the number of figures on the station anyway. + maxCollectionSize: 18 #will be limited to the number of figures on the station anyway. - type: Objective difficulty: 0.25 @@ -94,7 +94,7 @@ - type: StealCondition stealGroup: Stamp minCollectionSize: 5 - maxCollectionSize: 15 + maxCollectionSize: 8 - type: Objective difficulty: 1.0 From 845fa31419fe234807970ab2c8adce67e483dccc Mon Sep 17 00:00:00 2001 From: PJBot Date: Sat, 27 Jul 2024 23:12:34 +0000 Subject: [PATCH 11/89] Automatic changelog update --- Resources/Changelog/Changelog.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 8af7766ff1..fdb07f9e52 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: KrasnoshchekovPavel - changes: - - message: Fixed formatting of floating point numbers during localization - type: Fix - id: 6492 - time: '2024-04-29T04:52:35.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/27441 - author: mirrorcult changes: - message: Random events should now occur much more frequently @@ -3779,3 +3772,10 @@ id: 6991 time: '2024-07-27T15:08:49.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/28993 +- author: Spessmann + changes: + - message: Thief objectives for figurines and stamps now require less items + type: Tweak + id: 6992 + time: '2024-07-27T23:11:27.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/30390 From e3d7c1bd6ed799e92c90e0f4afc60973bbb17db8 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 27 Jul 2024 21:36:00 -0400 Subject: [PATCH 12/89] Update Credits (#30420) Co-authored-by: PJBot --- Resources/Credits/GitHub.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Resources/Credits/GitHub.txt b/Resources/Credits/GitHub.txt index 47b90c9a16..6f5e023184 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, Aeshus, Aexxie, Afrokada, Agoichi, Ahion, AJCM-git, AjexRose, Alekshhh, AlexMorgan3817, AlexUm418, AlmondFlour, AlphaQwerty, Altoids1, amylizzle, ancientpower, ArchPigeon, Arendian, arimah, ArkiveDev, Arteben, AruMoon, as334, AsikKEsel, asperger-sind, aspiringLich, avghdev, AzzyIsNotHere, BananaFlambe, Baptr0b0t, BasedUser, beck-thompson, BellwetherLogic, BGare, bhenrich, BingoJohnson-zz, BismarckShuffle, Bixkitts, Blackern5000, Blazeror, blueDev2, Boaz1111, BobdaBiscuit, brainfood1183, Brandon-Huu, Bright0, brndd, BubblegumBlue, BYONDFuckery, c4llv07e, CaasGit, CakeQ, Callmore, CaptainSqrBeard, Carbonhell, CatTheSystem, Centronias, chairbender, Charlese2, chavonadelal, Cheackraze, cheesePizza2, Chief-Engineer, chromiumboy, Chronophylos, Ciac32, clement-or, Clyybber, Cojoke-dot, ColdAutumnRain, 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, deepy, Delete69, deltanedas, DerbyX, DexlerXD, dffdff2423, diraven, Doctor-Cpu, DoctorBeard, DogZeroX, dontbetank, Doomsdrayk, 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, FoLoKe, fooberticus, Fortune117, freeman2651, Fromoriss, FungiFellow, GalacticChimp, gbasood, Geekyhobo, Genkail, geraeumig, Ghagliiarghii, Git-Nivrak, github-actions[bot], gituhabu, GNF54, Golinth, GoodWheatley, Gotimanga, graevy, GreyMario, gusxyz, Gyrandola, h3half, Hanzdegloker, Hardly3D, harikattar, HerCoyote23, hitomishirichan, Hmeister-real, HoofedEar, hord-brayden, hubismal, Hugal31, Huxellberger, iacore, IamVelcroboy, icekot8, igorsaux, ike709, Illiux, Ilya246, IlyaElDunaev, Injazz, Insineer, Interrobang01, IProduceWidgets, ItsMeThom, Jackal298, Jackrost, jamessimo, janekvap, JerryImMouse, Jessetriesagain, jessicamaybe, Jezithyr, jicksaw, JiimBob, JIPDawg, JoeHammad1844, joelsgp, JohnGinnane, johnku1, joshepvodka, jproads, Jrpl, juliangiebel, JustArt1m, JustCone14, JustinTrotter, K-Dynamic, KaiShibaa, kalane15, kalanosh, Keer-Sar, Kelrak, kerisargit, keronshb, KIBORG04, Killerqu00, KingFroozy, kira-er, Kit0vras, KittenColony, Ko4ergaPunk, komunre, koteq, Krunklehorn, Kukutis96513, kxvvv, Lamrr, LankLTE, laok233, lapatison, Leander-0, LetterN, Level10Cybermancer, lever1209, liltenhead, LittleBuilderJane, Lomcastar, LordCarve, LordEclipse, luckyshotpictures, Lukasz825700516, lunarcomets, luringens, lvvova1, lzimann, lzk228, MACMAN2003, Macoron, MagnusCrowe, ManelNavola, Mangohydra, Matz05, MehimoNemo, MeltedPixel, MemeProof, Menshin, Mervill, metalgearsloth, mhamsterr, MilenVolf, Minty642, Mirino97, mirrorcult, misandrie, MishaUnity, MisterMecky, Mith-randalf, MjrLandWhale, Moneyl, Moomoobeef, moony, Morb0, Mr0maks, musicmanvr, Myakot, Myctai, N3X15, Nairodian, Naive817, namespace-Memory, NickPowers43, nikthechampiongr, Nimfar11, Nirnael, nmajask, nok-ko, Nopey, notafet, notquitehadouken, noudoit, nuke-haus, NULL882, OctoRocket, OldDanceJacket, onoira, osjarw, Owai-Seek, pali6, Pangogie, patrikturi, PaulRitter, Peptide90, peptron1, Phantom-Lily, pigeonpeas, pissdemon, PixelTheKermit, PJB3005, Plykiya, pofitlo, pointer-to-null, PolterTzi, PoorMansDreams, potato1234x, ProfanedBane, PrPleGoo, ps3moira, Psychpsyo, psykzz, PuroSlavKing, PursuitInAshes, quatre, QuietlyWhisper, qwerltaz, Radosvik, Radrark, Rainbeon, Rainfey, RamZ, Rane, ravage123321, rbertoche, Redict, RedlineTriad, RednoWCirabrab, RemberBM, RemieRichards, RemTim, rene-descartes2021, RiceMar1244, RieBi, Rinkashikachi, Rockdtben, rolfero, rosieposieeee, RumiTiger, Saakra, Samsterious, SaphireLattice, ScalyChimp, scrato, Scribbles0, Serkket, SethLafuente, ShadowCommander, Shadowtheprotogen546, shampunj, SignalWalker, Simyon264, Sirionaut, siyengar04, Skarletto, Skrauz, Skyedra, SlamBamActionman, slarticodefast, Slava0135, snebl, Snowni, snowsignal, SonicHDC, SoulFN, SoulSloth, SpaceManiac, SpeltIncorrectyl, SphiraI, spoogemonster, ssdaniel24, Stealthbomber16, StrawberryMoses, superjj18, SweptWasTaken, Szunti, takemysoult, TaralGit, Tayrtahn, tday93, TekuNut, TemporalOroboros, tentekal, Terraspark4941, tgrkzus, thatrandomcanadianguy, TheArturZh, theashtronaut, thedraccx, themias, Theomund, theOperand, TheShuEd, TimrodDX, Titian3, tkdrg, tmtmtl30, TokenStyle, tom-leys, tomasalves8, Tomeno, Tornado-Technology, tosatur, TsjipTsjip, Tunguso4ka, TurboTrackerss14, Tyler-IN, Tyzemol, UbaserB, UBlueberry, UKNOWH, Uriende, UristMcDorf, Vaaankas, Varen, VasilisThePikachu, veliebm, Veritius, Vermidia, Verslebas, VigersRay, Visne, volundr-, Voomra, Vordenburg, vulppine, wafehling, WarMechanic, waylon531, weaversam8, whateverusername0, Willhelm53, Winkarst-cpu, wixoaGit, WlarusFromDaSpace, wrexbe, xRiriq, yathxyz, Ygg01, YotaXP, YuriyKiss, zach-hill, Zandario, Zap527, Zealith-Gamer, ZelteHonor, zerorulez, zionnBE, zlodo, ZNixian, ZoldorfTheWizard, Zonespace27, Zumorica, Zymem +0x6273, 2013HORSEMEATSCANDAL, 20kdc, 21Melkuu, 4dplanner, 612git, 778b, Ablankmann, Acruid, actioninja, adamsong, Admiral-Obvious-001, Adrian16199, Aerocrux, Aeshus, Aexxie, Afrokada, Agoichi, Ahion, AJCM-git, AjexRose, Alekshhh, AlexMorgan3817, AlexUm418, AlmondFlour, AlphaQwerty, Altoids1, amylizzle, ancientpower, ArchPigeon, Arendian, arimah, ArkiveDev, Arteben, AruMoon, as334, AsikKEsel, asperger-sind, aspiringLich, avghdev, AzzyIsNotHere, BananaFlambe, Baptr0b0t, BasedUser, beck-thompson, BellwetherLogic, BGare, bhenrich, BingoJohnson-zz, BismarckShuffle, Bixkitts, Blackern5000, Blazeror, blueDev2, Boaz1111, BobdaBiscuit, BombasterDS, brainfood1183, Brandon-Huu, Bright0, brndd, BubblegumBlue, BYONDFuckery, c4llv07e, CaasGit, CakeQ, Callmore, CaptainSqrBeard, Carbonhell, CatTheSystem, Centronias, chairbender, Charlese2, chavonadelal, Cheackraze, cheesePizza2, Chief-Engineer, chromiumboy, Chronophylos, Ciac32, clement-or, Clyybber, Cojoke-dot, ColdAutumnRain, 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, Deeeeja, deepdarkdepths, deepy, Delete69, deltanedas, DerbyX, DexlerXD, dffdff2423, diraven, Doctor-Cpu, DoctorBeard, DogZeroX, dontbetank, Doomsdrayk, 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, FoLoKe, fooberticus, Fortune117, freeman2651, Fromoriss, FungiFellow, GalacticChimp, gbasood, Geekyhobo, Genkail, geraeumig, Ghagliiarghii, Git-Nivrak, github-actions[bot], gituhabu, GNF54, Golinth, GoodWheatley, graevy, GreyMario, gusxyz, Gyrandola, h3half, Hanzdegloker, Hardly3D, harikattar, HerCoyote23, hitomishirichan, Hmeister-real, HoofedEar, hord-brayden, hubismal, Hugal31, Huxellberger, iacore, IamVelcroboy, icekot8, igorsaux, ike709, Illiux, Ilya246, IlyaElDunaev, Injazz, Insineer, Interrobang01, IProduceWidgets, ItsMeThom, Jackal298, Jackrost, jamessimo, janekvap, JerryImMouse, Jessetriesagain, jessicamaybe, Jezithyr, jicksaw, JiimBob, JIPDawg, JoeHammad1844, joelsgp, JohnGinnane, johnku1, joshepvodka, jproads, Jrpl, juliangiebel, JustArt1m, JustCone14, JustinTrotter, K-Dynamic, KaiShibaa, kalane15, kalanosh, Keer-Sar, Kelrak, kerisargit, keronshb, KIBORG04, Killerqu00, KingFroozy, kira-er, Kit0vras, KittenColony, Ko4ergaPunk, komunre, koteq, Krunklehorn, Kukutis96513, kxvvv, Lamrr, LankLTE, laok233, lapatison, Leander-0, LetterN, Level10Cybermancer, lever1209, liltenhead, LittleBuilderJane, Lomcastar, LordCarve, LordEclipse, luckyshotpictures, Lukasz825700516, lunarcomets, luringens, lvvova1, lzimann, lzk228, MACMAN2003, Macoron, MagnusCrowe, ManelNavola, Mangohydra, Matz05, MehimoNemo, MeltedPixel, MemeProof, Menshin, Mervill, metalgearsloth, mhamsterr, MilenVolf, Minty642, Mirino97, mirrorcult, misandrie, MishaUnity, MisterMecky, Mith-randalf, MjrLandWhale, Moneyl, Moomoobeef, moony, Morb0, Mr0maks, musicmanvr, Myakot, Myctai, N3X15, Nairodian, Naive817, namespace-Memory, NickPowers43, nikthechampiongr, Nimfar11, Nirnael, nmajask, nok-ko, Nopey, notafet, notquitehadouken, noudoit, nuke-haus, NULL882, OctoRocket, OldDanceJacket, onoira, osjarw, Owai-Seek, pali6, Pangogie, patrikturi, PaulRitter, Peptide90, peptron1, Phantom-Lily, pigeonpeas, pissdemon, PixelTheKermit, PJB3005, Plykiya, pofitlo, pointer-to-null, PolterTzi, PoorMansDreams, potato1234x, ProfanedBane, PrPleGoo, ps3moira, Psychpsyo, psykzz, PuroSlavKing, PursuitInAshes, quatre, QuietlyWhisper, qwerltaz, Radosvik, Radrark, Rainbeon, Rainfey, RamZ, Rane, ravage123321, rbertoche, Redict, RedlineTriad, RednoWCirabrab, RemberBM, RemieRichards, RemTim, rene-descartes2021, RiceMar1244, RieBi, Rinkashikachi, Rockdtben, rolfero, rosieposieeee, RumiTiger, Saakra, SaphireLattice, ScalyChimp, scrato, Scribbles0, Serkket, SethLafuente, ShadowCommander, Shadowtheprotogen546, shampunj, SignalWalker, Simyon264, Sirionaut, siyengar04, Skarletto, Skrauz, Skyedra, SlamBamActionman, slarticodefast, Slava0135, snebl, Snowni, snowsignal, SonicHDC, SoulFN, SoulSloth, SpaceManiac, SpeltIncorrectyl, SphiraI, spoogemonster, ssdaniel24, Stealthbomber16, StrawberryMoses, superjj18, SweptWasTaken, Szunti, takemysoult, TaralGit, Tayrtahn, tday93, TekuNut, TemporalOroboros, tentekal, Terraspark4941, tgrkzus, thatrandomcanadianguy, TheArturZh, theashtronaut, thedraccx, themias, Theomund, theOperand, TheShuEd, TimrodDX, Titian3, tkdrg, tmtmtl30, TokenStyle, tom-leys, tomasalves8, Tomeno, Tornado-Technology, tosatur, TsjipTsjip, Tunguso4ka, TurboTrackerss14, Tyler-IN, Tyzemol, UbaserB, UBlueberry, UKNOWH, Uriende, UristMcDorf, Vaaankas, Varen, VasilisThePikachu, veliebm, Veritius, Vermidia, Verslebas, VigersRay, Visne, volundr-, Voomra, Vordenburg, vulppine, wafehling, WarMechanic, waylon531, weaversam8, whateverusername0, Willhelm53, Winkarst-cpu, wixoaGit, WlarusFromDaSpace, wrexbe, xRiriq, yathxyz, Ygg01, YotaXP, YuriyKiss, zach-hill, Zandario, Zap527, Zealith-Gamer, ZelteHonor, zerorulez, zionnBE, zlodo, ZNixian, ZoldorfTheWizard, Zonespace27, Zumorica, Zymem From 093054f7e372288291fc570b7259a8c5e5d9e0a4 Mon Sep 17 00:00:00 2001 From: metalgearsloth <31366439+metalgearsloth@users.noreply.github.com> Date: Sun, 28 Jul 2024 13:14:18 +1000 Subject: [PATCH 13/89] Move vgroid much closer (#29943) * Move vgroid much closer General feedback is map spam + it takes too long to get to. This is somewhat "close" (considering 1/4 of the distance is the vgroid itself) but without a jetpack / shuttle it's going to be an endeavour. * Decrease max * Tweaks * godzilla * Update Content.Server/Shuttles/Components/GridSpawnComponent.cs --- .../Shuttles/Components/GridSpawnComponent.cs | 11 +++++++++++ .../Shuttles/Systems/ShuttleSystem.GridFill.cs | 15 ++++++++++++--- Content.Server/Shuttles/Systems/ShuttleSystem.cs | 4 ++++ Resources/Prototypes/Entities/Stations/base.yml | 3 ++- 4 files changed, 29 insertions(+), 4 deletions(-) diff --git a/Content.Server/Shuttles/Components/GridSpawnComponent.cs b/Content.Server/Shuttles/Components/GridSpawnComponent.cs index d8144354b8..430c9c8df2 100644 --- a/Content.Server/Shuttles/Components/GridSpawnComponent.cs +++ b/Content.Server/Shuttles/Components/GridSpawnComponent.cs @@ -26,6 +26,11 @@ public interface IGridSpawnGroup /// public float MinimumDistance { get; } + /// + /// Maximum distance to spawn away from the station. + /// + public float MaximumDistance { get; } + /// public ProtoId? NameDataset { get; } @@ -67,6 +72,8 @@ public sealed class DungeonSpawnGroup : IGridSpawnGroup /// public float MinimumDistance { get; } + public float MaximumDistance { get; } + /// public ProtoId? NameDataset { get; } @@ -94,7 +101,11 @@ public sealed class GridSpawnGroup : IGridSpawnGroup { public List Paths = new(); + /// public float MinimumDistance { get; } + + /// + public float MaximumDistance { get; } public ProtoId? NameDataset { get; } public int MinCount { get; set; } = 1; public int MaxCount { get; set; } = 1; diff --git a/Content.Server/Shuttles/Systems/ShuttleSystem.GridFill.cs b/Content.Server/Shuttles/Systems/ShuttleSystem.GridFill.cs index 0976bc5de1..a31fda074f 100644 --- a/Content.Server/Shuttles/Systems/ShuttleSystem.GridFill.cs +++ b/Content.Server/Shuttles/Systems/ShuttleSystem.GridFill.cs @@ -10,6 +10,7 @@ using Content.Shared.Shuttles.Components; using Content.Shared.Station.Components; using Robust.Shared.Collections; using Robust.Shared.Map; +using Robust.Shared.Map.Components; using Robust.Shared.Random; using Robust.Shared.Utility; @@ -86,9 +87,15 @@ public sealed partial class ShuttleSystem _mapManager.DeleteMap(mapId); } - private bool TryDungeonSpawn(EntityUid targetGrid, EntityUid stationUid, MapId mapId, DungeonSpawnGroup group, out EntityUid spawned) + private bool TryDungeonSpawn(Entity targetGrid, EntityUid stationUid, MapId mapId, DungeonSpawnGroup group, out EntityUid spawned) { spawned = EntityUid.Invalid; + + if (!_gridQuery.Resolve(targetGrid.Owner, ref targetGrid.Comp)) + { + return false; + } + var dungeonProtoId = _random.Pick(group.Protos); if (!_protoManager.TryIndex(dungeonProtoId, out var dungeonProto)) @@ -96,11 +103,13 @@ public sealed partial class ShuttleSystem return false; } - var spawnCoords = new EntityCoordinates(targetGrid, Vector2.Zero); + var targetPhysics = _physicsQuery.Comp(targetGrid); + var spawnCoords = new EntityCoordinates(targetGrid, targetPhysics.LocalCenter); if (group.MinimumDistance > 0f) { - spawnCoords = spawnCoords.Offset(_random.NextVector2(group.MinimumDistance, group.MinimumDistance * 1.5f)); + var distancePadding = MathF.Max(targetGrid.Comp.LocalAABB.Width, targetGrid.Comp.LocalAABB.Height); + spawnCoords = spawnCoords.Offset(_random.NextVector2(distancePadding + group.MinimumDistance, distancePadding + group.MaximumDistance)); } var spawnMapCoords = _transform.ToMapCoordinates(spawnCoords); diff --git a/Content.Server/Shuttles/Systems/ShuttleSystem.cs b/Content.Server/Shuttles/Systems/ShuttleSystem.cs index 85703389e9..aae466ba0d 100644 --- a/Content.Server/Shuttles/Systems/ShuttleSystem.cs +++ b/Content.Server/Shuttles/Systems/ShuttleSystem.cs @@ -58,12 +58,16 @@ public sealed partial class ShuttleSystem : SharedShuttleSystem [Dependency] private readonly ThrusterSystem _thruster = default!; [Dependency] private readonly UserInterfaceSystem _uiSystem = default!; + private EntityQuery _gridQuery; + public const float TileMassMultiplier = 0.5f; public override void Initialize() { base.Initialize(); + _gridQuery = GetEntityQuery(); + InitializeFTL(); InitializeGridFills(); InitializeIFF(); diff --git a/Resources/Prototypes/Entities/Stations/base.yml b/Resources/Prototypes/Entities/Stations/base.yml index c7b54f4571..de191277ae 100644 --- a/Resources/Prototypes/Entities/Stations/base.yml +++ b/Resources/Prototypes/Entities/Stations/base.yml @@ -73,7 +73,8 @@ - /Maps/Ruins/whiteship_ancient.yml - /Maps/Ruins/whiteship_bluespacejumper.yml vgroid: !type:DungeonSpawnGroup - minimumDistance: 1000 + minimumDistance: 400 + maximumDistance: 450 nameDataset: names_borer stationGrid: false addComponents: From 255b7f3b7a449eff4a7a455f6b03ea364c34fe8c Mon Sep 17 00:00:00 2001 From: PJBot Date: Sun, 28 Jul 2024 03:15:24 +0000 Subject: [PATCH 14/89] Automatic changelog update --- Resources/Changelog/Changelog.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index fdb07f9e52..7f0f467b80 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: mirrorcult - changes: - - message: Random events should now occur much more frequently - type: Tweak - id: 6493 - time: '2024-04-29T06:38:15.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/27469 - author: Plykiya changes: - message: Latejoin players now have a chance to roll thief. @@ -3779,3 +3772,10 @@ id: 6992 time: '2024-07-27T23:11:27.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/30390 +- author: metalgearsloth + changes: + - message: Moved VGRoid from 1,000m away to ~500m. + type: Tweak + id: 6993 + time: '2024-07-28T03:14:18.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/29943 From 7f9e06501f392df12e05b8db7c2f315b33e42115 Mon Sep 17 00:00:00 2001 From: Plykiya <58439124+Plykiya@users.noreply.github.com> Date: Sat, 27 Jul 2024 20:18:12 -0700 Subject: [PATCH 15/89] Update SharedDoorSystem.cs to not use Component.Owner (#29963) * Update SharedDoorSystem.cs * comment * empty space --------- Co-authored-by: plykiya --- .../Doors/Systems/SharedDoorSystem.cs | 23 ++++++++++++++----- 1 file changed, 17 insertions(+), 6 deletions(-) diff --git a/Content.Shared/Doors/Systems/SharedDoorSystem.cs b/Content.Shared/Doors/Systems/SharedDoorSystem.cs index ab2df72568..2319d5e916 100644 --- a/Content.Shared/Doors/Systems/SharedDoorSystem.cs +++ b/Content.Shared/Doors/Systems/SharedDoorSystem.cs @@ -21,6 +21,7 @@ using Robust.Shared.Physics.Systems; using Robust.Shared.Timing; using Robust.Shared.Audio.Systems; using Robust.Shared.Network; +using Robust.Shared.Map.Components; namespace Content.Shared.Doors.Systems; @@ -40,6 +41,8 @@ public abstract partial class SharedDoorSystem : EntitySystem [Dependency] private readonly AccessReaderSystem _accessReaderSystem = default!; [Dependency] private readonly PryingSystem _pryingSystem = default!; [Dependency] protected readonly SharedPopupSystem Popup = default!; + [Dependency] private readonly SharedMapSystem _mapSystem = default!; + [ValidatePrototypeId] public const string DoorBumpTag = "DoorBumpOpener"; @@ -546,29 +549,37 @@ public abstract partial class SharedDoorSystem : EntitySystem if (!Resolve(uid, ref physics)) yield break; + var xform = Transform(uid); + // Getting the world bounds from the gridUid allows us to use the version of + // GetCollidingEntities that returns Entity + if (!TryComp(xform.GridUid, out var mapGridComp)) + yield break; + var tileRef = _mapSystem.GetTileRef(xform.GridUid.Value, mapGridComp, xform.Coordinates); + var doorWorldBounds = _entityLookup.GetWorldBounds(tileRef); + // TODO SLOTH fix electro's code. // ReSharper disable once InconsistentNaming var doorAABB = _entityLookup.GetWorldAABB(uid); - foreach (var otherPhysics in PhysicsSystem.GetCollidingEntities(Transform(uid).MapID, doorAABB)) + foreach (var otherPhysics in PhysicsSystem.GetCollidingEntities(Transform(uid).MapID, doorWorldBounds)) { - if (otherPhysics == physics) + if (otherPhysics.Comp == physics) continue; //TODO: Make only shutters ignore these objects upon colliding instead of all airlocks // Excludes Glasslayer for windows, GlassAirlockLayer for windoors, TableLayer for tables - if (!otherPhysics.CanCollide || otherPhysics.CollisionLayer == (int)CollisionGroup.GlassLayer || otherPhysics.CollisionLayer == (int)CollisionGroup.GlassAirlockLayer || otherPhysics.CollisionLayer == (int)CollisionGroup.TableLayer) + if (!otherPhysics.Comp.CanCollide || otherPhysics.Comp.CollisionLayer == (int) CollisionGroup.GlassLayer || otherPhysics.Comp.CollisionLayer == (int) CollisionGroup.GlassAirlockLayer || otherPhysics.Comp.CollisionLayer == (int) CollisionGroup.TableLayer) continue; //If the colliding entity is a slippable item ignore it by the airlock - if (otherPhysics.CollisionLayer == (int)CollisionGroup.SlipLayer && otherPhysics.CollisionMask == (int)CollisionGroup.ItemMask) + if (otherPhysics.Comp.CollisionLayer == (int) CollisionGroup.SlipLayer && otherPhysics.Comp.CollisionMask == (int) CollisionGroup.ItemMask) continue; //For when doors need to close over conveyor belts - if (otherPhysics.CollisionLayer == (int) CollisionGroup.ConveyorMask) + if (otherPhysics.Comp.CollisionLayer == (int) CollisionGroup.ConveyorMask) continue; - if ((physics.CollisionMask & otherPhysics.CollisionLayer) == 0 && (otherPhysics.CollisionMask & physics.CollisionLayer) == 0) + if ((physics.CollisionMask & otherPhysics.Comp.CollisionLayer) == 0 && (otherPhysics.Comp.CollisionMask & physics.CollisionLayer) == 0) continue; if (_entityLookup.GetWorldAABB(otherPhysics.Owner).IntersectPercentage(doorAABB) < IntersectPercentage) From 925d1e3ac81c0914b41868b9367f718428312810 Mon Sep 17 00:00:00 2001 From: IProduceWidgets <107586145+IProduceWidgets@users.noreply.github.com> Date: Sat, 27 Jul 2024 23:20:29 -0400 Subject: [PATCH 16/89] Prevent gridfill from leaking (#30395) dont forget to set the airtights when the tights are aired --- Content.Server/Shuttles/Systems/DockingSystem.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Content.Server/Shuttles/Systems/DockingSystem.cs b/Content.Server/Shuttles/Systems/DockingSystem.cs index 59a030e83c..f46c3980e5 100644 --- a/Content.Server/Shuttles/Systems/DockingSystem.cs +++ b/Content.Server/Shuttles/Systems/DockingSystem.cs @@ -281,24 +281,24 @@ namespace Content.Server.Shuttles.Systems { if (_doorSystem.TryOpen(dockAUid, doorA)) { - doorA.ChangeAirtight = false; if (TryComp(dockAUid, out var airlockA)) { _doorSystem.SetBoltsDown((dockAUid, airlockA), true); } } + doorA.ChangeAirtight = false; } if (TryComp(dockBUid, out DoorComponent? doorB)) { if (_doorSystem.TryOpen(dockBUid, doorB)) { - doorB.ChangeAirtight = false; if (TryComp(dockBUid, out var airlockB)) { _doorSystem.SetBoltsDown((dockBUid, airlockB), true); } } + doorB.ChangeAirtight = false; } if (_pathfinding.TryCreatePortal(dockAXform.Coordinates, dockBXform.Coordinates, out var handle)) From 404743f073eb1c3dbe585bec76b76a6b8c6cda2a Mon Sep 17 00:00:00 2001 From: metalgearsloth <31366439+metalgearsloth@users.noreply.github.com> Date: Sun, 28 Jul 2024 13:43:59 +1000 Subject: [PATCH 17/89] Fix examine threading issues (#30160) --- Content.Shared/Examine/ExamineSystemShared.cs | 22 ++++++++----------- 1 file changed, 9 insertions(+), 13 deletions(-) diff --git a/Content.Shared/Examine/ExamineSystemShared.cs b/Content.Shared/Examine/ExamineSystemShared.cs index 4100b07483..682018949a 100644 --- a/Content.Shared/Examine/ExamineSystemShared.cs +++ b/Content.Shared/Examine/ExamineSystemShared.cs @@ -18,6 +18,7 @@ namespace Content.Shared.Examine { public abstract partial class ExamineSystemShared : EntitySystem { + [Dependency] private readonly OccluderSystem _occluder = default!; [Dependency] private readonly SharedTransformSystem _transform = default!; [Dependency] private readonly SharedContainerSystem _containerSystem = default!; [Dependency] private readonly SharedInteractionSystem _interactionSystem = default!; @@ -182,12 +183,9 @@ namespace Content.Shared.Examine length = MaxRaycastRange; } - var occluderSystem = Get(); - IoCManager.Resolve(ref entMan); - var ray = new Ray(origin.Position, dir.Normalized()); - var rayResults = occluderSystem - .IntersectRayWithPredicate(origin.MapId, ray, length, state, predicate, false).ToList(); + var rayResults = _occluder + .IntersectRayWithPredicate(origin.MapId, ray, length, state, predicate, false); if (rayResults.Count == 0) return true; @@ -195,13 +193,13 @@ namespace Content.Shared.Examine foreach (var result in rayResults) { - if (!entMan.TryGetComponent(result.HitEntity, out OccluderComponent? o)) + if (!TryComp(result.HitEntity, out OccluderComponent? o)) { continue; } var bBox = o.BoundingBox; - bBox = bBox.Translated(entMan.GetComponent(result.HitEntity).WorldPosition); + bBox = bBox.Translated(_transform.GetWorldPosition(result.HitEntity)); if (bBox.Contains(origin.Position) || bBox.Contains(other.Position)) { @@ -216,7 +214,6 @@ namespace Content.Shared.Examine public bool InRangeUnOccluded(EntityUid origin, EntityUid other, float range = ExamineRange, Ignored? predicate = null, bool ignoreInsideBlocker = true) { - var entMan = IoCManager.Resolve(); var originPos = _transform.GetMapCoordinates(origin); var otherPos = _transform.GetMapCoordinates(other); @@ -225,16 +222,14 @@ namespace Content.Shared.Examine public bool InRangeUnOccluded(EntityUid origin, EntityCoordinates other, float range = ExamineRange, Ignored? predicate = null, bool ignoreInsideBlocker = true) { - var entMan = IoCManager.Resolve(); var originPos = _transform.GetMapCoordinates(origin); - var otherPos = other.ToMap(entMan, _transform); + var otherPos = _transform.ToMapCoordinates(other); return InRangeUnOccluded(originPos, otherPos, range, predicate, ignoreInsideBlocker); } public bool InRangeUnOccluded(EntityUid origin, MapCoordinates other, float range = ExamineRange, Ignored? predicate = null, bool ignoreInsideBlocker = true) { - var entMan = IoCManager.Resolve(); var originPos = _transform.GetMapCoordinates(origin); return InRangeUnOccluded(originPos, other, range, predicate, ignoreInsideBlocker); @@ -250,11 +245,12 @@ namespace Content.Shared.Examine } var hasDescription = false; + var metadata = MetaData(entity); //Add an entity description if one is declared - if (!string.IsNullOrEmpty(EntityManager.GetComponent(entity).EntityDescription)) + if (!string.IsNullOrEmpty(metadata.EntityDescription)) { - message.AddText(EntityManager.GetComponent(entity).EntityDescription); + message.AddText(metadata.EntityDescription); hasDescription = true; } From 3a10ffa0309105c1867be5cb507b80b4f24fde3f Mon Sep 17 00:00:00 2001 From: deathride58 Date: Sat, 27 Jul 2024 23:46:22 -0400 Subject: [PATCH 18/89] Makes the labeller automatically label PRs with shader changes (#30316) adds shader label to git labeller --- .github/labeler.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/labeler.yml b/.github/labeler.yml index 9d9fe3a08d..97b402eda9 100644 --- a/.github/labeler.yml +++ b/.github/labeler.yml @@ -12,6 +12,10 @@ - changed-files: - any-glob-to-any-file: '**/*.xaml*' +"Changes: Shaders": +- changed-files: + - any-glob-to-any-file: '**/*.swsl' + "No C#": - changed-files: # Equiv to any-glob-to-all as long as this has one matcher. If ALL changed files are not C# files, then apply label. From e1e2d2696906781a28438903a54ca0075c273f35 Mon Sep 17 00:00:00 2001 From: lzk <124214523+lzk228@users.noreply.github.com> Date: Sun, 28 Jul 2024 05:49:06 +0200 Subject: [PATCH 19/89] Fix pancakes stacks (#30270) Fix pancakes --- .../Objects/Consumable/Food/Baked/misc.yml | 17 ++++------------- .../Prototypes/Stacks/consumable_stacks.yml | 12 ++++++++++++ 2 files changed, 16 insertions(+), 13 deletions(-) diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/misc.yml b/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/misc.yml index fde181d8b9..784bfe2cd5 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/misc.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/misc.yml @@ -257,14 +257,12 @@ - type: entity name: blueberry pancake - parent: FoodBakedBase + parent: FoodBakedPancake id: FoodBakedPancakeBb description: A fluffy and delicious blueberry pancake. components: - type: Stack - stackType: Pancake - count: 1 - composite: true + stackType: PancakeBb layerStates: - pancakesbb1 - pancakesbb2 @@ -281,7 +279,6 @@ - state: pancakesbb3 map: ["pancakesbb3"] visible: false - - type: Appearance - type: Tag tags: - Pancake @@ -289,14 +286,12 @@ - type: entity name: chocolate chip pancake - parent: FoodBakedBase + parent: FoodBakedPancake id: FoodBakedPancakeCc description: A fluffy and delicious chocolate chip pancake. components: - type: Stack - stackType: Pancake - count: 1 - composite: true + stackType: PancakeCc layerStates: - pancakescc1 - pancakescc2 @@ -313,7 +308,6 @@ - state: pancakescc3 map: ["pancakescc3"] visible: false - - type: Appearance - type: SolutionContainerManager solutions: food: @@ -323,9 +317,6 @@ Quantity: 5 - ReagentId: Theobromine Quantity: 1 - - type: Tag - tags: - - Pancake - type: entity name: waffles diff --git a/Resources/Prototypes/Stacks/consumable_stacks.yml b/Resources/Prototypes/Stacks/consumable_stacks.yml index e7feab7b52..e2abbcbf08 100644 --- a/Resources/Prototypes/Stacks/consumable_stacks.yml +++ b/Resources/Prototypes/Stacks/consumable_stacks.yml @@ -4,6 +4,18 @@ id: Pancake name: pancake spawn: FoodBakedPancake + maxCount: 9 + +- type: stack + id: PancakeBb + name: blueberry pancake + spawn: FoodBakedPancakeBb + maxCount: 3 + +- type: stack + id: PancakeCc + name: chocolate chip pancake + spawn: FoodBakedPancakeCc maxCount: 3 # Food Containers From d9286dd6d96b095356df552fbc1d3983a619a126 Mon Sep 17 00:00:00 2001 From: PJBot Date: Sun, 28 Jul 2024 03:50:12 +0000 Subject: [PATCH 20/89] Automatic changelog update --- Resources/Changelog/Changelog.yml | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 7f0f467b80..743041807a 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: Plykiya - changes: - - message: Latejoin players now have a chance to roll thief. - type: Add - id: 6494 - time: '2024-04-29T06:38:38.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/27466 - author: ElectroJr changes: - message: Fixed actions sometimes disappearing from the hotbar when double clicking @@ -3779,3 +3772,11 @@ id: 6993 time: '2024-07-28T03:14:18.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/29943 +- author: lzk228 + changes: + - message: Fixed pancakes stacks. Before it, splitting not default pancakes stacks + would give you default pancakes. + type: Fix + id: 6994 + time: '2024-07-28T03:49:06.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/30270 From 4a9bd17a86be792955e88847d8c6e589e00a469b Mon Sep 17 00:00:00 2001 From: Brandon Hu <103440971+Brandon-Huu@users.noreply.github.com> Date: Sun, 28 Jul 2024 04:13:15 +0000 Subject: [PATCH 21/89] tweak(geras): Add a confirmation popup for gera transformation (#29215) * tweak(geras): Add a confirmation popup for gera transformation * remove abstract parent --- Resources/Locale/en-US/actions/actions/polymorph.ftl | 1 + Resources/Prototypes/Actions/types.yml | 2 ++ 2 files changed, 3 insertions(+) create mode 100644 Resources/Locale/en-US/actions/actions/polymorph.ftl diff --git a/Resources/Locale/en-US/actions/actions/polymorph.ftl b/Resources/Locale/en-US/actions/actions/polymorph.ftl new file mode 100644 index 0000000000..4a65a60ecf --- /dev/null +++ b/Resources/Locale/en-US/actions/actions/polymorph.ftl @@ -0,0 +1 @@ +gera-transformation-popup = This action will transform you. Use it again to confirm. diff --git a/Resources/Prototypes/Actions/types.yml b/Resources/Prototypes/Actions/types.yml index 07d1a622ad..af1333e14c 100644 --- a/Resources/Prototypes/Actions/types.yml +++ b/Resources/Prototypes/Actions/types.yml @@ -166,6 +166,8 @@ name: Morph into Geras description: Morphs you into a Geras - a miniature version of you which allows you to move fast, at the cost of your inventory. components: + - type: ConfirmableAction + popup: gera-transformation-popup - type: InstantAction itemIconStyle: BigAction useDelay: 10 # prevent spam From 1d55a439ff3d45a3430d1db8aa75dc9c6bc0f7fd Mon Sep 17 00:00:00 2001 From: Plykiya <58439124+Plykiya@users.noreply.github.com> Date: Sat, 27 Jul 2024 23:17:06 -0700 Subject: [PATCH 22/89] Make NoSlip component networked (#30425) Co-authored-by: plykiya --- Content.Shared/Slippery/NoSlipComponent.cs | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/Content.Shared/Slippery/NoSlipComponent.cs b/Content.Shared/Slippery/NoSlipComponent.cs index 186861a5a9..d9c3fe3f76 100644 --- a/Content.Shared/Slippery/NoSlipComponent.cs +++ b/Content.Shared/Slippery/NoSlipComponent.cs @@ -1,7 +1,9 @@ -namespace Content.Shared.Slippery +using Robust.Shared.GameStates; + +namespace Content.Shared.Slippery; + +[RegisterComponent, NetworkedComponent] +public sealed partial class NoSlipComponent : Component { - [RegisterComponent] - public sealed partial class NoSlipComponent : Component - { - } + } From ab84eee08309babc9193db9f123caed111e14ffd Mon Sep 17 00:00:00 2001 From: PJBot Date: Sun, 28 Jul 2024 06:18:12 +0000 Subject: [PATCH 23/89] Automatic changelog update --- Resources/Changelog/Changelog.yml | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 743041807a..51b9b6f75c 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: ElectroJr - changes: - - message: Fixed actions sometimes disappearing from the hotbar when double clicking - type: Fix - id: 6495 - time: '2024-04-29T08:36:18.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/27468 - author: DrSmugleaf changes: - message: Fixed bullets not going exactly where you click when moving. @@ -3780,3 +3773,11 @@ id: 6994 time: '2024-07-28T03:49:06.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/30270 +- author: Plykiya + changes: + - message: Fixed the client mispredicting people slipping with their magboots turned + on + type: Fix + id: 6995 + time: '2024-07-28T06:17:06.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/30425 From 79fa810b9c41374dd9539aa3de3107523b083b8b Mon Sep 17 00:00:00 2001 From: Plykiya <58439124+Plykiya@users.noreply.github.com> Date: Sun, 28 Jul 2024 01:25:40 -0700 Subject: [PATCH 24/89] Update stomach removal and lung removal smite to not use Component.Owner (#29927) * Update stomach removal and lung removal smite * New function makes things simple --------- Co-authored-by: plykiya --- .../Administration/Systems/AdminVerbSystem.Smites.cs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Content.Server/Administration/Systems/AdminVerbSystem.Smites.cs b/Content.Server/Administration/Systems/AdminVerbSystem.Smites.cs index 3328563116..1f5abf6726 100644 --- a/Content.Server/Administration/Systems/AdminVerbSystem.Smites.cs +++ b/Content.Server/Administration/Systems/AdminVerbSystem.Smites.cs @@ -361,9 +361,9 @@ public sealed partial class AdminVerbSystem Icon = new SpriteSpecifier.Rsi(new ("/Textures/Mobs/Species/Human/organs.rsi"), "stomach"), Act = () => { - foreach (var (component, _) in _bodySystem.GetBodyOrganComponents(args.Target, body)) + foreach (var entity in _bodySystem.GetBodyOrganEntityComps((args.Target, body))) { - QueueDel(component.Owner); + QueueDel(entity.Owner); } _popupSystem.PopupEntity(Loc.GetString("admin-smite-stomach-removal-self"), args.Target, @@ -381,9 +381,9 @@ public sealed partial class AdminVerbSystem Icon = new SpriteSpecifier.Rsi(new ("/Textures/Mobs/Species/Human/organs.rsi"), "lung-r"), Act = () => { - foreach (var (component, _) in _bodySystem.GetBodyOrganComponents(args.Target, body)) + foreach (var entity in _bodySystem.GetBodyOrganEntityComps((args.Target, body))) { - QueueDel(component.Owner); + QueueDel(entity.Owner); } _popupSystem.PopupEntity(Loc.GetString("admin-smite-lung-removal-self"), args.Target, From 2951ea2bee30f3990e6a7976fb3d57b01b0a31d7 Mon Sep 17 00:00:00 2001 From: Jona-K <63449674+Katzenminer@users.noreply.github.com> Date: Sun, 28 Jul 2024 10:32:26 +0200 Subject: [PATCH 25/89] Adjustet MobBaseAncestor class (#30424) --- Resources/Prototypes/Entities/Mobs/NPCs/animals.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/Resources/Prototypes/Entities/Mobs/NPCs/animals.yml b/Resources/Prototypes/Entities/Mobs/NPCs/animals.yml index c044256bb8..70c65dcb8a 100644 --- a/Resources/Prototypes/Entities/Mobs/NPCs/animals.yml +++ b/Resources/Prototypes/Entities/Mobs/NPCs/animals.yml @@ -1250,6 +1250,17 @@ tags: - VimPilot - DoorBumpOpener + - type: Reactive + groups: + Flammable: [ Touch ] + Extinguish: [ Touch ] + reactions: + - reagents: [ Water, SpaceCleaner ] + methods: [ Touch ] + effects: + - !type:WashCreamPieReaction + + - type: entity name: monkey @@ -1283,6 +1294,7 @@ clumsySound: path: /Audio/Animals/monkey_scream.ogg + - type: entity name: monkey id: MobBaseSyndicateMonkey From fce5269fc0b243b78a8742924f97f31807462877 Mon Sep 17 00:00:00 2001 From: PJBot Date: Sun, 28 Jul 2024 08:33:32 +0000 Subject: [PATCH 26/89] Automatic changelog update --- Resources/Changelog/Changelog.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 51b9b6f75c..49a49dfc7b 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: DrSmugleaf - changes: - - message: Fixed bullets not going exactly where you click when moving. - type: Fix - id: 6496 - time: '2024-04-29T13:12:30.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/27484 - author: FungiFellow changes: - message: Syndi-Cats now have a Wideswing, 80% Explosion Resist, 6/6/15 Pierce/Slash/Structural @@ -3781,3 +3774,10 @@ id: 6995 time: '2024-07-28T06:17:06.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/30425 +- author: Katzenminer + changes: + - message: Pun and similar pets are no longer firemune + type: Fix + id: 6996 + time: '2024-07-28T08:32:27.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/30424 From 46c8cecbbc6f8e0a3bc30182504cac5b2c7e2d0e Mon Sep 17 00:00:00 2001 From: lzk <124214523+lzk228@users.noreply.github.com> Date: Sun, 28 Jul 2024 21:53:23 +0200 Subject: [PATCH 27/89] Update Marathon (Engineering revamp and small stuff) (#30429) * Update Marathon * Update 2 * Update 3 * Update 5 * Update 5 (actually this time) --- Resources/Maps/marathon.yml | 31254 ++++++++++++++++------------------ 1 file changed, 14606 insertions(+), 16648 deletions(-) diff --git a/Resources/Maps/marathon.yml b/Resources/Maps/marathon.yml index 58136160e2..0bb7ea2aed 100644 --- a/Resources/Maps/marathon.yml +++ b/Resources/Maps/marathon.yml @@ -47,6 +47,7 @@ tilemap: 101: FloorSteelHerringbone 102: FloorSteelLime 103: FloorSteelMini + 1: FloorSteelMono 106: FloorSteelPavement 107: FloorSteelPavementVertical 108: FloorTechMaint @@ -76,7 +77,7 @@ entities: version: 6 0,0: ind: 0,0 - tiles: XQAAAAABXQAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAADfgAAAAAAXQAAAAABXQAAAAABXQAAAAACXQAAAAADXQAAAAADXQAAAAAAXQAAAAADXQAAAAACXQAAAAACXQAAAAACXQAAAAADXQAAAAADXQAAAAABXQAAAAACXQAAAAABXQAAAAAAXQAAAAABXQAAAAABXQAAAAACXQAAAAABXQAAAAADXQAAAAACXQAAAAABXQAAAAAAXQAAAAADXQAAAAACXQAAAAACXQAAAAACXQAAAAAAXQAAAAACXQAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAABXQAAAAACXQAAAAAAXQAAAAADXQAAAAACXQAAAAACXQAAAAABXQAAAAAAXQAAAAABXQAAAAAAXQAAAAADXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAABXQAAAAAAXQAAAAACXQAAAAAAXQAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAABXQAAAAABXQAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAABfgAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAADfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABHwAAAAACXQAAAAAAHwAAAAABXQAAAAAAHwAAAAADXQAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADXQAAAAACHwAAAAADXQAAAAACHwAAAAABXQAAAAACHwAAAAADXQAAAAABXQAAAAADXQAAAAABXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAHwAAAAABXQAAAAADHwAAAAABXQAAAAADHwAAAAACXQAAAAACXQAAAAAAXQAAAAABXQAAAAABXQAAAAABfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAHwAAAAAAXQAAAAAAHwAAAAAAfgAAAAAAHwAAAAAAXQAAAAACHwAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAHwAAAAADXQAAAAACfgAAAAAAXQAAAAABHwAAAAACXQAAAAACfgAAAAAAXQAAAAADXQAAAAAAXQAAAAACfgAAAAAAHwAAAAABHwAAAAABHwAAAAACHwAAAAAAHwAAAAADXQAAAAACHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAAAfgAAAAAAHwAAAAADHwAAAAADHwAAAAADHwAAAAACHwAAAAAAfgAAAAAAHwAAAAADfgAAAAAAHwAAAAADHwAAAAADHwAAAAADfgAAAAAAXQAAAAADXQAAAAAAXQAAAAABfgAAAAAAHwAAAAACHwAAAAACHwAAAAADHwAAAAAAegAAAAACfgAAAAAAGwAAAAAAGwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAABfgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAQwAAAAAAQwAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAADfgAAAAAAHwAAAAADHwAAAAABHwAAAAAAHwAAAAACHwAAAAADfgAAAAAAHwAAAAAAHwAAAAABHwAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAADXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAHwAAAAAD + tiles: XQAAAAABXQAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAADfgAAAAAAXQAAAAABXQAAAAABXQAAAAACXQAAAAADXQAAAAADXQAAAAAAXQAAAAADXQAAAAACXQAAAAACXQAAAAACXQAAAAADXQAAAAADXQAAAAABXQAAAAACXQAAAAABXQAAAAAAXQAAAAABXQAAAAABXQAAAAACXQAAAAABXQAAAAADXQAAAAACXQAAAAABXQAAAAAAXQAAAAADXQAAAAACXQAAAAACXQAAAAACXQAAAAAAXQAAAAACXQAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAABXQAAAAACXQAAAAAAXQAAAAADXQAAAAACXQAAAAACXQAAAAABXQAAAAAAXQAAAAABXQAAAAAAXQAAAAADXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAABXQAAAAAAXQAAAAACXQAAAAAAXQAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAABXQAAAAABXQAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAABfgAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAADfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABHwAAAAACXQAAAAAAHwAAAAABXQAAAAAAHwAAAAADXQAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADXQAAAAACHwAAAAADXQAAAAACHwAAAAABXQAAAAACHwAAAAADXQAAAAABXQAAAAADXQAAAAABXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAHwAAAAABXQAAAAADHwAAAAABXQAAAAADHwAAAAACXQAAAAACXQAAAAAAXQAAAAABXQAAAAABXQAAAAABfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAHwAAAAAAXQAAAAAAHwAAAAAAfgAAAAAAHwAAAAAAXQAAAAACHwAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAHwAAAAADXQAAAAACfgAAAAAAXQAAAAABHwAAAAACXQAAAAACfgAAAAAAXQAAAAADXQAAAAAAXQAAAAACfgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHwAAAAAAHwAAAAADXQAAAAACHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAADHwAAAAACHwAAAAAAfgAAAAAAHwAAAAADfgAAAAAAHwAAAAADHwAAAAADHwAAAAADfgAAAAAAXQAAAAADXQAAAAAAXQAAAAABfgAAAAAAeQAAAAAAeQAAAAAAHwAAAAADHwAAAAAAegAAAAACfgAAAAAAGwAAAAAAGwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAABfgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAQwAAAAAAQwAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAADfgAAAAAAHwAAAAADHwAAAAABHwAAAAAAHwAAAAACHwAAAAADfgAAAAAAHwAAAAAAHwAAAAABHwAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAADXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAHwAAAAAD version: 6 -1,-1: ind: -1,-1 @@ -88,7 +89,7 @@ entities: version: 6 -2,0: ind: -2,0 - tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAACXQAAAAABXQAAAAAAXQAAAAACXQAAAAADXQAAAAABXQAAAAABXQAAAAACXQAAAAAAXQAAAAAAXQAAAAABXQAAAAACXQAAAAADXQAAAAABXQAAAAAAXQAAAAABXQAAAAADXQAAAAACXQAAAAACXQAAAAADXQAAAAADXQAAAAABXQAAAAADXQAAAAAAXQAAAAABXQAAAAADXQAAAAAAXQAAAAAAXQAAAAADXQAAAAADXQAAAAACXQAAAAABXQAAAAABXQAAAAABXQAAAAAAXQAAAAACXQAAAAAAXQAAAAACXQAAAAABXQAAAAABXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAADXQAAAAAAXQAAAAACXQAAAAACfgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAABfgAAAAAAYAAAAAAAYAAAAAABHwAAAAABHwAAAAADfgAAAAAATQAAAAAATQAAAAADTQAAAAABTQAAAAAATQAAAAABTQAAAAACXQAAAAABXQAAAAACXQAAAAACXQAAAAADXQAAAAABYAAAAAAAYAAAAAADJAAAAAABHwAAAAADfgAAAAAAPAAAAAAATQAAAAACagAAAAABagAAAAAAagAAAAADTQAAAAACfgAAAAAAXQAAAAAAXQAAAAABXQAAAAABfgAAAAAAYAAAAAADYAAAAAADJAAAAAACHwAAAAABfgAAAAAAPAAAAAAATQAAAAAAagAAAAADagAAAAABagAAAAABTQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAYAAAAAACYAAAAAADJAAAAAABHwAAAAABfgAAAAAAPAAAAAAATQAAAAADagAAAAADagAAAAAAagAAAAADTQAAAAACTQAAAAABXQAAAAADXQAAAAAAXQAAAAADfgAAAAAAYAAAAAADYAAAAAABHwAAAAACHwAAAAABfgAAAAAAPAAAAAAATQAAAAACagAAAAADagAAAAADagAAAAAATQAAAAABTQAAAAADXQAAAAACXQAAAAABXQAAAAABXQAAAAACYAAAAAACYAAAAAABHwAAAAACfgAAAAAAfgAAAAAAPAAAAAAATQAAAAABagAAAAAAagAAAAABagAAAAAATQAAAAAATQAAAAABXQAAAAAAXQAAAAABXQAAAAADfgAAAAAAYAAAAAACYAAAAAACHwAAAAABHwAAAAAAfgAAAAAATQAAAAADTQAAAAABTQAAAAAATQAAAAADTQAAAAABTQAAAAADPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAABHwAAAAABfgAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAATQAAAAADPAAAAAAAPAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAALgAAAAAALgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJgAAAAABfgAAAAAAfgAAAAAAfgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAJgAAAAABPAAAAAAAPAAAAAAAfgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA + tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAACXQAAAAABXQAAAAAAXQAAAAACXQAAAAADXQAAAAABXQAAAAABXQAAAAACXQAAAAAAXQAAAAAAXQAAAAABXQAAAAACXQAAAAADXQAAAAABXQAAAAAAXQAAAAABXQAAAAADXQAAAAACXQAAAAACXQAAAAADXQAAAAADXQAAAAABXQAAAAADXQAAAAAAXQAAAAABXQAAAAADXQAAAAAAXQAAAAAAXQAAAAADXQAAAAADXQAAAAACXQAAAAABXQAAAAABXQAAAAABXQAAAAAAXQAAAAACXQAAAAAAXQAAAAACXQAAAAABXQAAAAABXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAADXQAAAAAAXQAAAAACXQAAAAACfgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAXQAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAABfgAAAAAAYAAAAAAAYAAAAAABHwAAAAABHwAAAAADfgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAXQAAAAAAXQAAAAAAXQAAAAABXQAAAAACXQAAAAACXQAAAAADXQAAAAABYAAAAAAAYAAAAAADJAAAAAABHwAAAAADfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAAQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAABfgAAAAAAYAAAAAADYAAAAAADJAAAAAACHwAAAAABfgAAAAAAXQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAYAAAAAACYAAAAAADJAAAAAABHwAAAAABfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAAQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAYAAAAAADYAAAAAABHwAAAAACHwAAAAABfgAAAAAAXQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAACYAAAAAACYAAAAAABHwAAAAACfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAAQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAYAAAAAACYAAAAAACHwAAAAABHwAAAAAAfgAAAAAAXQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAABHwAAAAABfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAALgAAAAAALgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJgAAAAABfgAAAAAAfgAAAAAAfgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAKAAAAAAAPAAAAAAAPAAAAAAAfgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA version: 6 0,1: ind: 0,1 @@ -100,7 +101,7 @@ entities: version: 6 -2,1: ind: -2,1 - tiles: fgAAAAAAbAAAAAAAfgAAAAAAPAAAAAAAJgAAAAAAJgAAAAACJgAAAAABJgAAAAAAJgAAAAABPAAAAAAAfgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAALgAAAAAALgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAADegAAAAABfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAAAegAAAAADfgAAAAAAYgAAAAACYgAAAAABYgAAAAACYgAAAAACfgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAADegAAAAACfgAAAAAAYgAAAAAAYgAAAAAAYgAAAAACYgAAAAAAfgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAADgAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAALgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAABXQAAAAADXQAAAAACXQAAAAABXQAAAAAAXQAAAAACXQAAAAADXQAAAAABXQAAAAACXQAAAAAAXQAAAAADXQAAAAAAXQAAAAACXQAAAAADTQAAAAAAXQAAAAADXQAAAAABXQAAAAACXQAAAAACXQAAAAADTQAAAAAAXQAAAAACXQAAAAAAXQAAAAADXQAAAAABXQAAAAAAXQAAAAABXQAAAAADXQAAAAADXQAAAAAAXQAAAAAAXQAAAAACXQAAAAACXQAAAAACXQAAAAACXQAAAAAAXQAAAAABXQAAAAABXQAAAAABXQAAAAABXQAAAAABXQAAAAABXQAAAAADXQAAAAAAXQAAAAABXQAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAACXQAAAAAAXQAAAAACXQAAAAABXQAAAAABXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAACXQAAAAADXQAAAAAAXQAAAAABXQAAAAACXQAAAAADfgAAAAAAfgAAAAAAegAAAAABegAAAAADegAAAAADegAAAAADegAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAACXQAAAAACXQAAAAABXQAAAAAAXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAegAAAAACegAAAAACegAAAAAAegAAAAAAegAAAAAAfgAAAAAA + tiles: fgAAAAAAbAAAAAAAfgAAAAAAPAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAPAAAAAAAfgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAALgAAAAAALgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAADegAAAAABfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAAAegAAAAADfgAAAAAAYgAAAAACYgAAAAABYgAAAAACYgAAAAACfgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAADegAAAAACfgAAAAAAYgAAAAAAYgAAAAAAYgAAAAACYgAAAAAAfgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAADgAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAALgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAABXQAAAAADXQAAAAACXQAAAAABXQAAAAAAXQAAAAACXQAAAAADXQAAAAABXQAAAAACXQAAAAAAXQAAAAADXQAAAAAAXQAAAAACXQAAAAADTQAAAAAAXQAAAAADXQAAAAABXQAAAAACXQAAAAACXQAAAAADTQAAAAAAXQAAAAACXQAAAAAAXQAAAAADXQAAAAABXQAAAAAAXQAAAAABXQAAAAADXQAAAAADXQAAAAAAXQAAAAAAXQAAAAACXQAAAAACXQAAAAACXQAAAAACXQAAAAAAXQAAAAABXQAAAAABXQAAAAABXQAAAAABXQAAAAABXQAAAAABXQAAAAADXQAAAAAAXQAAAAABXQAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAACXQAAAAAAXQAAAAACXQAAAAABXQAAAAABXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAACXQAAAAADXQAAAAAAXQAAAAABXQAAAAACXQAAAAADfgAAAAAAfgAAAAAAegAAAAABegAAAAADegAAAAADegAAAAADegAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAACXQAAAAACXQAAAAABXQAAAAAAXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAegAAAAACegAAAAACegAAAAAAegAAAAAAegAAAAAAfgAAAAAA version: 6 -3,0: ind: -3,0 @@ -148,7 +149,7 @@ entities: version: 6 -3,3: ind: -3,3 - tiles: XQAAAAADXQAAAAACfgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAADXQAAAAABXQAAAAADXQAAAAACfgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAAAXQAAAAACXQAAAAACXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAADXQAAAAAAXQAAAAACXQAAAAADHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAADfgAAAAAAXQAAAAADXQAAAAACXQAAAAACXQAAAAADXQAAAAABXQAAAAAAHwAAAAACHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAADXQAAAAAAXQAAAAAAXQAAAAADHwAAAAABHwAAAAAAfgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAAAXQAAAAABXQAAAAADXQAAAAAAHwAAAAADHwAAAAAAfgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAACXQAAAAADXQAAAAABXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAUgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAAAXQAAAAABfgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAXQAAAAADXQAAAAAAXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAXQAAAAADXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAXQAAAAADUgAAAAAAUgAAAAAAfgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACfgAAAAAAUgAAAAAAUgAAAAAALgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAXQAAAAADXQAAAAAAXQAAAAAAfgAAAAAALgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAXQAAAAAAUgAAAAAAUgAAAAAAfgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAXQAAAAADXQAAAAADXQAAAAAAfgAAAAAALgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAALgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAABXQAAAAADXQAAAAABLgAAAAAALgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAA + tiles: XQAAAAADXQAAAAACfgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAADXQAAAAABXQAAAAADXQAAAAACfgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAAAXQAAAAACXQAAAAACXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAADXQAAAAAAXQAAAAACXQAAAAADHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAADfgAAAAAAXQAAAAADXQAAAAACXQAAAAACXQAAAAADXQAAAAABXQAAAAAAHwAAAAACHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAADXQAAAAAAXQAAAAAAXQAAAAADHwAAAAABHwAAAAAAfgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAAAXQAAAAABXQAAAAADXQAAAAAAHwAAAAADHwAAAAAAfgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAACXQAAAAADXQAAAAABXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAUgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAAAXQAAAAABfgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAXQAAAAADXQAAAAAAXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAXQAAAAADXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAXQAAAAADUgAAAAAAUgAAAAAAfgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACfgAAAAAAUgAAAAAAUgAAAAAALgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAXQAAAAADXQAAAAAAXQAAAAAAfgAAAAAALgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAXQAAAAAAUgAAAAAAUgAAAAAAfgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAXQAAAAADXQAAAAADXQAAAAAAfgAAAAAALgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAALgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAABXQAAAAADXQAAAAABLgAAAAAALgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAA version: 6 -2,3: ind: -2,3 @@ -156,7 +157,7 @@ entities: version: 6 -3,4: ind: -3,4 - tiles: XQAAAAABXQAAAAABXQAAAAABLgAAAAAALgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAABPwAAAAAAPwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAACPwAAAAAAPwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: XQAAAAABXQAAAAABXQAAAAABLgAAAAAALgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAABXQAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAXQAAAAABXQAAAAAAXQAAAAABPwAAAAAAPwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAADXQAAAAADXQAAAAACPwAAAAAAPwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -4,4: ind: -4,4 @@ -176,7 +177,7 @@ entities: version: 6 1,1: ind: 1,1 - tiles: fgAAAAAAeQAAAAABeQAAAAABfgAAAAAAHwAAAAADHwAAAAACHwAAAAABHwAAAAAAfgAAAAAAegAAAAACegAAAAABegAAAAAAegAAAAABegAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAeQAAAAABeQAAAAABeQAAAAACeQAAAAAAXQAAAAACXQAAAAAAXQAAAAABXQAAAAACXQAAAAAAHwAAAAABHwAAAAACHwAAAAABHwAAAAADHwAAAAAAHwAAAAAAfgAAAAAAeQAAAAACeQAAAAACeQAAAAAAeQAAAAABXQAAAAABXQAAAAAAXQAAAAAAXQAAAAADXQAAAAAAHwAAAAADHwAAAAACHwAAAAABHwAAAAABHwAAAAAAHwAAAAADHwAAAAADHwAAAAADHwAAAAABXQAAAAACXQAAAAABXQAAAAABXQAAAAACXQAAAAAAXQAAAAABXQAAAAAAHwAAAAADHwAAAAAAHwAAAAADHwAAAAADHwAAAAACHwAAAAABHwAAAAABHwAAAAACHwAAAAABXQAAAAACXQAAAAADXQAAAAAAXQAAAAACXQAAAAAAXQAAAAADXQAAAAADcAAAAAACJAAAAAABJAAAAAADJAAAAAAATQAAAAAATQAAAAADHwAAAAADHwAAAAAAHwAAAAACXQAAAAACXQAAAAACXQAAAAADXQAAAAAAXQAAAAABXQAAAAABXQAAAAACfgAAAAAAJAAAAAABJAAAAAABJAAAAAACTQAAAAADTQAAAAAAHwAAAAADHwAAAAAAHwAAAAACXQAAAAACXQAAAAADXQAAAAAAXQAAAAADXQAAAAABXQAAAAACXQAAAAADfgAAAAAAJAAAAAAAJAAAAAAAJAAAAAADTQAAAAABTQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAADXQAAAAABXQAAAAABXQAAAAADXQAAAAABXQAAAAADXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAALgAAAAAALgAAAAAAEAAAAAAAEAAAAAAAfgAAAAAAbAAAAAAAXQAAAAADXQAAAAADXQAAAAADXQAAAAAAXQAAAAACXQAAAAACXQAAAAAAXQAAAAACXQAAAAABcAAAAAACLgAAAAAALgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAACXQAAAAABXQAAAAAAXQAAAAACXQAAAAADXQAAAAADXQAAAAAAfgAAAAAALgAAAAAALgAAAAAAfgAAAAAAEAAAAAAAfgAAAAAAEAAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAACfgAAAAAAfgAAAAAALgAAAAAALgAAAAAAfgAAAAAAEAAAAAAAfgAAAAAAEAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAADfgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbQAAAAAAXQAAAAAAXQAAAAACXQAAAAABfgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAADfgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAALgAAAAAALgAAAAAALgAAAAAA + tiles: HwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAHwAAAAADHwAAAAACHwAAAAABHwAAAAAAfgAAAAAAegAAAAACegAAAAABegAAAAAAegAAAAABegAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAeQAAAAABeQAAAAABeQAAAAACeQAAAAAAXQAAAAACXQAAAAAAXQAAAAABXQAAAAACXQAAAAAAHwAAAAABHwAAAAACHwAAAAABHwAAAAADHwAAAAAAHwAAAAAAfgAAAAAAeQAAAAACeQAAAAACeQAAAAAAeQAAAAABXQAAAAABXQAAAAAAXQAAAAAAXQAAAAADXQAAAAAAHwAAAAADHwAAAAACHwAAAAABHwAAAAABHwAAAAAAHwAAAAADHwAAAAADHwAAAAADHwAAAAABXQAAAAACXQAAAAABXQAAAAABXQAAAAACXQAAAAAAXQAAAAABXQAAAAAAHwAAAAADHwAAAAAAHwAAAAADHwAAAAADHwAAAAACHwAAAAABHwAAAAABHwAAAAACHwAAAAABXQAAAAACXQAAAAADXQAAAAAAXQAAAAACXQAAAAAAXQAAAAADXQAAAAADcAAAAAACJAAAAAABJAAAAAADJAAAAAAATQAAAAAATQAAAAADHwAAAAADHwAAAAAAHwAAAAACXQAAAAACXQAAAAACXQAAAAADXQAAAAAAXQAAAAABXQAAAAABXQAAAAACfgAAAAAAJAAAAAABJAAAAAABJAAAAAACTQAAAAADTQAAAAAAHwAAAAADHwAAAAAAHwAAAAACXQAAAAACXQAAAAADXQAAAAAAXQAAAAADXQAAAAABXQAAAAACXQAAAAADfgAAAAAAJAAAAAAAJAAAAAAAJAAAAAADTQAAAAABTQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAADXQAAAAABXQAAAAABXQAAAAADXQAAAAABXQAAAAADXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAALgAAAAAALgAAAAAAEAAAAAAAEAAAAAAAfgAAAAAAbAAAAAAAXQAAAAADXQAAAAADXQAAAAADXQAAAAAAXQAAAAACXQAAAAACXQAAAAAAXQAAAAACXQAAAAABcAAAAAACLgAAAAAALgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAACXQAAAAABXQAAAAAAXQAAAAACXQAAAAADXQAAAAADXQAAAAAAfgAAAAAALgAAAAAALgAAAAAAfgAAAAAAEAAAAAAAfgAAAAAAEAAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAACfgAAAAAAfgAAAAAALgAAAAAALgAAAAAAfgAAAAAAEAAAAAAAfgAAAAAAEAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAADfgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbQAAAAAAXQAAAAAAXQAAAAACXQAAAAABfgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAADfgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAALgAAAAAALgAAAAAALgAAAAAA version: 6 1,2: ind: 1,2 @@ -192,7 +193,7 @@ entities: version: 6 1,0: ind: 1,0 - tiles: XQAAAAABXQAAAAACXQAAAAABXQAAAAADXQAAAAADXQAAAAABfgAAAAAAegAAAAADegAAAAADegAAAAADegAAAAADXQAAAAABfgAAAAAAXQAAAAACXQAAAAADXQAAAAACXQAAAAAAXQAAAAADXQAAAAACXQAAAAADXQAAAAAAXQAAAAADfgAAAAAAegAAAAADegAAAAADegAAAAADegAAAAABXQAAAAADXQAAAAAAXQAAAAACXQAAAAADXQAAAAAAXQAAAAACXQAAAAAAXQAAAAABXQAAAAAAXQAAAAABXQAAAAAAfgAAAAAAegAAAAADegAAAAABegAAAAABegAAAAAAXQAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAACHwAAAAACcAAAAAABcAAAAAABcAAAAAAAcAAAAAAAcAAAAAADcAAAAAAAHwAAAAAAHwAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAACHwAAAAAAcAAAAAABcAAAAAADcAAAAAADcAAAAAABcAAAAAADcAAAAAADHwAAAAADHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAADHwAAAAADcAAAAAABcAAAAAADXQAAAAADXQAAAAACXQAAAAACcAAAAAABfgAAAAAAHwAAAAAAHwAAAAABHwAAAAADHwAAAAADHwAAAAACHwAAAAADHwAAAAACHwAAAAABHwAAAAABcAAAAAAAcAAAAAAAXQAAAAACXQAAAAABXQAAAAAAcAAAAAACfgAAAAAAfgAAAAAAHwAAAAABHwAAAAACHwAAAAACHwAAAAAAHwAAAAAAHwAAAAADHwAAAAADHwAAAAABcAAAAAAAcAAAAAACcAAAAAACcAAAAAADcAAAAAAAcAAAAAAAfgAAAAAAHwAAAAACHwAAAAAAHwAAAAADHwAAAAAAHwAAAAACHwAAAAAAHwAAAAADHwAAAAACHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAAAHwAAAAADfgAAAAAAegAAAAAAegAAAAADegAAAAADegAAAAACegAAAAABfgAAAAAAfgAAAAAAfgAAAAAAeQAAAAABbAAAAAAAfgAAAAAAHwAAAAADHwAAAAACHwAAAAADHwAAAAADfgAAAAAAegAAAAADegAAAAADegAAAAAAegAAAAAAegAAAAADfgAAAAAAEQAAAAAAHwAAAAAAHwAAAAADHwAAAAADHwAAAAABHwAAAAABHwAAAAABHwAAAAACHwAAAAAAfgAAAAAAegAAAAACegAAAAACegAAAAADegAAAAADegAAAAADfgAAAAAAEQAAAAAA + tiles: XQAAAAABXQAAAAACXQAAAAABXQAAAAADXQAAAAADXQAAAAABfgAAAAAAegAAAAADegAAAAADegAAAAADegAAAAADXQAAAAABfgAAAAAAXQAAAAACXQAAAAADXQAAAAACXQAAAAAAXQAAAAADXQAAAAACXQAAAAADXQAAAAAAXQAAAAADfgAAAAAAegAAAAADegAAAAADegAAAAADegAAAAABXQAAAAADXQAAAAAAXQAAAAACXQAAAAADXQAAAAAAXQAAAAACXQAAAAAAXQAAAAABXQAAAAAAXQAAAAABXQAAAAAAfgAAAAAAegAAAAADegAAAAABegAAAAABegAAAAAAXQAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAACHwAAAAACcAAAAAABcAAAAAABcAAAAAAAcAAAAAAAcAAAAAADcAAAAAAAHwAAAAAAHwAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAACHwAAAAAAcAAAAAABcAAAAAADcAAAAAADcAAAAAABcAAAAAADcAAAAAADHwAAAAADHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAADHwAAAAADcAAAAAABcAAAAAADXQAAAAADXQAAAAACXQAAAAACcAAAAAABfgAAAAAAHwAAAAAAHwAAAAABHwAAAAADHwAAAAADHwAAAAACHwAAAAADHwAAAAACHwAAAAABHwAAAAABcAAAAAAAcAAAAAAAXQAAAAACXQAAAAABXQAAAAAAcAAAAAACfgAAAAAAfgAAAAAAHwAAAAABHwAAAAACHwAAAAACHwAAAAAAHwAAAAAAHwAAAAADHwAAAAADHwAAAAABcAAAAAAAcAAAAAACcAAAAAACcAAAAAADcAAAAAAAcAAAAAAAfgAAAAAAHwAAAAACHwAAAAAAHwAAAAADHwAAAAAAHwAAAAACHwAAAAAAHwAAAAADHwAAAAACHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAACHwAAAAAAHwAAAAADfgAAAAAAegAAAAAAegAAAAADegAAAAADegAAAAACegAAAAABfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAADHwAAAAACHwAAAAADHwAAAAADfgAAAAAAegAAAAADegAAAAADegAAAAAAegAAAAAAegAAAAADfgAAAAAAEQAAAAAAHwAAAAAAHwAAAAADHwAAAAADHwAAAAABHwAAAAABHwAAAAABHwAAAAACHwAAAAAAfgAAAAAAegAAAAACegAAAAACegAAAAADegAAAAADegAAAAADfgAAAAAAEQAAAAAA version: 6 1,-1: ind: 1,-1 @@ -200,11 +201,11 @@ entities: version: 6 -1,-2: ind: -1,-2 - tiles: HwAAAAABfgAAAAAAXQAAAAABXQAAAAADXQAAAAAAXQAAAAABXQAAAAAAXQAAAAABXQAAAAABXQAAAAACXQAAAAABfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAHwAAAAADfgAAAAAAXQAAAAAAXQAAAAABXQAAAAACXQAAAAAAXQAAAAACXQAAAAAAXQAAAAACXQAAAAACXQAAAAACfgAAAAAAXQAAAAAAXQAAAAACXQAAAAADXQAAAAADHwAAAAADHwAAAAADXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAACHwAAAAACfgAAAAAAXQAAAAABXQAAAAABXQAAAAAAXQAAAAACXQAAAAABXQAAAAABXQAAAAAAXQAAAAABXQAAAAACfgAAAAAAXQAAAAACXQAAAAABXQAAAAACXQAAAAABfgAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAABXQAAAAAAXQAAAAADXQAAAAADXQAAAAACfgAAAAAAXQAAAAADXQAAAAADXQAAAAABXQAAAAACbAAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAAAXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAAAfgAAAAAAcAAAAAACcAAAAAABcAAAAAADcAAAAAAAfgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAABfgAAAAAAcAAAAAADcAAAAAAAcAAAAAABcAAAAAACfgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAABfgAAAAAAcAAAAAACcAAAAAADcAAAAAABcAAAAAABfgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAACXQAAAAABcAAAAAADcAAAAAACcAAAAAADcAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAADXQAAAAAAcAAAAAADcAAAAAAAcAAAAAACcAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAAAXQAAAAABfgAAAAAAfgAAAAAAcAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAcAAAAAACcAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAA + tiles: HwAAAAAAfgAAAAAAXQAAAAAAEQAAAAAAHwAAAAAAEQAAAAAAHwAAAAAAEQAAAAAAHwAAAAAAEQAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAEQAAAAAAHwAAAAAAEQAAAAAAHwAAAAAAEQAAAAAAHwAAAAAAEQAAAAAAHwAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAADXQAAAAADHwAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAHwAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAACHwAAAAAAfgAAAAAAHwAAAAAAEQAAAAAAHwAAAAAAEQAAAAAAHwAAAAAAEQAAAAAAHwAAAAAAEQAAAAAAHwAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAACXQAAAAABfgAAAAAAfgAAAAAAHwAAAAAAEQAAAAAAHwAAAAAAEQAAAAAAHwAAAAAAEQAAAAAAHwAAAAAAEQAAAAAAHwAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAABXQAAAAACbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAAAXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAAAfgAAAAAAcAAAAAACcAAAAAABcAAAAAADcAAAAAAAfgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAABfgAAAAAAcAAAAAADcAAAAAAAcAAAAAABcAAAAAACfgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAABfgAAAAAAcAAAAAACcAAAAAADcAAAAAABcAAAAAABfgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAACXQAAAAABcAAAAAADcAAAAAACcAAAAAADcAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAADXQAAAAAAcAAAAAADcAAAAAAAcAAAAAACcAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAAAXQAAAAABfgAAAAAAfgAAAAAAcAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAcAAAAAACcAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAA version: 6 -2,-2: ind: -2,-2 - tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAAAegAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAABfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAABfgAAAAAAegAAAAADegAAAAACegAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAACcAAAAAACcAAAAAABfgAAAAAAHwAAAAADHwAAAAACHwAAAAACfgAAAAAAcAAAAAADcAAAAAAAcAAAAAADfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAcAAAAAACeQAAAAACcAAAAAADHwAAAAACHwAAAAABHwAAAAABHwAAAAADHwAAAAADcAAAAAACeQAAAAACcAAAAAADDAAAAAADcAAAAAACcAAAAAACcAAAAAAAfgAAAAAAcAAAAAAAeQAAAAABcAAAAAACfgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAcAAAAAACeQAAAAABcAAAAAAADAAAAAACcAAAAAACcAAAAAAAcAAAAAADfgAAAAAAcAAAAAACeQAAAAABcAAAAAACfgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAcAAAAAADeQAAAAAAcAAAAAADcAAAAAAAcAAAAAADcAAAAAADcAAAAAABfgAAAAAAcAAAAAAAeQAAAAAAcAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAADeQAAAAABcAAAAAACDAAAAAABcAAAAAADcAAAAAABcAAAAAAAfgAAAAAAcAAAAAABeQAAAAADcAAAAAABfgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAcAAAAAAAeQAAAAACcAAAAAACDAAAAAAAcAAAAAAAcAAAAAAAcAAAAAADcAAAAAACcAAAAAABeQAAAAAAcAAAAAADfgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAcAAAAAACeQAAAAAAcAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAADeQAAAAACcAAAAAAAHwAAAAACHwAAAAABHwAAAAADHwAAAAACHwAAAAABcAAAAAAAeQAAAAADcAAAAAACfgAAAAAAeQAAAAABeQAAAAADeQAAAAAA + tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAAAegAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAABfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAABfgAAAAAAegAAAAADegAAAAACegAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAACcAAAAAACcAAAAAABfgAAAAAAHwAAAAADHwAAAAACHwAAAAACfgAAAAAAcAAAAAADcAAAAAAAcAAAAAADfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAcAAAAAACeQAAAAACcAAAAAADHwAAAAACHwAAAAABHwAAAAABHwAAAAADHwAAAAADcAAAAAACeQAAAAACcAAAAAADDAAAAAADcAAAAAACcAAAAAACcAAAAAAAfgAAAAAAcAAAAAAAeQAAAAABcAAAAAACfgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAcAAAAAACeQAAAAABcAAAAAAADAAAAAACcAAAAAACcAAAAAAAcAAAAAADfgAAAAAAcAAAAAACeQAAAAABcAAAAAACfgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAcAAAAAADeQAAAAAAcAAAAAADcAAAAAAAcAAAAAADcAAAAAADcAAAAAABfgAAAAAAcAAAAAAAeQAAAAAAcAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAADeQAAAAABcAAAAAACDAAAAAABcAAAAAADcAAAAAABcAAAAAAAfgAAAAAAcAAAAAABeQAAAAADcAAAAAABfgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAcAAAAAAAeQAAAAACcAAAAAACDAAAAAAAcAAAAAAAcAAAAAAAcAAAAAADcAAAAAACcAAAAAABeQAAAAAAcAAAAAADfgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAcAAAAAACeQAAAAAAcAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAADeQAAAAACcAAAAAAAHwAAAAACHwAAAAABHwAAAAADHwAAAAACHwAAAAABcAAAAAAAeQAAAAADcAAAAAACfgAAAAAAeQAAAAABeQAAAAADeQAAAAAA version: 6 -3,-2: ind: -3,-2 @@ -212,11 +213,11 @@ entities: version: 6 0,-2: ind: 0,-2 - tiles: fgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAAAXQAAAAABXQAAAAABXQAAAAABXQAAAAACXQAAAAADfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAABXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAADXQAAAAACfgAAAAAAXQAAAAACXQAAAAAAXQAAAAABfgAAAAAAXQAAAAADXQAAAAAAXQAAAAADXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAACXQAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAADXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAACfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAABfgAAAAAAXQAAAAAAXQAAAAABXQAAAAADXQAAAAAAXQAAAAABbAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAAAXQAAAAACXQAAAAABXQAAAAACXQAAAAAAXQAAAAACXQAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAACXQAAAAACXQAAAAABXQAAAAACXQAAAAABXQAAAAACXQAAAAADbAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAAAXQAAAAABXQAAAAABbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAADHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAACXQAAAAABXQAAAAADXQAAAAAAXQAAAAADXQAAAAAAXQAAAAACXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAABXQAAAAADfgAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAAAXQAAAAADXQAAAAACXQAAAAAAXQAAAAABXQAAAAABXQAAAAAAXQAAAAABXQAAAAAAXQAAAAADXQAAAAACXQAAAAACHwAAAAABfgAAAAAAXQAAAAACXQAAAAAAXQAAAAADXQAAAAADXQAAAAAAXQAAAAABXQAAAAAAXQAAAAACXQAAAAAAXQAAAAADXQAAAAADXQAAAAAAXQAAAAAAXQAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAKAAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAACHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAegAAAAABegAAAAAAegAAAAADfgAAAAAAXQAAAAACXQAAAAACXQAAAAAAHwAAAAACfgAAAAAA + tiles: fgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAAAXQAAAAABXQAAAAABXQAAAAABXQAAAAACXQAAAAADfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAABXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAADXQAAAAACfgAAAAAAXQAAAAACXQAAAAAAXQAAAAABfgAAAAAAXQAAAAADXQAAAAAAXQAAAAADXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAACXQAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAADXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAACfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAADXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAABfgAAAAAAXQAAAAAAXQAAAAABXQAAAAADXQAAAAAAXQAAAAABfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAAAXQAAAAACXQAAAAABXQAAAAACXQAAAAAAXQAAAAACXQAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAACXQAAAAACXQAAAAABXQAAAAACXQAAAAABXQAAAAACXQAAAAADbAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAAAXQAAAAABXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAADHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAACXQAAAAABXQAAAAADXQAAAAAAXQAAAAADXQAAAAAAXQAAAAACXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAABXQAAAAADfgAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAAAXQAAAAADXQAAAAACXQAAAAAAXQAAAAABXQAAAAABXQAAAAAAXQAAAAABXQAAAAAAXQAAAAADXQAAAAACXQAAAAACHwAAAAABfgAAAAAAXQAAAAACXQAAAAAAXQAAAAADXQAAAAADXQAAAAAAXQAAAAABXQAAAAAAXQAAAAACXQAAAAAAXQAAAAADXQAAAAADXQAAAAAAXQAAAAAAXQAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAKAAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAACHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAegAAAAABegAAAAAAegAAAAADfgAAAAAAXQAAAAACXQAAAAACXQAAAAAAHwAAAAACfgAAAAAA version: 6 1,-2: ind: 1,-2 - tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAATwAAAAAAHwAAAAABHwAAAAABTwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAHwAAAAACHwAAAAAAHwAAAAABHwAAAAABHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAHwAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAHwAAAAABHwAAAAABfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAATwAAAAAAHwAAAAABHwAAAAABTwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAHwAAAAAAHwAAAAACHwAAAAAAHwAAAAABHwAAAAABHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAHwAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAHwAAAAABHwAAAAABfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 2,-1: ind: 2,-1 @@ -224,7 +225,7 @@ entities: version: 6 0,-3: ind: 0,-3 - tiles: fgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAABXQAAAAAAXQAAAAACXQAAAAACfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAADXQAAAAABXQAAAAAAXQAAAAACfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAADXQAAAAAAXQAAAAAAXQAAAAACfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAXQAAAAAAXQAAAAACXQAAAAABXQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAXQAAAAACXQAAAAADXQAAAAADXQAAAAABfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAXQAAAAADXQAAAAADXQAAAAABXQAAAAADfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAXQAAAAACXQAAAAACXQAAAAACXQAAAAADfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAXQAAAAABXQAAAAABXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfQAAAAAAXQAAAAAAXQAAAAABXQAAAAADfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAXQAAAAAAXQAAAAABXQAAAAAAXQAAAAADfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAXQAAAAABXQAAAAAAXQAAAAABXQAAAAACXQAAAAADbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAADXQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA + tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAXQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAHwAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAHwAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAHwAAAAAAXQAAAAAAXQAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfQAAAAAAXQAAAAAAXQAAAAABXQAAAAADfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAXQAAAAAAXQAAAAABXQAAAAAAXQAAAAADfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAXQAAAAABXQAAAAAAXQAAAAABXQAAAAACXQAAAAADbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAADXQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA version: 6 1,-3: ind: 1,-3 @@ -232,39 +233,35 @@ entities: version: 6 -1,-3: ind: -1,-3 - tiles: fgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAADHwAAAAABHwAAAAADHwAAAAACHwAAAAAAHwAAAAADHwAAAAABHwAAAAABHwAAAAADHwAAAAACHwAAAAACHwAAAAADfgAAAAAAXQAAAAACfgAAAAAAXQAAAAACXQAAAAACXQAAAAAAXQAAAAADXQAAAAACXQAAAAACXQAAAAAAXQAAAAADXQAAAAADXQAAAAADXQAAAAAAXQAAAAACXQAAAAABfgAAAAAAXQAAAAABfgAAAAAAXQAAAAABXQAAAAADXQAAAAABXQAAAAABXQAAAAABXQAAAAACXQAAAAABXQAAAAADXQAAAAADXQAAAAAAXQAAAAABXQAAAAAAXQAAAAABfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAACXQAAAAACXQAAAAADXQAAAAACXQAAAAACXQAAAAAAXQAAAAADXQAAAAABXQAAAAAAXQAAAAAAXQAAAAACXQAAAAACXQAAAAACXQAAAAADXQAAAAADXQAAAAAAXQAAAAACXQAAAAAAXQAAAAAAXQAAAAADTgAAAAAATgAAAAAATgAAAAACTgAAAAAATgAAAAABXQAAAAADXQAAAAADXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAABXQAAAAAAXQAAAAAAXQAAAAADXQAAAAADXQAAAAACXQAAAAACXQAAAAABXQAAAAACXQAAAAABXQAAAAAAXQAAAAABXQAAAAAAXQAAAAADXQAAAAABXQAAAAAAXQAAAAADfgAAAAAAXQAAAAADXQAAAAABXQAAAAACXQAAAAADXQAAAAAAXQAAAAACXQAAAAADXQAAAAADXQAAAAABXQAAAAACXQAAAAAAXQAAAAABXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAABHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAACHwAAAAACfgAAAAAAHwAAAAACfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAACHwAAAAADHwAAAAACHwAAAAACfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAHwAAAAAAHwAAAAADHwAAAAABfgAAAAAAHwAAAAAAHwAAAAACHwAAAAAAHwAAAAABHwAAAAACfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAADfgAAAAAAHwAAAAADfgAAAAAAHwAAAAABHwAAAAACHwAAAAACfgAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADfgAAAAAAXQAAAAABTQAAAAACXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAADHwAAAAABHwAAAAADHwAAAAABHwAAAAABHwAAAAACHwAAAAACHwAAAAABfgAAAAAAXQAAAAACTQAAAAABXQAAAAADXQAAAAAAHwAAAAAAfgAAAAAAHwAAAAABHwAAAAABHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAADfgAAAAAA + tiles: XQAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAXQAAAAAAXQAAAAAAHwAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAXQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAATwAAAAAAfgAAAAAAHwAAAAAAXQAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAKAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAXQAAAAAAHwAAAAAAfgAAAAAATwAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAATwAAAAAAfgAAAAAAHwAAAAAAXQAAAAAAHwAAAAAAfgAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAADfgAAAAAATwAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAHwAAAAAAfgAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAfgAAAAAAXQAAAAABTQAAAAACXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAfgAAAAAAXQAAAAACTQAAAAABXQAAAAADXQAAAAAAHwAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAADfgAAAAAA version: 6 -2,-3: ind: -2,-3 - tiles: fgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAHwAAAAACHwAAAAAAHwAAAAACfgAAAAAAfgAAAAAAXQAAAAACfgAAAAAAXQAAAAADfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAHwAAAAAAHwAAAAABHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABZgAAAAADZgAAAAACZgAAAAABZgAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAHwAAAAABZgAAAAADZgAAAAABZgAAAAAAZgAAAAABfgAAAAAAXQAAAAAAXQAAAAACXQAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAHwAAAAACZgAAAAADZgAAAAACZgAAAAACZgAAAAACZgAAAAAAXQAAAAADXQAAAAACXQAAAAABXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbQAAAAAAZgAAAAACZgAAAAABZgAAAAABZgAAAAABZgAAAAACZgAAAAABXQAAAAACXQAAAAAAXQAAAAABXQAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAZgAAAAACZgAAAAACZgAAAAACZgAAAAABZgAAAAABfgAAAAAAXQAAAAAAXQAAAAABXQAAAAABXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAHwAAAAAAHwAAAAADHwAAAAABHwAAAAACHwAAAAABfgAAAAAAXQAAAAACXQAAAAAAXQAAAAABXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAACXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAHwAAAAAAHwAAAAACHwAAAAADHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAACHwAAAAABHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAABfgAAAAAAHwAAAAADHwAAAAAAHwAAAAABHwAAAAACHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAegAAAAAAegAAAAADfgAAAAAAegAAAAADegAAAAABfgAAAAAAegAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAADegAAAAABegAAAAAAfgAAAAAAegAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAAB + tiles: fgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAHwAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAHwAAAAAAfQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAXQAAAAACfgAAAAAAXQAAAAADfgAAAAAAHwAAAAAAHwAAAAAAZgAAAAAAHwAAAAAAHwAAAAAAfQAAAAAAHwAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAZgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAXQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAHwAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAHwAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAHwAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAHwAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAHwAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAZAAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAABfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAegAAAAAAegAAAAADfgAAAAAAegAAAAADegAAAAABfgAAAAAAegAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAADegAAAAABegAAAAAAfgAAAAAAegAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAA version: 6 -2,-4: ind: -2,-4 - tiles: XQAAAAADXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAXQAAAAABXQAAAAAAXQAAAAACfgAAAAAAfgAAAAAAUQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAHwAAAAADXQAAAAADXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAXQAAAAADXQAAAAACfgAAAAAAXQAAAAABXQAAAAACXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAXQAAAAABXQAAAAABXQAAAAABXQAAAAAAXQAAAAADXQAAAAADXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAXQAAAAABXQAAAAADXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAA + tiles: AAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAXQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfQAAAAAAHwAAAAAAHwAAAAAAXQAAAAAAHwAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAHwAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAHwAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAHwAAAAAAfQAAAAAAHwAAAAAAXQAAAAAAXQAAAAAAXQAAAAAA version: 6 -1,-4: ind: -1,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA + tiles: fQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAHwAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA version: 6 0,-4: ind: 0,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAHwAAAAADfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAHwAAAAADfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAADHwAAAAACfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAHwAAAAACfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAADHwAAAAACfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAACHwAAAAADfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAABHwAAAAABfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAA version: 6 -2,-5: ind: -2,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAA version: 6 -1,-5: ind: -1,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -2,4: ind: -2,4 - tiles: fgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 - -3,-5: - ind: -3,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA + tiles: fQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 2,0: ind: 2,0 @@ -308,15 +305,15 @@ entities: version: 6 -5,2: ind: -5,2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAA version: 6 -5,3: ind: -5,3 - tiles: AAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -6,2: ind: -6,2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAALwAAAAACfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAALwAAAAACfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAA version: 6 -6,3: ind: -6,3 @@ -324,11 +321,11 @@ entities: version: 6 -4,-2: ind: -4,-2 - tiles: BwAAAAAHCwAAAAAACwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAABwAAAAAACwAAAAAACwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAABwAAAAAACwAAAAAACwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAABwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAABwAAAAAACwAAAAAACwAAAAAABwAAAAAACwAAAAAABwAAAAAABwAAAAAIfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAfgAAAAAACwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAACXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAHwAAAAABHwAAAAADXQAAAAADfgAAAAAAHwAAAAADHwAAAAACHwAAAAABfgAAAAAATgAAAAADTgAAAAAATgAAAAABTgAAAAABTgAAAAABTgAAAAACTgAAAAABXQAAAAABHwAAAAADHwAAAAADXQAAAAACfgAAAAAAHwAAAAAAHwAAAAABHwAAAAAAHwAAAAAAHwAAAAABHwAAAAAAHwAAAAABHwAAAAABHwAAAAABHwAAAAADHwAAAAABHwAAAAACXQAAAAADXQAAAAABHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAADHwAAAAAAfgAAAAAATgAAAAAATgAAAAAATgAAAAACTgAAAAADTgAAAAAATgAAAAACTgAAAAADHwAAAAADHwAAAAACHwAAAAABHwAAAAADfgAAAAAAHwAAAAAAHwAAAAACHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAA + tiles: BwAAAAAHCwAAAAAACwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAABwAAAAAACwAAAAAACwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAABwAAAAAACwAAAAAACwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAABwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAABwAAAAAACwAAAAAACwAAAAAABwAAAAAACwAAAAAABwAAAAAABwAAAAAIfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAfgAAAAAACwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAACXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAHwAAAAABHwAAAAADXQAAAAADfgAAAAAAHwAAAAADHwAAAAACHwAAAAABfgAAAAAATgAAAAADTgAAAAAATgAAAAABTgAAAAABTgAAAAABTgAAAAACTgAAAAABXQAAAAABHwAAAAADHwAAAAADXQAAAAACfgAAAAAAHwAAAAAAHwAAAAABHwAAAAAAHwAAAAAAHwAAAAABHwAAAAAAHwAAAAABHwAAAAABHwAAAAABHwAAAAADHwAAAAABHwAAAAACXQAAAAADXQAAAAABHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAADHwAAAAAAfgAAAAAATgAAAAAATgAAAAAATgAAAAACTgAAAAADTgAAAAAATgAAAAACTgAAAAADHwAAAAADHwAAAAACHwAAAAABHwAAAAADfgAAAAAAHwAAAAAAHwAAAAACHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAA version: 6 -5,-2: ind: -5,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAABwAAAAAKBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAABwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAABwAAAAAKBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAABwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -5,-3: ind: -5,-3 @@ -340,15 +337,15 @@ entities: version: 6 -4,-4: ind: -4,-4 - tiles: bAAAAAAAbAAAAAAAfgAAAAAAHwAAAAADHwAAAAACHwAAAAADHwAAAAACHwAAAAAAHwAAAAACHwAAAAAAfgAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAHwAAAAAAHwAAAAADHwAAAAADHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAAJgAAAAAAJgAAAAAAJgAAAAABJgAAAAABJgAAAAADJgAAAAABJgAAAAABJgAAAAABIgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAEBwAAAAAAagAAAAADagAAAAACagAAAAAAagAAAAACagAAAAACagAAAAABagAAAAACZQAAAAABJwAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAawAAAAAAJwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATAAAAAAATAAAAAABTAAAAAACTAAAAAABTAAAAAACTAAAAAAAfgAAAAAAawAAAAAAJwAAAAABfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAALgAAAAAAfgAAAAAATAAAAAACKgAAAAABTAAAAAACTAAAAAACTAAAAAAATAAAAAACfgAAAAAAawAAAAACJwAAAAADQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAALgAAAAAALgAAAAAAfgAAAAAATAAAAAADKgAAAAACTAAAAAADTAAAAAABTAAAAAAATAAAAAABfgAAAAAAawAAAAAAJwAAAAACfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAALgAAAAAAfgAAAAAAKgAAAAACKgAAAAACKgAAAAADKgAAAAABKgAAAAABKgAAAAABHwAAAAACawAAAAADJwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATAAAAAACTAAAAAABKgAAAAADTAAAAAAATAAAAAAATAAAAAABfgAAAAAAawAAAAAAJwAAAAACfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAALgAAAAAAfgAAAAAATAAAAAADTAAAAAAATAAAAAADTAAAAAAATAAAAAACTAAAAAADfgAAAAAAawAAAAAAJwAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAALgAAAAAALgAAAAAAfgAAAAAATAAAAAACTAAAAAABTAAAAAABTAAAAAAATAAAAAABTAAAAAADfgAAAAAAawAAAAAAJwAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAALgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAawAAAAAAJwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAagAAAAAAagAAAAABagAAAAAAagAAAAABagAAAAADagAAAAAAagAAAAABZQAAAAABJwAAAAABfgAAAAAAfgAAAAAAfgAAAAAACwAAAAAACwAAAAAACwAAAAAAfgAAAAAAJgAAAAABJgAAAAAAJgAAAAAAJgAAAAACJgAAAAABJgAAAAAAJgAAAAACJgAAAAACIgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAGCwAAAAAABwAAAAAAfgAAAAAA + tiles: egAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAABwAAAAAABwAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAABwAAAAAABwAAAAAAAAAAAAAAfgAAAAAAegAAAAAAegAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAHBwAAAAAABwAAAAAAJgAAAAAAJgAAAAAAJgAAAAABJgAAAAABJgAAAAADJgAAAAABJgAAAAABJgAAAAABIgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAABwAAAAAABwAAAAAEBwAAAAAAagAAAAADagAAAAACagAAAAAAagAAAAACagAAAAACagAAAAABagAAAAACZQAAAAABJwAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAawAAAAAAJwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATAAAAAAATAAAAAABTAAAAAACTAAAAAABTAAAAAACTAAAAAAAfgAAAAAAawAAAAAAJwAAAAABfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAALgAAAAAAfgAAAAAATAAAAAACKgAAAAABTAAAAAACTAAAAAACTAAAAAAATAAAAAACfgAAAAAAawAAAAACJwAAAAADQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAALgAAAAAALgAAAAAAfgAAAAAATAAAAAADKgAAAAACTAAAAAADTAAAAAABTAAAAAAATAAAAAABfgAAAAAAawAAAAAAJwAAAAACfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAALgAAAAAAfgAAAAAAKgAAAAACKgAAAAACKgAAAAADKgAAAAABKgAAAAABKgAAAAABHwAAAAACawAAAAADJwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATAAAAAACTAAAAAABKgAAAAADTAAAAAAATAAAAAAATAAAAAABfgAAAAAAawAAAAAAJwAAAAACfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAALgAAAAAAfgAAAAAATAAAAAADTAAAAAAATAAAAAADTAAAAAAATAAAAAACTAAAAAADfgAAAAAAawAAAAAAJwAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAALgAAAAAALgAAAAAAfgAAAAAATAAAAAACTAAAAAABTAAAAAABTAAAAAAATAAAAAABTAAAAAADfgAAAAAAawAAAAAAJwAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAALgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAawAAAAAAJwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAagAAAAAAagAAAAABagAAAAAAagAAAAABagAAAAADagAAAAAAagAAAAABZQAAAAABJwAAAAABfgAAAAAAfgAAAAAAfgAAAAAACwAAAAAACwAAAAAACwAAAAAAfgAAAAAAJgAAAAABJgAAAAAAJgAAAAAAJgAAAAACJgAAAAABJgAAAAAAJgAAAAACJgAAAAACIgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAGCwAAAAAABwAAAAAAfgAAAAAA version: 6 -3,-3: ind: -3,-3 - tiles: fQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAADHwAAAAADfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAHwAAAAABHwAAAAAAHwAAAAABfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAHwAAAAAAHwAAAAADHwAAAAACfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAHwAAAAACHwAAAAAAHwAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAHwAAAAAAHwAAAAADHwAAAAAD + tiles: fQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAADHwAAAAADfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAHwAAAAABHwAAAAAAHwAAAAABfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAHwAAAAAAHwAAAAADHwAAAAACfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAHwAAAAACHwAAAAAAHwAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAHwAAAAAAHwAAAAADHwAAAAAD version: 6 -5,-4: ind: -5,-4 - tiles: fgAAAAAAHwAAAAADHwAAAAABHwAAAAAAHwAAAAABHwAAAAADHwAAAAABHwAAAAAAHwAAAAABfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAABHwAAAAACHwAAAAACHwAAAAABHwAAAAADHwAAAAADHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAACHwAAAAADHwAAAAAAHwAAAAADHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAADHwAAAAAAHwAAAAACHwAAAAACHwAAAAADHwAAAAADHwAAAAAAHwAAAAACHwAAAAACHwAAAAAAfgAAAAAAIgAAAAADJgAAAAACJgAAAAABJgAAAAABJgAAAAAAHwAAAAABfgAAAAAAHwAAAAACHwAAAAAAHwAAAAADHwAAAAABHwAAAAACHwAAAAABfgAAAAAAHwAAAAADfgAAAAAAJwAAAAADZQAAAAABagAAAAAAagAAAAADagAAAAACHwAAAAACfgAAAAAAHwAAAAADHwAAAAABHwAAAAADHwAAAAAAHwAAAAABHwAAAAABfgAAAAAAHwAAAAACHwAAAAACJwAAAAACawAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJwAAAAACawAAAAABfgAAAAAATAAAAAACTAAAAAACPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAfgAAAAAAegAAAAABegAAAAAAegAAAAADegAAAAADfgAAAAAAJwAAAAADawAAAAACfgAAAAAATAAAAAACTAAAAAAAPgAAAAAAXQAAAAAAXQAAAAADXQAAAAACXQAAAAAAfgAAAAAAegAAAAABegAAAAADegAAAAAAegAAAAADfgAAAAAAJwAAAAAAawAAAAAAfgAAAAAATAAAAAABTAAAAAACfgAAAAAAXQAAAAACXQAAAAACXQAAAAADXQAAAAADHwAAAAAAegAAAAADegAAAAADegAAAAAAegAAAAADHwAAAAABJwAAAAAAawAAAAADHwAAAAACKgAAAAAAKgAAAAAAPAAAAAAAXQAAAAACXQAAAAACXQAAAAACXQAAAAACfgAAAAAAegAAAAADegAAAAACegAAAAAAegAAAAADfgAAAAAAJwAAAAACawAAAAAAfgAAAAAATAAAAAADTAAAAAACPAAAAAAAXQAAAAABXQAAAAACXQAAAAABXQAAAAABfgAAAAAAegAAAAABegAAAAACegAAAAAAegAAAAACfgAAAAAAJwAAAAABawAAAAACfgAAAAAATAAAAAABTAAAAAABPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAfgAAAAAAegAAAAADegAAAAAAegAAAAACegAAAAABfgAAAAAAJwAAAAABawAAAAAAfgAAAAAATAAAAAAATAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJwAAAAABawAAAAABfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAADfgAAAAAAfgAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAJwAAAAACZQAAAAAAagAAAAABagAAAAABagAAAAAAHwAAAAABHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAIgAAAAACJgAAAAABJgAAAAADJgAAAAADJgAAAAAC + tiles: fgAAAAAAHwAAAAADHwAAAAABHwAAAAAAHwAAAAABHwAAAAADHwAAAAABHwAAAAAAHwAAAAABfgAAAAAAegAAAAAAegAAAAAAfgAAAAAAegAAAAAAegAAAAAAegAAAAAAfgAAAAAAHwAAAAABHwAAAAABHwAAAAACHwAAAAACHwAAAAABHwAAAAADHwAAAAADHwAAAAAAfgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAACHwAAAAADHwAAAAAAHwAAAAADHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAAAHwAAAAACHwAAAAACHwAAAAADHwAAAAADHwAAAAAAHwAAAAACHwAAAAACJwAAAAAAJwAAAAAAIgAAAAADJgAAAAACJgAAAAABJgAAAAABJgAAAAAAHwAAAAABfgAAAAAAHwAAAAACHwAAAAAAHwAAAAADHwAAAAABHwAAAAACHwAAAAABHwAAAAAAJwAAAAAAJwAAAAAAJwAAAAADZQAAAAABagAAAAAAagAAAAADagAAAAACHwAAAAACfgAAAAAAHwAAAAADHwAAAAABHwAAAAADHwAAAAAAHwAAAAABHwAAAAABfgAAAAAAJwAAAAAAJwAAAAAAJwAAAAACawAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJwAAAAACawAAAAABfgAAAAAATAAAAAACTAAAAAACPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAfgAAAAAAegAAAAABegAAAAAAegAAAAADegAAAAADfgAAAAAAJwAAAAADawAAAAACfgAAAAAATAAAAAACTAAAAAAAPgAAAAAAXQAAAAAAXQAAAAADXQAAAAACXQAAAAAAfgAAAAAAegAAAAABegAAAAADegAAAAAAegAAAAADfgAAAAAAJwAAAAAAawAAAAAAfgAAAAAATAAAAAABTAAAAAACfgAAAAAAXQAAAAACXQAAAAACXQAAAAADXQAAAAADHwAAAAAAegAAAAADegAAAAADegAAAAAAegAAAAADHwAAAAABJwAAAAAAawAAAAADHwAAAAACKgAAAAAAKgAAAAAAPAAAAAAAXQAAAAACXQAAAAACXQAAAAACXQAAAAACfgAAAAAAegAAAAADegAAAAACegAAAAAAegAAAAADfgAAAAAAJwAAAAACawAAAAAAfgAAAAAATAAAAAADTAAAAAACPAAAAAAAXQAAAAABXQAAAAACXQAAAAABXQAAAAABfgAAAAAAegAAAAABegAAAAACegAAAAAAegAAAAACfgAAAAAAJwAAAAABawAAAAACfgAAAAAATAAAAAABTAAAAAABPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAfgAAAAAAegAAAAADegAAAAAAegAAAAACegAAAAABfgAAAAAAJwAAAAABawAAAAAAfgAAAAAATAAAAAAATAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJwAAAAABawAAAAABfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAADfgAAAAAAfgAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAJwAAAAACZQAAAAAAagAAAAABagAAAAABagAAAAAAHwAAAAABHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAIgAAAAACJgAAAAABJgAAAAADJgAAAAADJgAAAAAC version: 6 -6,-4: ind: -6,-4 @@ -360,11 +357,11 @@ entities: version: 6 -5,-5: ind: -5,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAMBwAAAAALBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAFfgAAAAAAHwAAAAACHwAAAAABHwAAAAABHwAAAAABHwAAAAABHwAAAAADfgAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAADHwAAAAACHwAAAAADHwAAAAADHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAFfgAAAAAAHwAAAAACHwAAAAABHwAAAAABHwAAAAABHwAAAAABHwAAAAADfgAAAAAABwAAAAAABwAAAAAAfgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAADHwAAAAACHwAAAAADHwAAAAADHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAAAegAAAAAAegAAAAAA version: 6 -4,-5: ind: -4,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAADBwAAAAAAfgAAAAAAHwAAAAAAHwAAAAABHwAAAAACHwAAAAABHwAAAAABHwAAAAABHwAAAAADfgAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAADHwAAAAADHwAAAAABHwAAAAACHwAAAAACHwAAAAACfgAAAAAABwAAAAAABwAAAAAFBwAAAAAAAAAAAAAAAAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAHwAAAAADHwAAAAADHwAAAAABHwAAAAABHwAAAAACHwAAAAADHwAAAAACfgAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAHwAAAAABHwAAAAABHwAAAAACHwAAAAACHwAAAAABHwAAAAACHwAAAAADfgAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAADBwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAAAegAAAAAAegAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAABwAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAABwAAAAAABwAAAAAAAAAAAAAA version: 6 -6,-5: ind: -6,-5 @@ -372,7 +369,7 @@ entities: version: 6 -3,-4: ind: -3,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAHwAAAAAAEQAAAAAAHwAAAAABEQAAAAAAEQAAAAAAHwAAAAAAEQAAAAAAHwAAAAADfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAHwAAAAAAEQAAAAAAHwAAAAAAEQAAAAAAEQAAAAAAHwAAAAACEQAAAAAAHwAAAAAAEQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAHwAAAAABEQAAAAAAHwAAAAADHwAAAAABHwAAAAAAHwAAAAACEQAAAAAAHwAAAAABfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAHwAAAAABHwAAAAACHwAAAAACEQAAAAAAEQAAAAAAHwAAAAADHwAAAAAAHwAAAAABHwAAAAACHwAAAAACfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAHwAAAAACEQAAAAAAHwAAAAAAHwAAAAACHwAAAAAAHwAAAAACEQAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAHwAAAAADEQAAAAAAHwAAAAABEQAAAAAAEQAAAAAAHwAAAAAAEQAAAAAAHwAAAAADEQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAHwAAAAAAEQAAAAAAHwAAAAADEQAAAAAAEQAAAAAAHwAAAAABEQAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAA version: 6 0,4: ind: 0,4 @@ -452,51 +449,44 @@ entities: color: '#FFFFFFFF' id: Arrows decals: - 657: -8,-44 - 1390: 23,23 - 1391: 21,23 - 2506: -35,40 - 2507: -37,40 + 1258: 23,23 + 1259: 21,23 + 2210: -35,40 + 2211: -37,40 - node: angle: -1.5707963267948966 rad color: '#FFFFFFFF' id: Arrows decals: - 2208: 5,-30 - 2737: -3,-55 - 2771: 20,-24 - 2772: 20,-26 - 2773: 20,-28 - 2774: 20,-30 - 2775: 20,-32 - 2776: 20,-34 - 2777: 20,-36 + 2065: 5,-30 + 2370: 20,-24 + 2371: 20,-26 + 2372: 20,-28 + 2373: 20,-30 + 2374: 20,-32 + 2375: 20,-34 + 2376: 20,-36 - node: color: '#FFFFFFFF' id: Arrows decals: - 1388: 23,25 - 1389: 21,25 - 1873: 31,21 - 3064: -31,-10 + 1256: 23,25 + 1257: 21,25 + 1730: 31,21 + 2648: -31,-10 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' id: Arrows decals: - 1236: 33,-3 - 2764: 21,-35 - 2765: 21,-33 - 2766: 21,-31 - 2767: 21,-29 - 2768: 21,-27 - 2769: 21,-25 - 2770: 21,-23 - - node: - color: '#FFFFFFFF' - id: ArrowsGreyscale - decals: - 2789: -19,-67 + 1136: 33,-3 + 2363: 21,-35 + 2364: 21,-33 + 2365: 21,-31 + 2366: 21,-29 + 2367: 21,-27 + 2368: 21,-25 + 2369: 21,-23 - node: color: '#FFFFFFFF' id: Bot @@ -520,1187 +510,1035 @@ entities: 482: -8,-9 552: -12,-1 587: 6,-1 - 658: -11,-44 - 659: -12,-44 - 660: -13,-44 - 661: -14,-44 - 740: 19,0 - 751: 12,14 - 807: -30,37 - 1031: 5,43 - 1032: 3,41 - 1033: 7,41 - 1141: -41,59 - 1143: 14,-2 - 1144: 15,-2 - 1192: 23,-6 - 1193: 23,-5 - 1194: 23,-4 - 1195: 25,-6 - 1196: 25,-5 - 1197: 25,-4 - 1198: 27,-6 - 1199: 27,-5 - 1200: 27,-4 - 1201: 29,-6 - 1202: 29,-5 - 1203: 29,-4 - 1241: 21,-20 - 1242: 18,-20 - 1243: 18,-18 - 1244: 18,-17 - 1245: 19,-17 - 1246: 19,-18 - 1247: 20,-18 - 1248: 20,-17 - 1249: 20,-15 - 1250: 20,-14 - 1251: 21,-14 - 1252: 21,-15 - 1253: 22,-15 - 1254: 22,-14 - 1303: 36,7 - 1304: 35,7 - 1311: 22,20 - 1312: 22,21 - 1313: 23,21 - 1314: 23,20 - 1319: 27,9 - 1320: 27,10 - 1420: 12,12 - 1421: 20,23 - 1588: -1,29 - 1789: 5,-26 - 1790: 5,-25 - 1791: 7,-30 - 1864: 33,17 - 1865: 32,17 - 1866: 31,17 - 2185: -40,54 - 2237: 3,-41 - 2241: -4,-38 - 2242: -2,-38 - 2258: -22,-45 - 2297: -26,-47 - 2298: -26,-48 - 2400: 1,-7 - 2401: -1,-7 - 2521: -13,38 - 2522: -12,31 - 2533: 12,-30 - 2534: 12,-29 - 2535: 12,-28 - 2536: 11,-23 - 2537: 10,-23 - 2547: 32,21 - 2548: 32,22 - 2549: 32,23 - 2565: 41,12 - 2566: 41,13 - 2567: 41,14 - 2629: 32,39 - 2630: 24,33 - 2761: -15,-49 - 2762: -15,-48 - 2763: -15,-47 - 2790: 15,-22 - 2802: 7,35 - 2835: -4,-29 - 2836: -33,10 - 2837: -26,13 - 2838: -14,5 - 2839: 6,6 - 2840: -6,-9 - 2861: -43,19 - 2862: -41,19 - 3063: -33,-12 - 3082: -28,-14 - 3083: -23,-15 - 3084: -19,-23 - 3157: -20,-5 - - node: - angle: 3.141592653589793 rad - color: '#FFFFFFFF' - id: Bot - decals: - 634: 14,-19 - - node: - color: '#52B4E996' - id: BotGreyscale - decals: - 2733: -4,-52 - 2734: -5,-52 - - node: - color: '#DE3A3A96' - id: BotGreyscale - decals: - 2735: -11,-52 - 2736: -12,-52 + 680: 19,0 + 742: -30,37 + 951: 5,43 + 952: 3,41 + 953: 7,41 + 1041: -41,59 + 1043: 14,-2 + 1044: 15,-2 + 1092: 23,-6 + 1093: 23,-5 + 1094: 23,-4 + 1095: 25,-6 + 1096: 25,-5 + 1097: 25,-4 + 1098: 27,-6 + 1099: 27,-5 + 1100: 27,-4 + 1101: 29,-6 + 1102: 29,-5 + 1103: 29,-4 + 1141: 21,-20 + 1142: 18,-20 + 1143: 18,-18 + 1144: 18,-17 + 1145: 19,-17 + 1146: 19,-18 + 1147: 20,-18 + 1148: 20,-17 + 1149: 20,-15 + 1150: 20,-14 + 1151: 21,-14 + 1152: 21,-15 + 1153: 22,-15 + 1154: 22,-14 + 1203: 36,7 + 1204: 35,7 + 1211: 22,20 + 1212: 22,21 + 1213: 23,21 + 1214: 23,20 + 1219: 27,9 + 1220: 27,10 + 1278: 20,23 + 1445: -1,29 + 1646: 5,-26 + 1647: 5,-25 + 1648: 7,-30 + 1721: 33,17 + 1722: 32,17 + 1723: 31,17 + 2042: -40,54 + 2104: 1,-7 + 2105: -1,-7 + 2225: -13,38 + 2226: -12,31 + 2236: 12,-30 + 2237: 12,-29 + 2238: 12,-28 + 2239: 11,-23 + 2240: 10,-23 + 2246: 32,21 + 2247: 32,22 + 2248: 32,23 + 2261: 41,12 + 2262: 41,13 + 2263: 41,14 + 2325: 32,39 + 2326: 24,33 + 2380: 15,-22 + 2392: 7,35 + 2425: -4,-29 + 2426: -33,10 + 2427: -26,13 + 2428: -14,5 + 2429: 6,6 + 2430: -6,-9 + 2445: -43,19 + 2446: -41,19 + 2647: -33,-12 + 2666: -28,-14 + 2667: -23,-15 + 2668: -19,-23 + 2741: -20,-5 + 2840: 18,16 + 2841: 20,16 + 2853: 12,14 + 2856: 14,-18 + 2898: -6,-48 + 2899: -6,-49 + 2900: -6,-50 + 2901: -6,-51 + 2915: -2,-44 + 2916: -3,-44 + 2917: -1,-44 + 2918: 1,-44 + 2919: 2,-44 + 2920: 3,-44 + 2921: 4,-44 - node: color: '#FFFFFFFF' id: BotGreyscale decals: - 2429: -22,-1 - 2785: -18,-69 - 2786: -18,-68 - 2787: -18,-67 + 2133: -22,-1 - node: color: '#FFFFFFFF' id: BotLeft decals: - 2183: -39,56 - 2184: -41,56 - 2238: 2,-38 - 2239: 0,-38 - 2259: -26,-45 - 2260: -26,-44 - 2261: -26,-43 - 2447: -57,-22 - 2503: -42,42 - 2504: -46,42 - 2505: -49,42 - 2550: 33,20 - 2551: 33,19 - 2568: 40,14 - 2758: -15,-52 - 2759: -15,-51 - 2760: -15,-50 - 2863: -44,19 - 2864: -42,19 - 2865: -40,19 + 2040: -39,56 + 2041: -41,56 + 2151: -57,-22 + 2207: -42,42 + 2208: -46,42 + 2209: -49,42 + 2249: 33,20 + 2250: 33,19 + 2264: 40,14 + 2447: -44,19 + 2448: -42,19 + 2449: -40,19 - node: color: '#FFFFFFFF' id: BotRight decals: - 2240: 3,-40 - 2262: -23,-40 - 2263: -22,-40 - 2500: -45,51 - 2501: -45,52 - 2502: -45,53 + 2204: -45,51 + 2205: -45,52 + 2206: -45,53 - node: color: '#FFFFFFFF' id: BotRightGreyscale decals: - 2729: -24,-5 - 2788: -19,-68 + 2357: -24,-5 - node: color: '#FFFFFFFF' id: Box decals: - 2289: -12,-38 - 2290: -14,-38 - 2569: 39,9 - 2842: -5,-50 - 2843: -12,-56 - 2844: -10,-56 - 2845: -6,-56 - 2846: -4,-56 - - node: - color: '#FFFFFFFF' - id: BoxGreyscale - decals: - 2782: -19,-70 - 2783: -18,-70 - 2784: -17,-70 + 2265: 39,9 + 2896: -14,-38 + 2897: -12,-38 - node: color: '#FFFFFFFF' id: BrickTileDarkBox decals: - 1845: -6,40 - 1846: -14,40 - 2113: -46,-13 - 2114: -46,-15 - 2115: -46,-17 - 2116: -46,-19 - 2117: -46,-21 + 1702: -6,40 + 1703: -14,40 + 1970: -46,-13 + 1971: -46,-15 + 1972: -46,-17 + 1973: -46,-19 + 1974: -46,-21 - node: color: '#FFFFFFFF' id: BrickTileDarkCornerNe decals: - 1530: -7,36 - 1697: -57,-50 - 1807: -50,24 + 1387: -7,36 + 1554: -57,-50 + 1664: -50,24 - node: color: '#FFFFFFFF' id: BrickTileDarkCornerNw decals: - 1529: -13,36 - 1714: -68,-50 + 1386: -13,36 + 1571: -68,-50 - node: color: '#FFFFFFFF' id: BrickTileDarkCornerSe decals: - 1525: -7,32 - 1705: -57,-60 - 1822: -50,12 + 1382: -7,32 + 1562: -57,-60 + 1679: -50,12 - node: color: '#FFFFFFFF' id: BrickTileDarkCornerSw decals: - 1524: -13,32 - 1715: -68,-60 + 1381: -13,32 + 1572: -68,-60 - node: color: '#FFFFFFFF' id: BrickTileDarkInnerNe decals: - 1620: -12,40 - 1731: -66,-50 + 1477: -12,40 + 1588: -66,-50 - node: color: '#FFFFFFFF' id: BrickTileDarkInnerNw decals: - 1622: -8,40 - 1729: -64,-50 - 1730: -59,-50 + 1479: -8,40 + 1586: -64,-50 + 1587: -59,-50 - node: color: '#FFFFFFFF' id: BrickTileDarkInnerSe decals: - 1619: -12,42 - 1706: -57,-59 + 1476: -12,42 + 1563: -57,-59 - node: color: '#FFFFFFFF' id: BrickTileDarkInnerSw decals: - 1621: -8,42 - 1699: -59,-60 + 1478: -8,42 + 1556: -59,-60 - node: color: '#FFFFFFFF' id: BrickTileDarkLineE decals: - 1443: -17,37 - 1526: -7,33 - 1527: -7,34 - 1528: -7,35 - 1618: -12,41 - 1648: -17,39 - 1649: -17,40 - 1707: -57,-58 - 1799: -50,16 - 1800: -50,17 - 1801: -50,18 - 1802: -50,19 - 1803: -50,20 - 1804: -50,21 - 1805: -50,22 - 1806: -50,23 + 1300: -17,37 + 1383: -7,33 + 1384: -7,34 + 1385: -7,35 + 1475: -12,41 + 1505: -17,39 + 1506: -17,40 + 1564: -57,-58 + 1656: -50,16 + 1657: -50,17 + 1658: -50,18 + 1659: -50,19 + 1660: -50,20 + 1661: -50,21 + 1662: -50,22 + 1663: -50,23 - node: color: '#FFFFFFFF' id: BrickTileDarkLineN decals: - 1531: -8,36 - 1532: -9,36 - 1533: -10,36 - 1534: -11,36 - 1535: -12,36 - 1614: -9,40 - 1615: -10,40 - 1616: -11,40 - 1725: -60,-50 - 1726: -61,-50 - 1727: -65,-50 - 1728: -62,-50 - 1808: -52,24 - 1809: -51,24 - 1810: -53,24 - 1811: -54,24 - 1812: -55,24 - 1813: -57,24 - 1814: -56,24 - 1815: -58,24 + 1388: -8,36 + 1389: -9,36 + 1390: -10,36 + 1391: -11,36 + 1392: -12,36 + 1471: -9,40 + 1472: -10,40 + 1473: -11,40 + 1582: -60,-50 + 1583: -61,-50 + 1584: -65,-50 + 1585: -62,-50 + 1665: -52,24 + 1666: -51,24 + 1667: -53,24 + 1668: -54,24 + 1669: -55,24 + 1670: -57,24 + 1671: -56,24 + 1672: -58,24 - node: color: '#FFFFFFFF' id: BrickTileDarkLineS decals: - 1466: -23,38 - 1513: -7,32 - 1514: -8,32 - 1515: -9,32 - 1516: -10,32 - 1517: -11,32 - 1518: -12,32 - 1519: -13,32 - 1611: -10,42 - 1612: -9,42 - 1613: -11,42 - 1698: -60,-60 - 1700: -64,-60 - 1701: -66,-60 - 1816: -58,12 - 1817: -57,12 - 1818: -56,12 - 1819: -55,12 - 1820: -54,12 - 1821: -51,12 + 1323: -23,38 + 1370: -7,32 + 1371: -8,32 + 1372: -9,32 + 1373: -10,32 + 1374: -11,32 + 1375: -12,32 + 1376: -13,32 + 1468: -10,42 + 1469: -9,42 + 1470: -11,42 + 1555: -60,-60 + 1557: -64,-60 + 1558: -66,-60 + 1673: -58,12 + 1674: -57,12 + 1675: -56,12 + 1676: -55,12 + 1677: -54,12 + 1678: -51,12 - node: color: '#FFFFFFFF' id: BrickTileDarkLineW decals: - 1520: -13,32 - 1521: -13,33 - 1522: -13,34 - 1523: -13,35 - 1617: -8,41 + 1377: -13,32 + 1378: -13,33 + 1379: -13,34 + 1380: -13,35 + 1474: -8,41 - node: color: '#9FED5896' id: BrickTileSteelBox decals: - 2397: 2,-9 - 2398: 2,-10 - 2399: 2,-11 + 2101: 2,-9 + 2102: 2,-10 + 2103: 2,-11 - node: color: '#9FED5896' id: BrickTileSteelCornerNe decals: - 2388: 1,-7 - 2452: -31,10 - 2463: -31,13 + 2092: 1,-7 + 2156: -31,10 + 2167: -31,13 - node: color: '#D381C996' id: BrickTileSteelCornerNe decals: - 2555: 33,9 + 2251: 33,9 - node: color: '#FFFFFFFF' id: BrickTileSteelCornerNe decals: - 2449: -62,-24 - 2643: -25,11 + 2153: -62,-24 - node: color: '#9FED5896' id: BrickTileSteelCornerNw decals: - 2389: -1,-7 - 2453: -33,10 - 2464: -33,13 + 2093: -1,-7 + 2157: -33,10 + 2168: -33,13 - node: color: '#D381C996' id: BrickTileSteelCornerNw decals: - 2556: 31,9 + 2252: 31,9 - node: color: '#FFFFFFFF' id: BrickTileSteelCornerNw decals: - 2450: -63,-24 - 2642: -27,11 + 2154: -63,-24 - node: color: '#9FED5896' id: BrickTileSteelCornerSe decals: - 2455: -31,6 - 2466: -31,12 + 2159: -31,6 + 2170: -31,12 - node: color: '#D381C996' id: BrickTileSteelCornerSe decals: - 2558: 33,7 + 2254: 33,7 - node: color: '#FFFFFFFF' id: BrickTileSteelCornerSe decals: - 2451: -62,-25 - 2644: -25,7 + 2155: -62,-25 - node: color: '#9FED5896' id: BrickTileSteelCornerSw decals: - 2392: -1,-10 - 2454: -33,6 - 2465: -33,12 + 2096: -1,-10 + 2158: -33,6 + 2169: -33,12 - node: color: '#D381C996' id: BrickTileSteelCornerSw decals: - 2557: 31,7 + 2253: 31,7 - node: color: '#FFFFFFFF' id: BrickTileSteelCornerSw decals: - 2448: -63,-25 - 2641: -27,7 + 2152: -63,-25 - node: color: '#9FED5896' id: BrickTileSteelEndS decals: - 2396: 1,-12 + 2100: 1,-12 - node: color: '#FFFFFFFF' id: BrickTileSteelInnerNe decals: - 1723: -69,-52 - 1724: -69,-58 + 1580: -69,-52 + 1581: -69,-58 - node: color: '#FFFFFFFF' id: BrickTileSteelInnerNw decals: - 1704: -61,-61 - 1711: -56,-56 + 1561: -61,-61 + 1568: -56,-56 - node: color: '#FFFFFFFF' id: BrickTileSteelInnerSe decals: - 1716: -68,-60 - 1721: -69,-53 - 1722: -69,-51 + 1573: -68,-60 + 1578: -69,-53 + 1579: -69,-51 - node: color: '#9FED5896' id: BrickTileSteelInnerSw decals: - 2394: 1,-10 + 2098: 1,-10 - node: color: '#FFFFFFFF' id: BrickTileSteelInnerSw decals: - 1712: -56,-55 - 1713: -56,-52 + 1569: -56,-55 + 1570: -56,-52 - node: color: '#9FED5896' id: BrickTileSteelLineE decals: - 2384: 1,-11 - 2385: 1,-10 - 2386: 1,-9 - 2387: 1,-8 - 2457: -31,7 - 2458: -31,8 - 2459: -31,9 + 2088: 1,-11 + 2089: 1,-10 + 2090: 1,-9 + 2091: 1,-8 + 2161: -31,7 + 2162: -31,8 + 2163: -31,9 - node: color: '#FFFFFFFF' id: BrickTileSteelLineE decals: - 1717: -69,-57 - 1718: -69,-56 - 1720: -69,-54 - 2649: -25,8 - 2650: -25,9 - 2651: -25,10 + 1574: -69,-57 + 1575: -69,-56 + 1577: -69,-54 - node: color: '#334E6DC8' id: BrickTileSteelLineN decals: - 1444: -18,37 - 1445: -19,37 - 1446: -20,37 - 1447: -21,37 - 1448: -22,37 - 1449: -24,37 - 1450: -25,37 - 1451: -26,37 - 1452: -28,37 + 1301: -18,37 + 1302: -19,37 + 1303: -20,37 + 1304: -21,37 + 1305: -22,37 + 1306: -24,37 + 1307: -25,37 + 1308: -26,37 + 1309: -28,37 - node: color: '#9FED5896' id: BrickTileSteelLineN decals: - 2467: -32,13 + 2171: -32,13 - node: color: '#FFFFFFFF' id: BrickTileSteelLineN decals: - 1668: 26,32 - 1703: -62,-61 - 2652: -26,11 + 1525: 26,32 + 1560: -62,-61 - node: color: '#9FED5896' id: BrickTileSteelLineS decals: - 2393: 0,-10 - 2456: -32,6 + 2097: 0,-10 + 2160: -32,6 - node: color: '#FFFFFFFF' id: BrickTileSteelLineS decals: - 1666: -27,24 - 1747: 8,-18 - 2648: -26,7 + 1523: -27,24 + 1604: 8,-18 - node: color: '#9FED5896' id: BrickTileSteelLineW decals: - 2390: -1,-8 - 2391: -1,-9 - 2395: 1,-11 - 2460: -33,9 + 2094: -1,-8 + 2095: -1,-9 + 2099: 1,-11 + 2164: -33,9 - node: color: '#D381C996' id: BrickTileSteelLineW decals: - 2559: 31,8 + 2255: 31,8 - node: color: '#FFFFFFFF' id: BrickTileSteelLineW decals: - 1667: 25,26 - 1710: -56,-53 - 2645: -27,8 - 2646: -27,9 - 2647: -27,10 + 1524: 25,26 + 1567: -56,-53 - node: color: '#334E6DC8' id: BrickTileWhiteCornerNe decals: - 2631: -19,40 + 2327: -19,40 - node: color: '#52B4E996' id: BrickTileWhiteCornerNe decals: - 2952: -21,-15 - 2962: -13,-15 - 3018: -13,-19 - 3046: -29,-16 - 3091: -12,-9 + 2536: -21,-15 + 2546: -13,-15 + 2602: -13,-19 + 2630: -29,-16 + 2675: -12,-9 - node: color: '#DE3A3A96' id: BrickTileWhiteCornerNe decals: - 2191: -2,-33 + 2048: -2,-33 - node: color: '#EFB34196' id: BrickTileWhiteCornerNe decals: - 2247: -22,-41 - 2268: -16,-39 - 2300: -6,-28 - 2849: -40,19 + 2433: -40,19 + 2977: -25,-45 + 2978: -26,-43 + 2979: -20,-45 + 2987: -14,-46 + 2989: -20,-49 + 2996: -21,-57 + 3021: -1,-42 - node: color: '#FFFFFFFF' id: BrickTileWhiteCornerNe decals: - 2951: -21,-15 - 2997: -13,-19 + 2535: -21,-15 + 2581: -13,-19 - node: color: '#334E6DC8' id: BrickTileWhiteCornerNw decals: - 2632: -21,40 + 2328: -21,40 - node: color: '#52B4E996' id: BrickTileWhiteCornerNw decals: - 2953: -23,-15 - 2961: -15,-15 - 3019: -19,-19 - 3047: -31,-16 - 3090: -16,-9 + 2537: -23,-15 + 2545: -15,-15 + 2603: -19,-19 + 2631: -31,-16 + 2674: -16,-9 - node: color: '#DE3A3A96' id: BrickTileWhiteCornerNw decals: - 2192: -4,-33 + 2049: -4,-33 - node: color: '#EFB34196' id: BrickTileWhiteCornerNw decals: - 2246: -25,-41 - 2267: -20,-39 - 2301: -14,-28 - 2523: 5,-24 - 2528: 9,-23 - 2853: -44,19 + 2227: 5,-24 + 2232: 9,-23 + 2437: -44,19 + 2976: -23,-45 + 2985: -16,-45 + 2986: -11,-46 + 2991: -16,-49 + 2999: -15,-57 + 3010: -10,-42 + 3019: 3,-40 + 3020: 1,-42 - node: color: '#FFFFFFFF' id: BrickTileWhiteCornerNw decals: - 2950: -23,-15 - 2990: -19,-19 + 2534: -23,-15 + 2574: -19,-19 - node: color: '#52B4E996' id: BrickTileWhiteCornerSe decals: - 2949: -21,-24 - 2964: -13,-17 - 3016: -13,-23 - 3055: -29,-24 - 3093: -12,-13 + 2533: -21,-24 + 2548: -13,-17 + 2600: -13,-23 + 2639: -29,-24 + 2677: -12,-13 - node: color: '#DE3A3A96' id: BrickTileWhiteCornerSe decals: - 2193: -2,-36 + 2050: -2,-36 - node: color: '#EFB34196' id: BrickTileWhiteCornerSe decals: - 1785: 7,-30 - 2231: 3,-45 - 2249: -22,-45 - 2269: -16,-45 - 2303: -6,-32 - 2856: -40,17 + 1642: 7,-30 + 2440: -40,17 + 2974: -26,-41 + 2990: -20,-47 + 2992: -19,-51 + 2998: -21,-55 + 3013: -9,-39 + 3014: -5,-39 + 3015: -4,-38 + 3017: 0,-38 - node: color: '#FFFFFFFF' id: BrickTileWhiteCornerSe decals: - 2946: -21,-24 - 2996: -13,-23 + 2530: -21,-24 + 2580: -13,-23 - node: color: '#52B4E996' id: BrickTileWhiteCornerSw decals: - 2476: -37,0 - 2948: -23,-24 - 2965: -15,-17 - 3017: -19,-23 - 3054: -31,-24 - 3092: -16,-13 + 2180: -37,0 + 2532: -23,-24 + 2549: -15,-17 + 2601: -19,-23 + 2638: -31,-24 + 2676: -16,-13 - node: color: '#DE3A3A96' id: BrickTileWhiteCornerSw decals: - 2194: -4,-36 + 2051: -4,-36 - node: color: '#EFB34196' id: BrickTileWhiteCornerSw decals: - 1784: 5,-30 - 2232: 0,-45 - 2248: -25,-45 - 2272: -20,-45 - 2302: -14,-32 - 2854: -44,17 + 1641: 5,-30 + 2438: -44,17 + 2988: -16,-47 + 2993: -17,-51 + 2997: -15,-55 + 3011: -11,-39 + 3012: -7,-39 + 3016: -2,-38 + 3018: 3,-38 - node: color: '#FFFFFFFF' id: BrickTileWhiteCornerSw decals: - 2947: -23,-24 - 2991: -19,-23 + 2531: -23,-24 + 2575: -19,-23 + - node: + color: '#EFB34196' + id: BrickTileWhiteEndS + decals: + 2984: -20,-40 - node: color: '#334E6DC8' id: BrickTileWhiteInnerNe decals: - 1608: -3,32 - 1632: -12,40 + 1465: -3,32 + 1489: -12,40 - node: color: '#52B4E996' id: BrickTileWhiteInnerNe decals: - 2939: -21,-21 + 2523: -21,-21 - node: color: '#D381C996' id: BrickTileWhiteInnerNe decals: - 2663: 12,20 + 2347: 12,20 - node: color: '#EFB34196' id: BrickTileWhiteInnerNe decals: - 2379: -11,-42 + 2980: -26,-45 - node: color: '#FFFFFFFF' id: BrickTileWhiteInnerNe decals: - 2911: -21,-21 + 2495: -21,-21 - node: color: '#334E6DC8' id: BrickTileWhiteInnerNw decals: - 1606: -3,32 - 1634: -8,40 + 1463: -3,32 + 1491: -8,40 - node: color: '#52B4E996' id: BrickTileWhiteInnerNw decals: - 2940: -19,-21 + 2524: -19,-21 - node: color: '#79150096' id: BrickTileWhiteInnerNw decals: - 2411: 7,-9 + 2115: 7,-9 - node: color: '#D381C996' id: BrickTileWhiteInnerNw decals: - 2662: 14,20 + 2346: 14,20 - node: color: '#EFB34196' id: BrickTileWhiteInnerNw decals: - 2378: -5,-42 - 2527: 9,-24 + 2231: 9,-24 + 3033: 3,-42 - node: color: '#FFFFFFFF' id: BrickTileWhiteInnerNw decals: - 2912: -19,-21 + 2496: -19,-21 - node: color: '#334E6DC8' id: BrickTileWhiteInnerSe decals: - 1609: -3,32 - 1633: -12,42 + 1466: -3,32 + 1490: -12,42 - node: color: '#52B4E996' id: BrickTileWhiteInnerSe decals: - 2937: -21,-21 + 2521: -21,-21 - node: color: '#D381C996' id: BrickTileWhiteInnerSe decals: - 2661: 12,23 + 2345: 12,23 - node: color: '#EFB34196' id: BrickTileWhiteInnerSe decals: - 1788: 7,-25 - 2377: -11,-40 + 1645: 7,-25 - node: color: '#FFFFFFFF' id: BrickTileWhiteInnerSe decals: - 2909: -21,-21 + 2493: -21,-21 - node: color: '#334E6DC8' id: BrickTileWhiteInnerSw decals: - 1607: -3,32 - 1631: -8,42 + 1464: -3,32 + 1488: -8,42 - node: color: '#52B4E996' id: BrickTileWhiteInnerSw decals: - 2938: -19,-21 + 2522: -19,-21 - node: color: '#79150096' id: BrickTileWhiteInnerSw decals: - 2410: 7,-4 - 2412: 7,-11 + 2114: 7,-4 + 2116: 7,-11 - node: color: '#D381C996' id: BrickTileWhiteInnerSw decals: - 2660: 14,23 + 2344: 14,23 - node: color: '#EFB34196' id: BrickTileWhiteInnerSw decals: - 1787: 9,-25 - 2376: -5,-40 + 1644: 9,-25 - node: color: '#FFFFFFFF' id: BrickTileWhiteInnerSw decals: - 2910: -19,-21 + 2494: -19,-21 - node: color: '#334E6DC8' id: BrickTileWhiteLineE decals: - 1542: -4,29 - 1543: -4,30 - 1544: -4,31 - 1545: -4,33 - 1546: -4,35 - 1547: -15,29 - 1548: -15,30 - 1549: -15,31 - 1550: -15,33 - 1551: -15,35 - 1629: -12,41 - 2672: -40,-61 + 1399: -4,29 + 1400: -4,30 + 1401: -4,31 + 1402: -4,33 + 1403: -4,35 + 1404: -15,29 + 1405: -15,30 + 1406: -15,31 + 1407: -15,33 + 1408: -15,35 + 1486: -12,41 - node: color: '#52B4E996' id: BrickTileWhiteLineE decals: - 2675: -40,-63 - 2929: -21,-17 - 2930: -21,-18 - 2931: -21,-19 - 2932: -21,-20 - 2933: -21,-22 - 2934: -21,-23 - 2963: -13,-16 - 3005: -13,-22 - 3006: -13,-21 - 3007: -13,-20 - 3041: -29,-22 - 3042: -29,-21 - 3043: -29,-20 - 3044: -29,-19 - 3045: -29,-18 - 3094: -12,-12 - 3095: -12,-10 - - node: - color: '#9FED5896' - id: BrickTileWhiteLineE - decals: - 2684: -37,-60 - 2685: -37,-59 - 2686: -37,-58 - - node: - color: '#A4610696' - id: BrickTileWhiteLineE - decals: - 2671: -40,-59 + 2513: -21,-17 + 2514: -21,-18 + 2515: -21,-19 + 2516: -21,-20 + 2517: -21,-22 + 2518: -21,-23 + 2547: -13,-16 + 2589: -13,-22 + 2590: -13,-21 + 2591: -13,-20 + 2625: -29,-22 + 2626: -29,-21 + 2627: -29,-20 + 2628: -29,-19 + 2629: -29,-18 + 2678: -12,-12 + 2679: -12,-10 - node: color: '#D381C996' id: BrickTileWhiteLineE decals: - 2655: 12,21 - 2656: 12,22 - 2676: -40,-64 - - node: - color: '#D4D4D428' - id: BrickTileWhiteLineE - decals: - 2696: -42,-60 - 2697: -42,-59 - 2698: -42,-58 - - node: - color: '#D4D4D496' - id: BrickTileWhiteLineE - decals: - 2693: -42,-64 - 2694: -42,-63 - 2695: -42,-62 + 2339: 12,21 + 2340: 12,22 - node: color: '#DE3A3A96' id: BrickTileWhiteLineE decals: - 2197: -2,-35 - 2198: -2,-34 - 2681: -37,-64 - 2682: -37,-63 - 2683: -37,-62 + 2054: -2,-35 + 2055: -2,-34 - node: color: '#EFB34196' id: BrickTileWhiteLineE decals: - 1775: 7,-29 - 1776: 7,-28 - 1777: 7,-27 - 1778: 7,-26 - 2201: -4,-35 - 2202: -4,-34 - 2225: 3,-42 - 2226: 3,-41 - 2227: 3,-40 - 2228: 3,-39 - 2229: 3,-43 - 2230: 3,-44 - 2252: -22,-44 - 2275: -16,-44 - 2276: -16,-43 - 2311: -6,-31 - 2312: -6,-30 - 2313: -6,-29 - 2668: -40,-58 - 2858: -40,18 + 1632: 7,-29 + 1633: 7,-28 + 1634: 7,-27 + 1635: 7,-26 + 2058: -4,-35 + 2059: -4,-34 + 2442: -40,18 + 2975: -26,-40 + 2981: -26,-44 - node: color: '#FFFFFFFF' id: BrickTileWhiteLineE decals: - 2903: -21,-23 - 2904: -21,-22 - 2905: -21,-20 - 2906: -21,-19 - 2915: -21,-18 - 2916: -21,-17 - 3002: -13,-22 - 3003: -13,-21 - 3004: -13,-20 + 2487: -21,-23 + 2488: -21,-22 + 2489: -21,-20 + 2490: -21,-19 + 2499: -21,-18 + 2500: -21,-17 + 2586: -13,-22 + 2587: -13,-21 + 2588: -13,-20 - node: color: '#334E6DC8' id: BrickTileWhiteLineN decals: - 1503: -18,37 - 1504: -19,37 - 1505: -20,37 - 1506: -21,37 - 1507: -22,37 - 1508: -25,37 - 1509: -26,37 - 1510: -28,37 - 1511: -24,37 - 1626: -9,40 - 1627: -10,40 - 1628: -11,40 + 1360: -18,37 + 1361: -19,37 + 1362: -20,37 + 1363: -21,37 + 1364: -22,37 + 1365: -25,37 + 1366: -26,37 + 1367: -28,37 + 1368: -24,37 + 1483: -9,40 + 1484: -10,40 + 1485: -11,40 - node: color: '#52B4E996' id: BrickTileWhiteLineN decals: - 2941: -20,-21 - 3008: -15,-19 - 3009: -16,-19 - 3010: -17,-19 - 3011: -18,-19 - 3096: -13,-9 - 3097: -14,-9 - 3098: -15,-9 + 2525: -20,-21 + 2592: -15,-19 + 2593: -16,-19 + 2594: -17,-19 + 2595: -18,-19 + 2680: -13,-9 + 2681: -14,-9 + 2682: -15,-9 - node: color: '#D381C996' id: BrickTileWhiteLineN decals: - 2553: 17,16 - 2554: 18,16 - 2653: 13,20 + 2337: 13,20 - node: color: '#DE3A3A96' id: BrickTileWhiteLineN decals: - 2199: -3,-33 - 2243: -3,-39 + 2056: -3,-33 - node: color: '#EFB34196' id: BrickTileWhiteLineN decals: - 2205: -3,-34 - 2256: -24,-41 - 2257: -23,-41 - 2273: -17,-39 - 2274: -18,-39 - 2314: -7,-28 - 2315: -8,-28 - 2316: -9,-28 - 2317: -10,-28 - 2318: -11,-28 - 2319: -12,-28 - 2320: -13,-28 - 2371: -6,-42 - 2372: -7,-42 - 2373: -8,-42 - 2374: -9,-42 - 2375: -10,-42 - 2524: 8,-24 - 2526: 7,-24 - 2529: 10,-23 - 2530: 11,-23 - 2531: 12,-23 - 2532: 13,-23 - 2850: -41,19 - 2851: -42,19 - 2852: -43,19 + 2062: -3,-34 + 2228: 8,-24 + 2230: 7,-24 + 2233: 10,-23 + 2234: 11,-23 + 2235: 12,-23 + 2434: -41,19 + 2435: -42,19 + 2436: -43,19 + 2982: -22,-45 + 2983: -21,-45 + 3022: -9,-42 + 3023: -8,-42 + 3024: -6,-42 + 3025: -7,-42 + 3026: -5,-42 + 3027: -4,-42 + 3028: -3,-42 + 3029: -2,-42 + 3030: 2,-42 - node: color: '#FFFFFFFF' id: BrickTileWhiteLineN decals: - 1459: -26,39 - 1460: -28,39 - 1461: -27,39 - 2914: -20,-21 - 2998: -15,-19 - 2999: -16,-19 - 3000: -17,-19 - 3001: -18,-19 + 1316: -26,39 + 1317: -28,39 + 1318: -27,39 + 2498: -20,-21 + 2582: -15,-19 + 2583: -16,-19 + 2584: -17,-19 + 2585: -18,-19 - node: color: '#334E6DC8' id: BrickTileWhiteLineS decals: - 1623: -9,42 - 1624: -10,42 - 1625: -11,42 + 1480: -9,42 + 1481: -10,42 + 1482: -11,42 - node: color: '#52B4E996' id: BrickTileWhiteLineS decals: - 2474: -34,0 - 2475: -36,0 - 2942: -20,-21 - 3012: -17,-23 - 3013: -16,-23 - 3014: -15,-23 - 3015: -14,-23 - 3056: -30,-24 - 3100: -13,-13 - 3101: -15,-13 + 2178: -34,0 + 2179: -36,0 + 2526: -20,-21 + 2596: -17,-23 + 2597: -16,-23 + 2598: -15,-23 + 2599: -14,-23 + 2640: -30,-24 + 2684: -13,-13 + 2685: -15,-13 - node: color: '#79150096' id: BrickTileWhiteLineS decals: - 2407: 6,-4 - 2408: 5,-4 - 2409: 3,-4 + 2111: 6,-4 + 2112: 5,-4 + 2113: 3,-4 - node: color: '#D381C996' id: BrickTileWhiteLineS decals: - 2552: 17,14 - 2654: 13,23 + 2338: 13,23 - node: color: '#DE3A3A96' id: BrickTileWhiteLineS decals: - 2200: -3,-36 + 2057: -3,-36 - node: color: '#EFB34196' id: BrickTileWhiteLineS decals: - 2206: -3,-35 - 2235: 2,-45 - 2236: 1,-45 - 2250: -23,-45 - 2251: -24,-45 - 2270: -19,-45 - 2271: -17,-45 - 2304: -7,-32 - 2305: -8,-32 - 2306: -9,-32 - 2307: -10,-32 - 2308: -11,-32 - 2309: -12,-32 - 2310: -13,-32 - 2366: -6,-40 - 2367: -7,-40 - 2368: -8,-40 - 2369: -9,-40 - 2370: -10,-40 - 2525: 8,-25 - 2855: -43,17 - 2857: -42,17 + 2063: -3,-35 + 2229: 8,-25 + 2439: -43,17 + 2441: -42,17 + 2994: -20,-51 + 2995: -16,-51 + 3031: -10,-39 + 3032: -6,-39 - node: color: '#FFFFFFFF' id: BrickTileWhiteLineS decals: - 1458: -27,39 - 2913: -20,-21 - 2992: -17,-23 - 2993: -16,-23 - 2994: -15,-23 - 2995: -14,-23 + 1315: -27,39 + 2497: -20,-21 + 2576: -17,-23 + 2577: -16,-23 + 2578: -15,-23 + 2579: -14,-23 - node: color: '#334E6DC8' id: BrickTileWhiteLineW decals: - 1536: -16,29 - 1537: -16,30 - 1538: -16,31 - 1539: -16,32 - 1540: -16,33 - 1541: -16,35 - 1552: -5,29 - 1553: -5,30 - 1554: -5,31 - 1555: -5,33 - 1556: -5,35 - 1630: -8,41 - 2673: -37,-61 + 1393: -16,29 + 1394: -16,30 + 1395: -16,31 + 1396: -16,32 + 1397: -16,33 + 1398: -16,35 + 1409: -5,29 + 1410: -5,30 + 1411: -5,31 + 1412: -5,33 + 1413: -5,35 + 1487: -8,41 - node: color: '#52B4E996' id: BrickTileWhiteLineW decals: - 2674: -37,-63 - 2923: -23,-22 - 2924: -23,-21 - 2925: -23,-20 - 2926: -23,-19 - 2927: -23,-18 - 2928: -23,-16 - 2935: -19,-22 - 2936: -19,-20 - 3048: -31,-17 - 3049: -31,-19 - 3050: -31,-20 - 3051: -31,-21 - 3052: -31,-22 - 3053: -31,-23 - 3099: -16,-12 + 2507: -23,-22 + 2508: -23,-21 + 2509: -23,-20 + 2510: -23,-19 + 2511: -23,-18 + 2512: -23,-16 + 2519: -19,-22 + 2520: -19,-20 + 2632: -31,-17 + 2633: -31,-19 + 2634: -31,-20 + 2635: -31,-21 + 2636: -31,-22 + 2637: -31,-23 + 2683: -16,-12 - node: color: '#79150096' id: BrickTileWhiteLineW decals: - 2402: 7,-12 - 2403: 7,-8 - 2404: 7,-7 - 2405: 7,-6 - 2406: 7,-5 - - node: - color: '#9FED5896' - id: BrickTileWhiteLineW - decals: - 2687: -35,-60 - 2688: -35,-59 - 2689: -35,-58 - - node: - color: '#A4610696' - id: BrickTileWhiteLineW - decals: - 2670: -37,-59 + 2106: 7,-12 + 2107: 7,-8 + 2108: 7,-7 + 2109: 7,-6 + 2110: 7,-5 - node: color: '#D381C996' id: BrickTileWhiteLineW decals: - 2658: 14,21 - 2659: 14,22 - 2677: -37,-64 - - node: - color: '#D4D4D428' - id: BrickTileWhiteLineW - decals: - 2699: -40,-60 - 2700: -40,-59 - 2701: -40,-58 - - node: - color: '#D4D4D496' - id: BrickTileWhiteLineW - decals: - 2690: -40,-64 - 2691: -40,-63 - 2692: -40,-62 + 2342: 14,21 + 2343: 14,22 - node: color: '#DE3A3A96' id: BrickTileWhiteLineW decals: - 2195: -4,-35 - 2196: -4,-34 - 2678: -35,-64 - 2679: -35,-63 - 2680: -35,-62 + 2052: -4,-35 + 2053: -4,-34 - node: color: '#EFB34196' id: BrickTileWhiteLineW decals: - 1779: 5,-28 - 1780: 5,-27 - 1781: 5,-29 - 1782: 5,-26 - 1783: 5,-25 - 1786: 9,-26 - 2203: -2,-35 - 2204: -2,-34 - 2233: 0,-44 - 2234: 0,-43 - 2253: -25,-44 - 2254: -25,-43 - 2255: -25,-42 - 2264: -20,-44 - 2265: -20,-41 - 2266: -20,-40 - 2321: -14,-31 - 2322: -14,-29 - 2669: -37,-58 + 1636: 5,-28 + 1637: 5,-27 + 1638: 5,-29 + 1639: 5,-26 + 1640: 5,-25 + 1643: 9,-26 + 2060: -2,-35 + 2061: -2,-34 + 3034: 3,-41 - node: color: '#FFFFFFFF' id: BrickTileWhiteLineW decals: - 2907: -19,-22 - 2908: -19,-20 - 2917: -23,-22 - 2918: -23,-21 - 2919: -23,-20 - 2920: -23,-19 - 2921: -23,-18 - 2922: -23,-16 + 2491: -19,-22 + 2492: -19,-20 + 2501: -23,-22 + 2502: -23,-21 + 2503: -23,-20 + 2504: -23,-19 + 2505: -23,-18 + 2506: -23,-16 - node: color: '#FFFFFFFF' id: Busha1 decals: 367: -40.05385,30.256437 - - node: - color: '#FFFFFFFF' - id: Busha2 - decals: - 1104: -25.204376,3.9985995 - node: color: '#FFFFFFFF' id: Busha3 decals: - 1045: -67.012436,-29.136745 + 965: -67.012436,-29.136745 - node: color: '#9FED5896' id: Bushb1 decals: - 1078: 5.955755,-11.904804 + 998: 5.955755,-11.904804 - node: color: '#FFFFFFFF' id: Bushb1 @@ -1710,152 +1548,143 @@ entities: color: '#9FED5896' id: Bushb3 decals: - 1076: 5.424505,-4.9673038 + 996: 5.424505,-4.9673038 - node: color: '#FFFFFFFF' id: Bushb3 decals: 365: -39.256973,28.912687 - 1040: -71.06114,-43.947823 - 1733: -52.14543,-42.415432 + 960: -71.06114,-43.947823 + 1590: -52.14543,-42.415432 - node: color: '#9FED5896' id: Bushc1 decals: - 1075: 6.03388,-7.2173038 + 995: 6.03388,-7.2173038 - node: color: '#FFFFFFFF' id: Bushc1 decals: - 949: -12.158052,22.978218 + 884: -12.158052,22.978218 - node: color: '#9FED5896' id: Bushc2 decals: - 1074: 6,-8 - 1077: 2.9401298,-4.9985538 + 994: 6,-8 + 997: 2.9401298,-4.9985538 - node: color: '#FFFFFFFF' id: Bushc2 decals: 366: -39.1476,33.037685 - 948: -9.158052,23.040718 + 883: -9.158052,23.040718 - node: color: '#FFFFFFFF' id: Bushc3 decals: 368: -39.11635,29.006437 - 1066: -65.91299,-37.046043 + 986: -65.91299,-37.046043 - node: color: '#FFFFFFFF' id: Bushd3 decals: - 1058: -67.06147,-29.881145 - - node: - color: '#FFFFFFFF' - id: Bushd4 - decals: - 1112: -27.485626,3.9673495 + 978: -67.06147,-29.881145 - node: color: '#FFFFFFFF' id: Bushe1 decals: - 1052: -65.58819,-29.014542 - 1111: -28.454376,3.9517245 + 972: -65.58819,-29.014542 - node: color: '#FFFFFFFF' id: Bushe2 decals: - 1043: -71.81257,-43.137188 - 1053: -65.66631,-32.030167 - 1054: -59.71319,-35.530167 + 963: -71.81257,-43.137188 + 973: -65.66631,-32.030167 + 974: -59.71319,-35.530167 - node: color: '#FFFFFFFF' id: Bushe3 decals: - 1055: -65.26006,-35.280167 - 1056: -59.36944,-31.748917 - 1115: -24.141876,3.9673495 + 975: -65.26006,-35.280167 + 976: -59.36944,-31.748917 - node: color: '#FFFFFFFF' id: Bushe4 decals: - 1284: -59.021492,-29.650486 + 1184: -59.021492,-29.650486 - node: color: '#FFFFFFFF' id: Bushf1 decals: - 1047: -65.58819,-32.131794 - 1048: -59.291313,-31.866169 + 967: -65.58819,-32.131794 + 968: -59.291313,-31.866169 - node: color: '#FFFFFFFF' id: Bushf2 decals: - 1049: -59.74444,-35.631794 - 1050: -65.52569,-29.053669 - 1283: -59.068367,-29.628086 + 969: -59.74444,-35.631794 + 970: -65.52569,-29.053669 + 1183: -59.068367,-29.628086 - node: color: '#FFFFFFFF' id: Bushf3 decals: - 1051: -65.27569,-35.350544 + 971: -65.27569,-35.350544 - node: color: '#FFFFFFFF' id: Bushh2 decals: - 1059: -50.04093,-42.20576 + 979: -50.04093,-42.20576 - node: color: '#FFFFFFFF' id: Bushh3 decals: - 1057: -66.616165,-27.440277 - 1060: -53.009384,-36.94919 + 977: -66.616165,-27.440277 + 980: -53.009384,-36.94919 - node: color: '#FFFFFFFF' id: Bushi1 decals: 375: -38.850723,30.881437 - 940: -10.897953,23.01216 - 941: -7.147953,23.059034 - 943: -12.769052,22.88716 - 3188: -20,-22 + 875: -10.897953,23.01216 + 876: -7.147953,23.059034 + 878: -12.769052,22.88716 + 2772: -20,-22 - node: color: '#FFFFFFFF' id: Bushi2 decals: 374: -40.131973,32.52206 - 1079: 5.9999943,-7.451386 + 999: 5.9999943,-7.451386 - node: color: '#FFFFFFFF' id: Bushi3 decals: 372: -38.850723,29.881437 373: -40.05385,31.053312 - 1114: -28.032501,3.9673495 - node: color: '#FFFFFFFF' id: Bushi4 decals: - 942: -9.757328,22.85591 - 1080: 5.4999943,-5.029511 - 1113: -25.548126,3.9829745 + 877: -9.757328,22.85591 + 1000: 5.4999943,-5.029511 - node: color: '#FFFFFFFF' id: Bushj1 decals: - 1044: -73.48444,-43.855938 - 1061: -68.11463,-38.9754 - 1067: -69.40792,-34.063843 + 964: -73.48444,-43.855938 + 981: -68.11463,-38.9754 + 987: -69.40792,-34.063843 - node: color: '#FFFFFFFF' id: Bushj2 decals: - 1062: -57.046288,-37.982056 + 982: -57.046288,-37.982056 - node: color: '#FFFFFFFF' id: Bushj3 decals: - 1063: -49.987144,-48.963146 + 983: -49.987144,-48.963146 - node: color: '#FFFFFFFF' id: Bushk1 @@ -1871,123 +1700,120 @@ entities: color: '#FFFFFFFF' id: Bushl1 decals: - 889: -59.13713,-56.211792 - 1081: 3.0098214,-4.939097 - 1599: -9.9612665,40.993107 + 824: -59.13713,-56.211792 + 1001: 3.0098214,-4.939097 + 1456: -9.9612665,40.993107 - node: color: '#FFFFFFFF' id: Bushl2 decals: - 890: -59.79338,-57.039917 - 1082: 6.009821,-11.977411 + 825: -59.79338,-57.039917 + 1002: 6.009821,-11.977411 - node: color: '#FFFFFFFF' id: Bushm2 decals: - 891: -59.16838,-57.789917 + 826: -59.16838,-57.789917 - node: color: '#FFFFFFFF' id: Bushm3 decals: - 892: -65.91838,-51.868042 + 827: -65.91838,-51.868042 - node: color: '#FFFFFFFF' id: Bushn1 decals: - 950: -10.126802,23.012297 - - node: - color: '#FFFFFFFF' - id: Caution - decals: - 662: -8,-45 + 885: -10.126802,23.012297 - node: color: '#52B4E996' id: CheckerNESW decals: 520: -11,-2 - 2966: -19,-17 - 2967: -19,-16 - 2968: -19,-15 - 2969: -18,-15 - 2970: -17,-15 - 2971: -17,-16 - 2972: -18,-16 - 2973: -18,-17 - 2974: -17,-17 - 2975: -18,-22 - 2976: -18,-21 - 2977: -18,-20 - 2978: -17,-20 - 2979: -17,-21 - 2980: -17,-22 - 2981: -16,-22 - 2982: -16,-21 - 2983: -16,-20 - 2984: -15,-20 - 2985: -15,-21 - 2986: -15,-22 - 2987: -14,-22 - 2988: -14,-21 - 2989: -14,-20 - 3026: -33,-20 - 3027: -34,-20 - 3028: -35,-20 - 3029: -35,-19 - 3030: -34,-19 - 3031: -33,-19 - 3032: -33,-18 - 3033: -34,-18 - 3034: -35,-18 - 3035: -35,-17 - 3036: -34,-17 - 3037: -33,-17 - 3038: -33,-16 - 3039: -34,-16 - 3040: -35,-16 + 2550: -19,-17 + 2551: -19,-16 + 2552: -19,-15 + 2553: -18,-15 + 2554: -17,-15 + 2555: -17,-16 + 2556: -18,-16 + 2557: -18,-17 + 2558: -17,-17 + 2559: -18,-22 + 2560: -18,-21 + 2561: -18,-20 + 2562: -17,-20 + 2563: -17,-21 + 2564: -17,-22 + 2565: -16,-22 + 2566: -16,-21 + 2567: -16,-20 + 2568: -15,-20 + 2569: -15,-21 + 2570: -15,-22 + 2571: -14,-22 + 2572: -14,-21 + 2573: -14,-20 + 2610: -33,-20 + 2611: -34,-20 + 2612: -35,-20 + 2613: -35,-19 + 2614: -34,-19 + 2615: -33,-19 + 2616: -33,-18 + 2617: -34,-18 + 2618: -35,-18 + 2619: -35,-17 + 2620: -34,-17 + 2621: -33,-17 + 2622: -33,-16 + 2623: -34,-16 + 2624: -35,-16 + - node: + color: '#9FED5896' + id: CheckerNESW + decals: + 2787: -28,13 + 2788: -27,13 + 2789: -29,12 + 2790: -28,11 + 2791: -27,11 + 2792: -29,10 + 2793: -28,9 + 2794: -27,9 + 2795: -29,8 + 2796: -28,7 + 2797: -27,7 - node: color: '#D4D4D496' id: CheckerNESW decals: - 1795: -15,8 - - node: - color: '#EFB34196' - id: CheckerNESW - decals: - 1014: -20,-37 - 1015: -19,-37 - 1016: -18,-37 - 1017: -17,-37 - 1018: -16,-37 - 1019: -16,-36 - 1020: -17,-36 - 1021: -19,-36 - 1022: -19,-36 - 1023: -20,-36 - 1024: -20,-35 - 1025: -19,-35 - 1026: -18,-35 - 1027: -17,-35 - 1028: -16,-35 + 1652: -15,8 - node: color: '#52B4E996' id: CheckerNWSE decals: 516: -9,-4 - 3118: -32,-8 - 3119: -32,-7 - 3120: -32,-6 - 3121: -31,-6 - 3122: -30,-6 - 3123: -29,-6 - 3124: -28,-6 - 3125: -28,-7 - 3126: -28,-8 - 3127: -29,-8 - 3128: -29,-7 - 3129: -30,-7 - 3130: -30,-8 - 3131: -31,-8 - 3132: -31,-7 + 2702: -32,-8 + 2703: -32,-7 + 2704: -32,-6 + 2705: -31,-6 + 2706: -30,-6 + 2707: -29,-6 + 2708: -28,-6 + 2709: -28,-7 + 2710: -28,-8 + 2711: -29,-8 + 2712: -29,-7 + 2713: -30,-7 + 2714: -30,-8 + 2715: -31,-8 + 2716: -31,-7 + - node: + color: '#724276FF' + id: CheckerNWSE + decals: + 2842: 19,13 + 2843: 18,13 - node: color: '#79150096' id: CheckerNWSE @@ -2010,20 +1836,20 @@ entities: color: '#A4610696' id: CheckerNWSE decals: - 1084: 30,0 - 1085: 29,0 - 1086: 29,1 - 1087: 29,2 - 1088: 30,2 - 1089: 30,1 - 1090: 31,0 - 1091: 31,1 - 1092: 31,2 + 1004: 30,0 + 1005: 29,0 + 1006: 29,1 + 1007: 29,2 + 1008: 30,2 + 1009: 30,1 + 1010: 31,0 + 1011: 31,1 + 1012: 31,2 - node: color: '#EFB34196' id: CheckerNWSE decals: - 1119: 3,-28 + 1019: 3,-28 - node: color: '#FFFFFFFF' id: Delivery @@ -2051,71 +1877,68 @@ entities: 628: 3,-35 629: 3,-34 630: 3,-33 - 712: 14,-12 - 713: 14,-11 - 714: 14,-10 - 1145: 16,-2 - 1146: 17,-2 - 1238: 31,-6 - 1239: 31,-5 - 1240: 31,-4 - 1255: 18,-15 - 1256: 18,-14 - 1257: 19,-14 - 1258: 19,-15 - 1300: 38,7 - 1301: 39,7 - 1302: 40,7 - 1321: 28,9 - 1322: 28,10 - 1323: 26,9 - 1324: 26,10 - 2207: 4,-30 - 2291: -15,-42 - 2292: -15,-41 - 2293: -15,-40 - 2294: -1,-42 - 2295: -1,-41 - 2296: -1,-40 - 2841: -8,-49 - 3180: -13,-8 - 3181: -12,-8 + 652: 14,-12 + 653: 14,-11 + 654: 14,-10 + 1045: 16,-2 + 1046: 17,-2 + 1138: 31,-6 + 1139: 31,-5 + 1140: 31,-4 + 1155: 18,-15 + 1156: 18,-14 + 1157: 19,-14 + 1158: 19,-15 + 1200: 38,7 + 1201: 39,7 + 1202: 40,7 + 1221: 28,9 + 1222: 28,10 + 1223: 26,9 + 1224: 26,10 + 2064: 4,-30 + 2764: -13,-8 + 2765: -12,-8 + 2868: 14,-24 + 2869: 14,-25 + 2870: 10,-31 + 2871: 11,-31 - node: color: '#FFFFFFFF' id: DiagonalCheckerAOverlay decals: - 1658: -29,22 - 1659: -28,22 - 1660: -27,22 - 1661: -26,22 - 1662: -26,23 - 1663: -27,23 - 1664: -28,23 - 1665: -29,23 + 1515: -29,22 + 1516: -28,22 + 1517: -27,22 + 1518: -26,22 + 1519: -26,23 + 1520: -27,23 + 1521: -28,23 + 1522: -29,23 - node: cleanable: True color: '#FFFFFFFF' id: Dirt decals: - 923: -27,-36 - 924: -28,-38 - 925: -23,-36 - 926: -25,-38 - 2888: -41,-11 - 2889: -42,-13 - 2890: -43,-17 - 2891: -42,-16 - 2892: -42,-17 - 2893: -41,-16 - 2894: -42,-12 - 2895: -41,-9 - 2896: -42,-8 - 2897: -42,-7 - 2898: -39,-7 - 2899: -39,-6 - 2900: -38,-7 - 2901: -38,-8 - 2902: -40,-7 + 858: -27,-36 + 859: -28,-38 + 860: -23,-36 + 861: -25,-38 + 2472: -41,-11 + 2473: -42,-13 + 2474: -43,-17 + 2475: -42,-16 + 2476: -42,-17 + 2477: -41,-16 + 2478: -42,-12 + 2479: -41,-9 + 2480: -42,-8 + 2481: -42,-7 + 2482: -39,-7 + 2483: -39,-6 + 2484: -38,-7 + 2485: -38,-8 + 2486: -40,-7 - node: color: '#FFFFFFFF' id: DirtHeavy @@ -2126,9 +1949,8 @@ entities: 232: -49,40 245: -34,57 246: -31,59 - 681: 1,-38 - 762: 53,19 - 763: 53,20 + 697: 53,19 + 698: 53,20 - node: cleanable: True color: '#FFFFFFFF' @@ -2139,32 +1961,31 @@ entities: 403: -28,32 404: -28,31 405: -31,30 - 893: -76,-57 - 894: -76,-56 - 895: -77,-55 - 896: -79,-54 - 910: -22,-38 - 911: -23,-38 - 912: -24,-36 - 913: -25,-36 - 914: -25,-36 - 1165: 23,-12 - 1166: 23,-11 - 1167: 24,-12 - 1168: 34,-12 - 1169: 35,-11 - 1170: 32,-12 - 1171: 31,-10 - 2331: -13,-31 - 2332: -11,-32 - 2481: -19,19 - 2482: -14,19 - 2483: -21,18 - 2486: -15,19 - 2866: -40,-8 - 2867: -41,-7 - 2868: -42,-14 - 2869: -42,-17 + 828: -76,-57 + 829: -76,-56 + 830: -77,-55 + 831: -79,-54 + 845: -22,-38 + 846: -23,-38 + 847: -24,-36 + 848: -25,-36 + 849: -25,-36 + 1065: 23,-12 + 1066: 23,-11 + 1067: 24,-12 + 1068: 34,-12 + 1069: 35,-11 + 1070: 32,-12 + 1071: 31,-10 + 2075: -13,-31 + 2185: -19,19 + 2186: -14,19 + 2187: -21,18 + 2190: -15,19 + 2450: -40,-8 + 2451: -41,-7 + 2452: -42,-14 + 2453: -42,-17 - node: color: '#FFFFFFFF' id: DirtLight @@ -2194,25 +2015,22 @@ entities: 260: -40,42 262: -48,42 263: -37,40 - 690: -19,-44 - 691: -17,-42 - 692: -14,-40 - 693: -19,-42 - 694: -23,-43 - 695: -1,-40 - 696: -4,-41 - 697: 1,-40 - 698: 0,-39 - 699: 2,-38 - 700: 2,-39 - 701: 1,-34 - 702: 1,-31 - 758: 43,22 - 759: 45,22 - 760: 52,19 - 761: 51,20 - 764: 50,19 - 770: 45,23 + 641: -19,-44 + 642: -17,-42 + 643: -19,-42 + 644: -23,-43 + 645: -4,-41 + 646: 1,-40 + 647: 0,-39 + 648: 2,-39 + 649: 1,-34 + 650: 1,-31 + 693: 43,22 + 694: 45,22 + 695: 52,19 + 696: 51,20 + 699: 50,19 + 705: 45,23 - node: cleanable: True color: '#FFFFFFFF' @@ -2229,120 +2047,102 @@ entities: 419: -32,27 420: -26,28 421: -33,27 - 742: 20,-11 - 743: 21,-10 - 744: 17,-11 - 745: 17,-12 - 746: 19,-8 - 903: -78,-53 - 904: -76,-53 - 905: -78,-56 - 906: -79,-56 - 907: -80,-53 - 908: -79,-52 - 909: -76,-55 - 1002: 27,0 - 1003: 28,1 - 1004: 29,1 - 1177: 24,-11 - 1178: 24,-10 - 1179: 23,-10 - 1180: 26,-12 - 1181: 31,-12 - 1182: 32,-11 - 1183: 33,-10 - 1184: 34,-11 - 1185: 33,-12 - 1186: 32,-9 - 1187: 33,-9 - 1188: 24,-9 - 1189: 21,-9 - 1190: 24,-8 - 1191: 23,-8 - 1223: 29,-2 - 1224: 30,-3 - 1225: 31,-4 - 1226: 32,-4 - 1227: 30,0 - 1228: 33,-7 - 1229: 32,-8 - 1230: 24,-8 - 1231: 25,-7 - 1232: 26,-6 - 1233: 23,-3 - 1234: 22,-2 - 1235: 21,-2 - 1589: -1,29 - 1835: -58,15 - 1836: -57,16 - 1837: -58,21 - 1838: -57,20 - 1839: -57,23 - 1841: -51,14 - 1842: -51,15 - 1843: -56,20 - 1847: -4,27 - 1848: -6,27 - 1849: -14,26 - 1850: -19,27 - 1851: -26,28 - 1852: -26,27 - 1853: -27,26 - 1854: -25,25 - 1855: -27,31 - 1856: -39,37 - 1857: -37,36 - 1858: -36,35 - 1859: -41,43 - 1860: -47,52 - 1861: -49,53 - 1862: -47,56 - 2338: -13,-32 - 2339: -11,-31 - 2340: -9,-32 - 2341: -10,-30 - 2342: -10,-31 - 2343: -11,-29 - 2344: -11,-28 - 2345: -13,-29 - 2346: -14,-30 - 2347: -13,-33 - 2348: -13,-34 - 2349: -19,-41 - 2350: -20,-42 - 2351: -20,-44 - 2352: -20,-44 - 2353: -22,-44 - 2354: -22,-43 - 2355: -22,-41 - 2356: -25,-41 - 2357: -26,-41 - 2358: -26,-42 - 2359: -24,-43 - 2360: -24,-45 - 2361: -25,-44 - 2362: -12,-39 - 2363: -12,-40 - 2364: -9,-39 - 2365: -8,-39 - 2484: -18,19 - 2485: -21,19 - 2487: -16,19 - 2488: -22,19 - 2489: -31,16 - 2490: -31,17 - 2491: -7,18 - 2870: -41,-13 - 2871: -42,-10 - 2872: -42,-9 - 2873: -41,-8 - 2874: -40,-7 - 2884: -42,-15 - 2885: -42,-15 - 2886: -42,-14 - 2887: -42,-13 - 3158: -18,-9 - 3159: -23,-12 + 682: 20,-11 + 683: 21,-10 + 684: 17,-11 + 685: 17,-12 + 686: 19,-8 + 838: -78,-53 + 839: -76,-53 + 840: -78,-56 + 841: -79,-56 + 842: -80,-53 + 843: -79,-52 + 844: -76,-55 + 937: 27,0 + 938: 28,1 + 939: 29,1 + 1077: 24,-11 + 1078: 24,-10 + 1079: 23,-10 + 1080: 26,-12 + 1081: 31,-12 + 1082: 32,-11 + 1083: 33,-10 + 1084: 34,-11 + 1085: 33,-12 + 1086: 32,-9 + 1087: 33,-9 + 1088: 24,-9 + 1089: 21,-9 + 1090: 24,-8 + 1091: 23,-8 + 1123: 29,-2 + 1124: 30,-3 + 1125: 31,-4 + 1126: 32,-4 + 1127: 30,0 + 1128: 33,-7 + 1129: 32,-8 + 1130: 24,-8 + 1131: 25,-7 + 1132: 26,-6 + 1133: 23,-3 + 1134: 22,-2 + 1135: 21,-2 + 1446: -1,29 + 1692: -58,15 + 1693: -57,16 + 1694: -58,21 + 1695: -57,20 + 1696: -57,23 + 1698: -51,14 + 1699: -51,15 + 1700: -56,20 + 1704: -4,27 + 1705: -6,27 + 1706: -14,26 + 1707: -19,27 + 1708: -26,28 + 1709: -26,27 + 1710: -27,26 + 1711: -25,25 + 1712: -27,31 + 1713: -39,37 + 1714: -37,36 + 1715: -36,35 + 1716: -41,43 + 1717: -47,52 + 1718: -49,53 + 1719: -47,56 + 2078: -11,-31 + 2079: -10,-30 + 2080: -10,-31 + 2081: -11,-29 + 2082: -13,-29 + 2083: -14,-30 + 2084: -13,-33 + 2085: -13,-34 + 2086: -19,-41 + 2087: -24,-43 + 2188: -18,19 + 2189: -21,19 + 2191: -16,19 + 2192: -22,19 + 2193: -31,16 + 2194: -31,17 + 2195: -7,18 + 2454: -41,-13 + 2455: -42,-10 + 2456: -42,-9 + 2457: -41,-8 + 2458: -40,-7 + 2468: -42,-15 + 2469: -42,-15 + 2470: -42,-14 + 2471: -42,-13 + 2742: -18,-9 + 2743: -23,-12 - node: color: '#FFFFFFFF' id: DirtMedium @@ -2355,21 +2155,17 @@ entities: 244: -35,58 253: -36,54 261: -48,41 - 682: 0,-38 - 683: 1,-39 - 684: 0,-40 - 685: -18,-44 - 686: -19,-43 - 687: -23,-44 - 688: -18,-42 - 689: -16,-41 - 756: 46,23 - 757: 43,21 - 765: 52,19 - 766: 43,22 - 767: 46,23 - 768: 46,22 - 769: 44,23 + 637: 1,-39 + 638: -23,-44 + 639: -18,-42 + 640: -16,-41 + 691: 46,23 + 692: 43,21 + 700: 52,19 + 701: 43,22 + 702: 46,23 + 703: 46,22 + 704: 44,23 - node: cleanable: True color: '#FFFFFFFF' @@ -2380,45 +2176,42 @@ entities: 408: -30,30 409: -32,29 410: -31,32 - 741: 21,-11 - 897: -78,-54 - 898: -79,-55 - 899: -79,-53 - 900: -80,-53 - 901: -76,-54 - 902: -77,-53 - 915: -26,-36 - 916: -27,-37 - 1001: 27,1 - 1172: 32,-10 - 1173: 31,-11 - 1174: 30,-11 - 1175: 25,-12 - 1176: 26,-11 - 1220: 34,-7 - 1221: 30,-2 - 1222: 31,-3 - 1590: 3,29 - 1840: -58,13 - 2333: -10,-32 - 2334: -12,-31 - 2335: -12,-32 - 2336: -14,-31 - 2337: -12,-29 - 2875: -39,-8 - 2876: -42,-6 - 2877: -42,-7 - 2878: -41,-8 - 2879: -41,-12 - 2880: -42,-11 - 2881: -38,-8 - 2882: -38,-6 - 2883: -39,-7 + 681: 21,-11 + 832: -78,-54 + 833: -79,-55 + 834: -79,-53 + 835: -80,-53 + 836: -76,-54 + 837: -77,-53 + 850: -26,-36 + 851: -27,-37 + 936: 27,1 + 1072: 32,-10 + 1073: 31,-11 + 1074: 30,-11 + 1075: 25,-12 + 1076: 26,-11 + 1120: 34,-7 + 1121: 30,-2 + 1122: 31,-3 + 1447: 3,29 + 1697: -58,13 + 2076: -12,-31 + 2077: -12,-29 + 2459: -39,-8 + 2460: -42,-6 + 2461: -42,-7 + 2462: -41,-8 + 2463: -41,-12 + 2464: -42,-11 + 2465: -38,-8 + 2466: -38,-6 + 2467: -39,-7 - node: color: '#FFFFFFFF' id: FlowersBRTwo decals: - 3186: -20,-20 + 2770: -20,-20 - node: color: '#FFFFFFFF' id: Flowersbr1 @@ -2426,54 +2219,52 @@ entities: 75: -55,17 76: -53,18 77: -54.752693,18.73386 - 882: -59.152756,-56.526844 + 817: -59.152756,-56.526844 - node: color: '#FFFFFFFF' id: Flowersbr2 decals: - 877: -64.66838,-52.26122 - 878: -65.559006,-53.82372 - 879: -64.94963,-56.339344 - 880: -59.777756,-52.66747 - 1110: -24.157501,3.9829745 - 1598: -10.5706415,40.97748 + 812: -64.66838,-52.26122 + 813: -65.559006,-53.82372 + 814: -64.94963,-56.339344 + 815: -59.777756,-52.66747 + 1455: -10.5706415,40.97748 - node: color: '#FFFFFFFF' id: Flowersbr3 decals: 62: -53,22 63: -55,14 - 881: -60.121506,-53.44872 + 816: -60.121506,-53.44872 - node: color: '#FFFFFFFF' id: Flowerspv1 decals: - 883: -62.184006,-55.76122 - 884: -61.777756,-56.370594 - 885: -62.152756,-53.308094 - 1597: -9.3987665,40.961857 + 818: -62.184006,-55.76122 + 819: -61.777756,-56.370594 + 820: -62.152756,-53.308094 + 1454: -9.3987665,40.961857 - node: color: '#FFFFFFFF' id: Flowerspv2 decals: 81: -54.471443,18.20261 82: -53.533943,17.17136 - 886: -58.996506,-57.370594 - 887: -62.88713,-57.995594 + 821: -58.996506,-57.370594 + 822: -62.88713,-57.995594 - node: color: '#FFFFFFFF' id: Flowerspv3 decals: 64: -53,14 65: -55,22 - 888: -59.809006,-54.414917 - 1107: -25.970001,3.9985995 - 3187: -20,-23 + 823: -59.809006,-54.414917 + 2771: -20,-23 - node: color: '#FFFFFFFF' id: Flowersy1 decals: - 947: -13.0907,22.978218 + 882: -13.0907,22.978218 - node: color: '#FFFFFFFF' id: Flowersy2 @@ -2485,103 +2276,108 @@ entities: 78: -53.471443,17.280735 79: -54.76832,17.48386 376: -39.80385,29.303312 - 869: -64.98088,-57.620594 - 870: -62.090256,-57.776844 - 871: -61.10588,-57.13622 - 872: -60.090256,-57.91747 - 873: -64.152756,-53.683094 - 874: -62.69963,-52.51122 - 1108: -28.032501,3.9985995 - 1596: -9.9456415,40.993107 + 804: -64.98088,-57.620594 + 805: -62.090256,-57.776844 + 806: -61.10588,-57.13622 + 807: -60.090256,-57.91747 + 808: -64.152756,-53.683094 + 809: -62.69963,-52.51122 + 1453: -9.9456415,40.993107 - node: color: '#FFFFFFFF' id: Flowersy3 decals: 377: -39.4601,29.881437 - 876: -65.652756,-52.401844 - 944: -7.856325,22.931343 + 811: -65.652756,-52.401844 + 879: -7.856325,22.931343 - node: color: '#FFFFFFFF' id: Flowersy4 decals: 80: -53.61207,18.499485 378: -39.069473,32.17831 - 875: -63.26213,-53.76122 - 945: -10.293825,23.009468 - 946: -11.18445,22.978218 - 1109: -28.938751,3.9985995 - 3185: -20,-19 - - node: - color: '#334E6DC8' - id: FullTileOverlayGreyscale - decals: - 2718: -30,-62 + 810: -63.26213,-53.76122 + 880: -10.293825,23.009468 + 881: -11.18445,22.978218 + 2769: -20,-19 - node: color: '#4A8F37B1' id: FullTileOverlayGreyscale decals: - 1885: 5,23 - 1886: 6,23 - 1887: 3,23 - 1888: 2,23 - 1889: 2,20 - 1890: 2,21 - 1891: 3,20 - 1892: 5,20 - 1893: 6,20 - 1894: 6,21 + 1742: 5,23 + 1743: 6,23 + 1744: 3,23 + 1745: 2,23 + 1746: 2,20 + 1747: 2,21 + 1748: 3,20 + 1749: 5,20 + 1750: 6,20 + 1751: 6,21 - node: color: '#52B4E996' id: FullTileOverlayGreyscale decals: - 3085: -14,-12 - 3086: -14,-11 - 3087: -14,-10 - 3088: -15,-11 - 3089: -13,-11 - 3133: -25,-14 - 3134: -26,-14 - 3155: -20,-5 - 3156: -18,-5 - 3160: -20,-7 - 3161: -18,-7 + 2669: -14,-12 + 2670: -14,-11 + 2671: -14,-10 + 2672: -15,-11 + 2673: -13,-11 + 2717: -25,-14 + 2718: -26,-14 + 2739: -20,-5 + 2740: -18,-5 + 2744: -20,-7 + 2745: -18,-7 - node: color: '#79150096' id: FullTileOverlayGreyscale decals: - 808: -76,-46 - 809: -77,-46 - 810: -78,-46 - 811: -79,-46 - 812: -80,-46 - 813: -81,-46 + 743: -76,-46 + 744: -77,-46 + 745: -78,-46 + 746: -79,-46 + 747: -80,-46 + 748: -81,-46 + - node: + color: '#9FED5896' + id: FullTileOverlayGreyscale + decals: + 2798: -29,7 + 2799: -29,9 + 2800: -29,11 + 2801: -29,13 + 2802: -26,13 + 2803: -23,13 + 2804: -23,12 + 2805: -24,5 - node: color: '#A4610696' id: FullTileOverlayGreyscale decals: - 1093: 28,1 - 1094: 30,-1 - 1095: 20,-1 + 1013: 28,1 + 1014: 30,-1 + 1015: 20,-1 - node: color: '#D4D4D406' id: FullTileOverlayGreyscale decals: - 2413: -22,-6 - 2414: -23,-6 - 2415: -24,-6 - 2416: -25,-6 - 2417: -26,-6 - 2418: -25,-5 - 2419: -25,-4 - 2420: -25,-3 - 2421: -25,-2 - 2422: -25,-1 - 2423: -23,-5 - 2424: -23,-4 - 2425: -23,-3 - 2426: -23,-2 - 2427: -23,-1 - 2428: -24,-1 + 2117: -22,-6 + 2118: -23,-6 + 2119: -24,-6 + 2120: -25,-6 + 2121: -26,-6 + 2122: -25,-5 + 2123: -25,-4 + 2124: -25,-3 + 2125: -25,-2 + 2126: -25,-1 + 2127: -23,-5 + 2128: -23,-4 + 2129: -23,-3 + 2130: -23,-2 + 2131: -23,-1 + 2132: -24,-1 - node: color: '#D4D4D428' id: FullTileOverlayGreyscale @@ -2602,56 +2398,52 @@ entities: 479: -19,-4 480: 13,19 481: -38,10 - 680: -1,-34 - 1083: -19,0 - 2189: -3,-37 - 2190: -3,-32 + 636: -1,-34 + 1003: -19,0 + 2046: -3,-37 + 2047: -3,-32 - node: color: '#EFB34196' id: FullTileOverlayGreyscale decals: - 711: -11,-34 - 2244: -26,-42 - 2245: -26,-41 + 651: -11,-34 - node: color: '#FFFFFFFF' id: Grassb1 decals: 370: -39.100723,32.30331 - 936: -7.3405266,22.973469 - 939: -11.434277,23.035969 - 1064: -56.986298,-31.010326 - 1065: -59.069237,-37.03042 - 1735: -70.08625,-34.436035 + 871: -7.3405266,22.973469 + 874: -11.434277,23.035969 + 984: -56.986298,-31.010326 + 985: -59.069237,-37.03042 + 1592: -70.08625,-34.436035 - node: color: '#FFFFFFFF' id: Grassb2 decals: - 1038: -74.07677,-44.072823 - 1046: -67.18431,-28.324245 - 1102: -29.016876,3.9360995 - 1732: -53.955444,-43.088474 + 958: -74.07677,-44.072823 + 966: -67.18431,-28.324245 + 1589: -53.955444,-43.088474 - node: color: '#FFFFFFFF' id: Grassb3 decals: - 1039: -71.98302,-44.010323 - 1103: -24.048126,3.9673495 + 959: -71.98302,-44.010323 - node: color: '#FFFFFFFF' id: Grassb4 decals: - 938: -8.387402,22.973469 - 1041: -70.92052,-43.057198 - 1734: -52.942307,-42.899807 + 873: -8.387402,22.973469 + 961: -70.92052,-43.057198 + 1591: -52.942307,-42.899807 - node: color: '#FFFFFFFF' id: Grassb5 decals: 369: -39.881973,31.162687 371: -40.0851,28.850187 - 937: -12.856152,23.020344 - 1042: -73.10302,-35.91218 + 872: -12.856152,23.020344 + 962: -73.10302,-35.91218 - node: color: '#FFFFFFFF' id: Grassd1 @@ -2668,79 +2460,86 @@ entities: 357: -39.2726,29.881437 358: -39.694473,32.58456 359: -39.163223,31.818935 - 866: -65.69963,-54.183094 - 867: -59.934006,-54.276844 - 868: -60.98088,-57.745594 - 1100: -24.516876,4.0142245 + 801: -65.69963,-54.183094 + 802: -59.934006,-54.276844 + 803: -60.98088,-57.745594 + 2779: -27.285925,4.265137 + 2780: -29.097805,5.111672 - node: color: '#FFFFFFFF' id: Grassd2 decals: 83: -53.596443,17.79636 356: -39.7726,29.178312 - 848: -65.01213,-58.04247 - 849: -62.29338,-52.69872 - 850: -61.684006,-53.433094 - 851: -65.027756,-53.464344 - 852: -62.809006,-53.32372 - 932: -12.746777,23.114094 - 933: -6.8249016,22.957844 - 1099: -24.048126,4.0298495 - 3182: -20,-23 + 783: -65.01213,-58.04247 + 784: -62.29338,-52.69872 + 785: -61.684006,-53.433094 + 786: -65.027756,-53.464344 + 787: -62.809006,-53.32372 + 867: -12.746777,23.114094 + 868: -6.8249016,22.957844 + 2766: -20,-23 + 2776: -28.74137,4.8443456 + 2777: -28.177013,4.08692 + 2778: -23.974043,4.0126615 + 2785: -27.285925,5.6760283 + 2786: -25.503746,4.9037514 - node: color: '#FFFFFFFF' id: Grassd3 decals: - 853: -63.38713,-53.72997 - 854: -59.98088,-52.35497 - 855: -65.01213,-57.19872 - 856: -60.19963,-57.464344 - 857: -59.41838,-56.79247 - 934: -9.168652,22.942219 - 935: -10.309277,23.067219 + 788: -63.38713,-53.72997 + 789: -59.98088,-52.35497 + 790: -65.01213,-57.19872 + 791: -60.19963,-57.464344 + 792: -59.41838,-56.79247 + 869: -9.168652,22.942219 + 870: -10.309277,23.067219 + 2782: -26.157211,4.161177 + 2783: -27.865131,5.1859293 + 2784: -26.469091,5.022563 - node: color: '#FFFFFFFF' id: Grasse1 decals: - 858: -65.652756,-52.41747 - 859: -58.98088,-57.97997 - 860: -64.69963,-56.44872 - 861: -62.98088,-57.776844 - 1072: 6,-7 - 1073: 3,-5 - 1098: -27.532501,4.0298495 - 3183: -20,-22 + 793: -65.652756,-52.41747 + 794: -58.98088,-57.97997 + 795: -64.69963,-56.44872 + 796: -62.98088,-57.776844 + 992: 6,-7 + 993: 3,-5 + 2767: -20,-22 + 2774: -29.14236,4.101771 + 2775: -28.696815,5.5275135 - node: color: '#FFFFFFFF' id: Grasse2 decals: 360: -39.881973,31.74081 - 930: -11.340527,23.020344 - 931: -7.8092766,22.989094 - 1068: 6,-8 - 1069: 5,-5 - 1097: -28.532501,3.9829745 - 1101: -25.938751,4.0923495 - 1593: -9,41 - 1594: -10.480507,40.958054 - 3184: -20,-20 + 865: -11.340527,23.020344 + 866: -7.8092766,22.989094 + 988: 6,-8 + 989: 5,-5 + 1450: -9,41 + 1451: -10.480507,40.958054 + 2768: -20,-20 - node: color: '#FFFFFFFF' id: Grasse3 decals: - 862: -60.277756,-56.558094 - 863: -63.340256,-52.22997 - 864: -65.82463,-53.29247 - 865: -60.23088,-53.433094 - 927: -7.3717766,23.020344 - 928: -8.434277,22.973469 - 929: -11.918652,23.051594 - 1070: 6,-5 - 1071: 6,-12 - 1096: -29.001251,3.9829745 - 1591: -11,41 - 1592: -10,41 - 1595: -9.464882,40.926804 + 797: -60.277756,-56.558094 + 798: -63.340256,-52.22997 + 799: -65.82463,-53.29247 + 800: -60.23088,-53.433094 + 862: -7.3717766,23.020344 + 863: -8.434277,22.973469 + 864: -11.918652,23.051594 + 990: 6,-5 + 991: 6,-12 + 1448: -11,41 + 1449: -10,41 + 1452: -9.464882,40.926804 + 2781: -24.983944,4.08692 - node: color: '#334E6DC8' id: HalfTileOverlayGreyscale @@ -2754,21 +2553,20 @@ entities: 398: -12,27 399: -13,27 400: -14,27 - 963: -1,66 - 1565: -3,27 - 1567: -17,27 - 2716: -31,-63 + 898: -1,66 + 1422: -3,27 + 1424: -17,27 - node: color: '#33666DC8' id: HalfTileOverlayGreyscale decals: - 1401: 33,20 - 1402: 32,20 - 1403: 31,20 - 1404: 30,20 - 1405: 29,20 - 1406: 28,20 - 1407: 27,20 + 1267: 33,20 + 1268: 32,20 + 1269: 31,20 + 1270: 30,20 + 1271: 29,20 + 1272: 28,20 + 1273: 27,20 - node: color: '#52B4E996' id: HalfTileOverlayGreyscale @@ -2784,22 +2582,34 @@ entities: 491: -7,-2 492: -8,-2 550: -16,-5 - 3147: -25,-8 - 3148: -24,-8 - 3149: -23,-8 - 3150: -22,-8 - 3151: -21,-8 - 3152: -20,-8 + 2731: -25,-8 + 2732: -24,-8 + 2733: -23,-8 + 2734: -22,-8 + 2735: -21,-8 + 2736: -20,-8 + - node: + color: '#724276FF' + id: HalfTileOverlayGreyscale + decals: + 2817: 17,16 + 2829: 19,15 + 2839: 16,12 - node: color: '#79150096' id: HalfTileOverlayGreyscale decals: - 819: -76,-47 - 820: -77,-47 - 821: -78,-47 - 822: -79,-47 - 823: -80,-47 - 824: -81,-47 + 754: -76,-47 + 755: -77,-47 + 756: -78,-47 + 757: -79,-47 + 758: -80,-47 + 759: -81,-47 + - node: + color: '#9FED5896' + id: HalfTileOverlayGreyscale + decals: + 2806: -24,13 - node: color: '#A4610696' id: HalfTileOverlayGreyscale @@ -2811,49 +2621,39 @@ entities: 560: 8,-2 561: 7,-2 565: 6,-2 - 722: 21,2 - 723: 20,2 - 724: 19,2 - 725: 18,2 - 726: 17,2 - 727: 16,2 - 728: 15,2 - 1150: 26,-10 - 1151: 27,-10 - 1152: 28,-10 - 1153: 29,-10 - 1154: 30,-10 + 662: 21,2 + 663: 20,2 + 664: 19,2 + 665: 18,2 + 666: 17,2 + 667: 16,2 + 668: 15,2 + 1050: 26,-10 + 1051: 27,-10 + 1052: 28,-10 + 1053: 29,-10 + 1054: 30,-10 - node: color: '#D381C93B' id: HalfTileOverlayGreyscale decals: - 1358: 12,12 - 1359: 13,12 - 1360: 14,12 - 1361: 15,12 - 1362: 16,12 - 1363: 17,12 - 1364: 18,12 - 1365: 19,12 - 1366: 20,12 - 1368: 20,16 - 1383: 18,23 - 1384: 17,23 - 1385: 16,23 + 1251: 18,23 + 1252: 17,23 + 1253: 16,23 - node: color: '#D381C996' id: HalfTileOverlayGreyscale decals: - 1331: 29,11 - 1332: 28,11 - 1333: 27,11 - 1334: 26,11 - 1335: 25,11 - 1336: 24,11 - 1379: 24,23 - 1380: 25,23 - 1381: 20,23 - 1382: 19,23 + 1231: 29,11 + 1232: 28,11 + 1233: 27,11 + 1234: 26,11 + 1235: 25,11 + 1236: 24,11 + 1247: 24,23 + 1248: 25,23 + 1249: 20,23 + 1250: 19,23 - node: color: '#DE3A3A96' id: HalfTileOverlayGreyscale @@ -2922,35 +2722,21 @@ entities: color: '#EFB34196' id: HalfTileOverlayGreyscale decals: - 670: -5,-39 - 671: -4,-39 - 672: -1,-39 - 673: -2,-39 - 674: -6,-39 - 675: -7,-39 - 676: -8,-39 - 677: -9,-39 - 678: -10,-39 - 679: -11,-39 - 2287: -12,-39 - 2288: -14,-39 - 2703: -31,-58 - - node: - color: '#334E6DC8' - id: HalfTileOverlayGreyscale180 - decals: - 2717: -31,-64 + 635: -1,-39 + 2891: -11,-48 + 2892: -10,-48 + 2893: -9,-48 - node: color: '#33666DC8' id: HalfTileOverlayGreyscale180 decals: - 1394: 27,18 - 1395: 28,18 - 1396: 29,18 - 1397: 30,18 - 1398: 31,18 - 1399: 32,18 - 1400: 33,18 + 1260: 27,18 + 1261: 28,18 + 1262: 29,18 + 1263: 30,18 + 1264: 31,18 + 1265: 32,18 + 1266: 33,18 - node: color: '#52B4E935' id: HalfTileOverlayGreyscale180 @@ -2962,7 +2748,7 @@ entities: color: '#52B4E957' id: HalfTileOverlayGreyscale180 decals: - 2496: -49,42 + 2200: -49,42 - node: color: '#52B4E996' id: HalfTileOverlayGreyscale180 @@ -2978,12 +2764,26 @@ entities: 529: -7,0 530: -6,0 531: -5,0 - 3139: -19,-13 - 3140: -20,-13 - 3141: -21,-13 - 3142: -23,-13 - 3143: -24,-13 - 3144: -25,-13 + 2723: -19,-13 + 2724: -20,-13 + 2725: -21,-13 + 2726: -23,-13 + 2727: -24,-13 + 2728: -25,-13 + - node: + color: '#724276FF' + id: HalfTileOverlayGreyscale180 + decals: + 2813: 20,10 + 2814: 19,10 + 2815: 18,10 + 2816: 17,10 + 2818: 22,7 + 2819: 23,7 + 2838: 16,10 + 2846: 12,14 + 2847: 13,14 + 2848: 14,14 - node: color: '#79150096' id: HalfTileOverlayGreyscale180 @@ -2994,13 +2794,13 @@ entities: 37: -3,15 38: -2,15 39: -1,15 - 814: -80,-45 - 815: -79,-45 - 816: -78,-45 - 817: -77,-45 - 818: -76,-45 - 825: -81,-45 - 1742: 0,15 + 749: -80,-45 + 750: -79,-45 + 751: -78,-45 + 752: -77,-45 + 753: -76,-45 + 760: -81,-45 + 1599: 0,15 - node: color: '#9FED582F' id: HalfTileOverlayGreyscale180 @@ -3012,14 +2812,15 @@ entities: color: '#9FED5844' id: HalfTileOverlayGreyscale180 decals: - 2495: -46,42 + 2199: -46,42 - node: color: '#9FED5896' id: HalfTileOverlayGreyscale180 decals: - 2778: -20,9 - 2779: -21,9 - 2780: -22,9 + 2377: -20,9 + 2378: -21,9 + 2379: -22,9 + 2808: -23,9 - node: color: '#A4610696' id: HalfTileOverlayGreyscale180 @@ -3027,70 +2828,50 @@ entities: 553: -1,0 554: 0,0 555: 1,0 - 715: 21,0 - 716: 20,0 - 717: 19,0 - 718: 18,0 - 719: 17,0 - 720: 16,0 - 721: 15,0 - 729: 19,-12 - 730: 20,-12 - 731: 21,-12 - 732: 16,-12 - 733: 17,-12 - 1155: 23,-12 - 1156: 24,-12 - 1157: 25,-12 - 1158: 26,-12 - 1159: 27,-12 - 1160: 28,-12 - 1161: 29,-12 - 1162: 30,-12 - 1163: 31,-12 - 1204: 26,-8 - 1205: 27,-8 - 1206: 28,-8 - 1207: 29,-8 - 1208: 30,-8 - - node: - color: '#D381C93B' - id: HalfTileOverlayGreyscale180 - decals: - 1342: 23,7 - 1343: 22,7 - 1344: 21,7 - 1349: 20,10 - 1350: 19,10 - 1351: 18,10 - 1352: 17,10 - 1353: 16,10 - 1354: 15,10 - 1355: 14,10 - 1356: 13,10 - 1357: 12,10 - 1367: 20,14 - 1412: 12,14 - 1413: 13,14 - 1414: 14,14 + 655: 21,0 + 656: 20,0 + 657: 19,0 + 658: 18,0 + 659: 17,0 + 660: 16,0 + 661: 15,0 + 669: 19,-12 + 670: 20,-12 + 671: 21,-12 + 672: 16,-12 + 673: 17,-12 + 1055: 23,-12 + 1056: 24,-12 + 1057: 25,-12 + 1058: 26,-12 + 1059: 27,-12 + 1060: 28,-12 + 1061: 29,-12 + 1062: 30,-12 + 1063: 31,-12 + 1104: 26,-8 + 1105: 27,-8 + 1106: 28,-8 + 1107: 29,-8 + 1108: 30,-8 - node: color: '#D381C996' id: HalfTileOverlayGreyscale180 decals: - 1005: 24,25 - 1006: 20,25 - 1007: 19,25 - 1008: 18,25 - 1009: 17,25 - 1010: 16,25 - 1011: 15,25 - 1012: 14,25 - 1013: 13,25 - 1374: 21,18 - 1375: 22,18 - 1376: 23,18 - 1377: 24,18 - 1378: 25,18 + 940: 24,25 + 941: 20,25 + 942: 19,25 + 943: 18,25 + 944: 17,25 + 945: 16,25 + 946: 15,25 + 947: 14,25 + 948: 13,25 + 1242: 21,18 + 1243: 22,18 + 1244: 23,18 + 1245: 24,18 + 1246: 25,18 - node: color: '#DE3A3A96' id: HalfTileOverlayGreyscale180 @@ -3133,7 +2914,7 @@ entities: 429: 14,20 471: -18,-3 472: -19,-3 - 2493: -43,42 + 2197: -43,42 - node: color: '#EDD75E93' id: HalfTileOverlayGreyscale180 @@ -3152,36 +2933,46 @@ entities: color: '#EFB3415D' id: HalfTileOverlayGreyscale180 decals: - 2494: -42,42 - - node: - color: '#EFB34196' - id: HalfTileOverlayGreyscale180 - decals: - 2719: -28,-60 - 2720: -27,-60 - 2721: -26,-60 + 2198: -42,42 - node: color: '#334E6DC8' id: HalfTileOverlayGreyscale270 decals: - 959: -2,63 - 960: -2,64 - 961: -2,65 - 962: -2,66 - 1558: -5,28 - 1561: -16,28 - 1570: -5,34 - 1571: -16,34 - 1635: -5,36 - 1636: -16,36 + 894: -2,63 + 895: -2,64 + 896: -2,65 + 897: -2,66 + 1415: -5,28 + 1418: -16,28 + 1427: -5,34 + 1428: -16,34 + 1492: -5,36 + 1493: -16,36 + 2968: -10,-31 + 2969: -10,-32 - node: color: '#52B4E996' id: HalfTileOverlayGreyscale270 decals: 524: -5,-4 525: -5,-3 - 3145: -26,-12 - 3146: -26,-9 + 2729: -26,-12 + 2730: -26,-9 + 2956: -6,-28 + 2957: -6,-29 + - node: + color: '#724276FF' + id: HalfTileOverlayGreyscale270 + decals: + 2820: 21,8 + 2821: 21,9 + 2828: 21,17 + - node: + color: '#9FED5896' + id: HalfTileOverlayGreyscale270 + decals: + 2966: -12,-28 + 2967: -12,-29 - node: color: '#A4610696' id: HalfTileOverlayGreyscale270 @@ -3194,24 +2985,26 @@ entities: 582: 11,-4 583: 11,-3 584: 11,-2 - 998: 27,0 - 999: 27,1 - 1000: 27,2 - - node: - color: '#D381C93B' - id: HalfTileOverlayGreyscale270 - decals: - 1346: 21,8 - 1347: 21,9 - 1369: 21,13 - 1370: 21,17 + 933: 27,0 + 934: 27,1 + 935: 27,2 + 2954: -10,-28 + 2955: -10,-29 - node: color: '#D381C996' id: HalfTileOverlayGreyscale270 decals: - 1867: 30,21 - 1868: 30,22 - 1869: 30,23 + 1724: 30,21 + 1725: 30,22 + 1726: 30,23 + 2952: -8,-28 + 2953: -8,-29 + - node: + color: '#D4D4D428' + id: HalfTileOverlayGreyscale270 + decals: + 2972: -12,-31 + 2973: -12,-32 - node: color: '#DE3A3A96' id: HalfTileOverlayGreyscale270 @@ -3251,6 +3044,8 @@ entities: 468: -20,-3 469: -20,-2 470: -20,-1 + 2950: -6,-31 + 2951: -6,-32 - node: color: '#EDD75E93' id: HalfTileOverlayGreyscale270 @@ -3266,25 +3061,26 @@ entities: 588: 9,-30 589: 9,-29 590: 9,-28 - 703: -10,-37 - 704: -10,-36 - 705: -10,-35 - 706: -10,-34 - 2702: -31,-60 + 2889: -14,-49 + 2890: -14,-50 + 2944: -8,-32 + 2945: -8,-31 - node: color: '#334E6DC8' id: HalfTileOverlayGreyscale90 decals: - 964: 0,66 - 965: 0,65 - 966: 0,64 - 967: 0,63 - 1559: -4,28 - 1560: -15,28 - 1569: -4,34 - 1572: -15,34 - 1637: -15,36 - 1638: -4,36 + 899: 0,66 + 900: 0,65 + 901: 0,64 + 902: 0,63 + 1416: -4,28 + 1417: -15,28 + 1426: -4,34 + 1429: -15,34 + 1494: -15,36 + 1495: -4,36 + 2970: -12,-31 + 2971: -12,-32 - node: color: '#52B4E996' id: HalfTileOverlayGreyscale90 @@ -3295,37 +3091,55 @@ entities: 547: -15,-7 548: -15,-6 549: -15,-5 - 3153: -18,-9 - 3154: -18,-12 + 2737: -18,-9 + 2738: -18,-12 + 2958: -8,-28 + 2959: -8,-29 + - node: + color: '#724276FF' + id: HalfTileOverlayGreyscale90 + decals: + 2822: 23,12 + 2823: 23,13 + 2824: 23,14 + 2825: 23,15 + 2826: 23,16 + 2827: 23,17 + 2849: 15,15 + 2850: 15,16 + 2851: 15,17 + 2852: 15,18 + - node: + color: '#9FED5896' + id: HalfTileOverlayGreyscale90 + decals: + 2807: -24,8 + 2964: -14,-28 + 2965: -14,-29 - node: color: '#A4610696' id: HalfTileOverlayGreyscale90 decals: 564: 5,-1 - 1149: 21,-4 + 1049: 21,-4 + 2962: -12,-28 + 2963: -12,-29 - node: cleanable: True color: '#A4610696' id: HalfTileOverlayGreyscale90 decals: - 1147: 21,-6 - 1148: 21,-5 - - node: - color: '#D381C93B' - id: HalfTileOverlayGreyscale90 - decals: - 1392: 23,17 - 1416: 15,15 - 1417: 15,16 - 1418: 15,17 - 1419: 15,18 + 1047: 21,-6 + 1048: 21,-5 - node: color: '#D381C996' id: HalfTileOverlayGreyscale90 decals: - 1870: 32,21 - 1871: 32,22 - 1872: 32,23 + 1727: 32,21 + 1728: 32,22 + 1729: 32,23 + 2960: -10,-28 + 2961: -10,-29 - node: color: '#DE3A3A96' id: HalfTileOverlayGreyscale90 @@ -3373,7 +3187,9 @@ entities: 465: -17,-3 466: -17,-2 467: -17,-1 - 2657: 14,21 + 2341: 14,21 + 2948: -8,-31 + 2949: -8,-32 - node: color: '#EDD75E93' id: HalfTileOverlayGreyscale90 @@ -3392,17 +3208,15 @@ entities: 591: 12,-30 592: 12,-29 593: 12,-28 - 707: -6,-37 - 708: -6,-36 - 709: -6,-35 - 710: -6,-34 - 2704: -30,-60 - 2705: -30,-59 + 2894: -8,-49 + 2895: -8,-50 + 2946: -10,-31 + 2947: -10,-32 - node: color: '#FFFFFFFF' id: HatchSmall decals: - 1610: -3,32 + 1467: -3,32 - node: angle: -3.141592653589793 rad color: '#FFFFFFFF' @@ -3414,9 +3228,9 @@ entities: color: '#FFFFFFFF' id: LoadingArea decals: - 1142: 16,-4 - 1237: 34,-7 - 2209: 3,-30 + 1042: 16,-4 + 1137: 34,-7 + 2066: 3,-30 - node: color: '#FFFFFFFF' id: LoadingArea @@ -3426,100 +3240,97 @@ entities: color: '#FFFFFFFF' id: MiniTileDarkLineE decals: - 1708: -57,-57 + 1565: -57,-57 - node: color: '#FFFFFFFF' id: MiniTileDarkLineS decals: - 1441: -27,38 - 1702: -65,-60 + 1298: -27,38 + 1559: -65,-60 - node: color: '#FFFFFFFF' id: MiniTileSteelLineE decals: - 1719: -69,-55 + 1576: -69,-55 - node: color: '#FFFFFFFF' id: MiniTileSteelLineW decals: - 1709: -56,-54 - - node: - color: '#EFB34196' - id: MiniTileWhiteLineE - decals: - 2380: -11,-41 + 1566: -56,-54 - node: color: '#FFFFFFFF' id: MiniTileWhiteLineE decals: - 1669: 25,26 + 1526: 25,26 - node: color: '#FFFFFFFF' id: MiniTileWhiteLineN decals: - 1442: -27,38 + 1299: -27,38 - node: color: '#FFFFFFFF' id: MiniTileWhiteLineS decals: - 1670: 26,32 - - node: - color: '#EFB34196' - id: MiniTileWhiteLineW - decals: - 2381: -5,-41 + 1527: 26,32 - node: color: '#D381C996' id: MonoOverlay decals: - 2542: 29,21 - 2543: 28,22 - 2544: 29,23 - 2545: 27,23 - 2546: 27,21 + 2241: 29,21 + 2242: 28,22 + 2243: 29,23 + 2244: 27,23 + 2245: 27,21 - node: color: '#334E6DC8' id: QuarterTileOverlayGreyscale decals: - 1557: -5,27 - 1563: -16,27 - 1566: -2,27 - 1644: -16,38 - 1645: -16,41 - 1646: -16,40 - 1647: -16,39 + 1414: -5,27 + 1420: -16,27 + 1423: -2,27 + 1501: -16,38 + 1502: -16,41 + 1503: -16,40 + 1504: -16,39 - node: color: '#52B4E996' id: QuarterTileOverlayGreyscale decals: 518: -8,-4 551: -15,-5 - 3168: -22,-12 - 3169: -22,-10 + 2752: -22,-12 + 2753: -22,-10 + - node: + color: '#724276FF' + id: QuarterTileOverlayGreyscale + decals: + 2830: 20,15 + 2831: 21,16 + 2836: 17,12 - node: color: '#79150096' id: QuarterTileOverlayGreyscale decals: - 826: -81,-45 - 827: -80,-45 - 828: -79,-45 - 829: -78,-45 - 830: -77,-45 - 831: -76,-45 - 2061: -52,13 - 2062: -53,13 - 2063: -54,13 - 2064: -55,13 - 2065: -56,13 - 2066: -56,21 - 2067: -55,21 - 2068: -54,21 - 2069: -53,21 - 2070: -52,21 - 2081: -51,13 - 2082: -51,14 - 2087: -51,22 - 2088: -51,21 + 761: -81,-45 + 762: -80,-45 + 763: -79,-45 + 764: -78,-45 + 765: -77,-45 + 766: -76,-45 + 1918: -52,13 + 1919: -53,13 + 1920: -54,13 + 1921: -55,13 + 1922: -56,13 + 1923: -56,21 + 1924: -55,21 + 1925: -54,21 + 1926: -53,21 + 1927: -52,21 + 1938: -51,13 + 1939: -51,14 + 1944: -51,22 + 1945: -51,21 - node: color: '#9FED5896' id: QuarterTileOverlayGreyscale @@ -3528,157 +3339,150 @@ entities: 17: -24,3 18: -28,3 19: -29,3 - 1105: -25,3 - 1116: -26,3 - 1117: -27,3 + 1016: -25,3 + 1017: -26,3 + 1018: -27,3 - node: color: '#A4610696' id: QuarterTileOverlayGreyscale decals: 562: 3,-2 585: 11,-9 - - node: - color: '#D381C93B' - id: QuarterTileOverlayGreyscale - decals: - 1345: 21,7 - 1372: 21,12 - 1373: 21,16 - node: color: '#D381C996' id: QuarterTileOverlayGreyscale decals: - 785: 8,7 - 786: 8,8 - 787: 8,9 - 788: 8,10 - 789: 8,11 - 790: 8,12 - 791: 8,13 - 792: 8,14 - 793: 8,15 - 794: 8,16 - 795: 8,17 - 796: 8,18 - 797: 8,19 - 798: 8,20 - 799: 8,21 - 800: 8,22 - 801: 8,23 + 720: 8,7 + 721: 8,8 + 722: 8,9 + 723: 8,10 + 724: 8,11 + 725: 8,12 + 726: 8,13 + 727: 8,14 + 728: 8,15 + 729: 8,16 + 730: 8,17 + 731: 8,18 + 732: 8,19 + 733: 8,20 + 734: 8,21 + 735: 8,22 + 736: 8,23 - node: color: '#D4D4D428' id: QuarterTileOverlayGreyscale decals: - 1965: -12,4 - 1966: -11,4 - 1967: -10,4 - 1968: -9,4 - 1969: -8,4 - 1970: -7,4 - 1971: -6,4 - 1990: -22,3 - 1991: -22,4 - 1992: -22,5 - 1993: -22,6 - 1994: -22,7 - 2015: -44,-3 - 2118: 11,-19 - 2119: 11,-18 - 2120: 11,-17 - 2121: 10,-19 - 2122: 9,-19 - 2123: 8,-19 - 2124: 7,-19 - 2125: 5,-19 - 2126: 6,-19 - 2127: 4,-19 - 2128: 3,-19 - 2129: 2,-19 - 2130: 1,-19 - 2131: 0,-19 - 2132: -1,-19 - 2133: -2,-19 - 2134: -3,-19 - 2135: -4,-19 - 2136: 11,-16 - 2137: 11,-15 - 2138: 11,-14 - 2162: -37,34 - 2163: -37,33 - 2164: -37,32 - 2165: -37,31 - 2166: -37,30 - 2167: -37,29 - 2168: -37,28 - 2169: -37,27 - 2170: -37,26 - 2171: -37,25 - 2172: -37,24 - 2173: -37,23 - 2174: -37,22 - 2175: -37,21 - 2176: -37,20 - 2177: -37,19 - 2178: -37,18 - 2179: -37,17 - 2180: -37,16 - 2181: -37,15 - 2182: -38,15 - 2570: 7,34 - 2578: 13,27 - 2579: 14,27 - 2580: 15,27 - 2581: 16,27 - 2582: 17,27 - 2583: 18,27 - 2584: 19,27 - 2585: 20,27 - 2586: 21,27 - 2587: 21,28 - 2588: 21,29 - 2589: 21,30 - 2590: 21,31 - 2601: 24,40 - 2602: 23,40 - 2603: 22,40 - 2604: 21,40 - 2605: 20,40 - 2606: 20,39 - 2607: 20,38 - 2608: 20,37 - 2609: 20,36 - 2610: 20,35 - 2611: 20,34 - 2612: 20,33 - 2799: 7,35 - 2800: 7,36 - 2803: -58,9 - 2804: -58,8 - 2805: -59,8 - 2806: -60,8 - 2825: -46,-3 - 2826: -46,-5 - 2827: -46,-4 - 2828: -46,-6 - 2829: -46,-7 - 2830: -46,-8 - 2831: -46,-9 - 2832: -47,-9 + 1822: -12,4 + 1823: -11,4 + 1824: -10,4 + 1825: -9,4 + 1826: -8,4 + 1827: -7,4 + 1828: -6,4 + 1847: -22,3 + 1848: -22,4 + 1849: -22,5 + 1850: -22,6 + 1851: -22,7 + 1872: -44,-3 + 1975: 11,-19 + 1976: 11,-18 + 1977: 11,-17 + 1978: 10,-19 + 1979: 9,-19 + 1980: 8,-19 + 1981: 7,-19 + 1982: 5,-19 + 1983: 6,-19 + 1984: 4,-19 + 1985: 3,-19 + 1986: 2,-19 + 1987: 1,-19 + 1988: 0,-19 + 1989: -1,-19 + 1990: -2,-19 + 1991: -3,-19 + 1992: -4,-19 + 1993: 11,-16 + 1994: 11,-15 + 1995: 11,-14 + 2019: -37,34 + 2020: -37,33 + 2021: -37,32 + 2022: -37,31 + 2023: -37,30 + 2024: -37,29 + 2025: -37,28 + 2026: -37,27 + 2027: -37,26 + 2028: -37,25 + 2029: -37,24 + 2030: -37,23 + 2031: -37,22 + 2032: -37,21 + 2033: -37,20 + 2034: -37,19 + 2035: -37,18 + 2036: -37,17 + 2037: -37,16 + 2038: -37,15 + 2039: -38,15 + 2266: 7,34 + 2274: 13,27 + 2275: 14,27 + 2276: 15,27 + 2277: 16,27 + 2278: 17,27 + 2279: 18,27 + 2280: 19,27 + 2281: 20,27 + 2282: 21,27 + 2283: 21,28 + 2284: 21,29 + 2285: 21,30 + 2286: 21,31 + 2297: 24,40 + 2298: 23,40 + 2299: 22,40 + 2300: 21,40 + 2301: 20,40 + 2302: 20,39 + 2303: 20,38 + 2304: 20,37 + 2305: 20,36 + 2306: 20,35 + 2307: 20,34 + 2308: 20,33 + 2389: 7,35 + 2390: 7,36 + 2393: -58,9 + 2394: -58,8 + 2395: -59,8 + 2396: -60,8 + 2415: -46,-3 + 2416: -46,-5 + 2417: -46,-4 + 2418: -46,-6 + 2419: -46,-7 + 2420: -46,-8 + 2421: -46,-9 + 2422: -47,-9 - node: color: '#D4D4D496' id: QuarterTileOverlayGreyscale decals: - 2019: -58,10 - 2020: -57,10 - 2021: -56,10 - 2022: -55,10 - 2023: -54,10 - 2024: -53,10 - 2025: -52,10 - 2026: -51,10 - 2027: -50,10 - 2028: -49,10 - 2029: -48,10 + 1876: -58,10 + 1877: -57,10 + 1878: -56,10 + 1879: -55,10 + 1880: -54,10 + 1881: -53,10 + 1882: -52,10 + 1883: -51,10 + 1884: -50,10 + 1885: -49,10 + 1886: -48,10 - node: color: '#DE3A3A96' id: QuarterTileOverlayGreyscale @@ -3691,7 +3495,7 @@ entities: 348: -37,37 430: 12,20 475: -17,-1 - 2517: -49,45 + 2221: -49,45 - node: color: '#EDD75E93' id: QuarterTileOverlayGreyscale @@ -3703,19 +3507,19 @@ entities: color: '#EFB34196' id: QuarterTileOverlayGreyscale decals: - 638: -4,-2 - 639: -4,-5 - 1120: 2,-28 - 1121: 1,-28 - 1122: 0,-28 - 1123: -1,-28 + 631: -4,-2 + 632: -4,-5 + 1020: 2,-28 + 1021: 1,-28 + 1022: 0,-28 + 1023: -1,-28 - node: color: '#334E6DC8' id: QuarterTileOverlayGreyscale180 decals: - 2796: 11,38 - 2797: 12,38 - 2798: 12,39 + 2386: 11,38 + 2387: 12,38 + 2388: 12,39 - node: color: '#52B4E996' id: QuarterTileOverlayGreyscale180 @@ -3741,35 +3545,35 @@ entities: 544: -27,1 545: -26,1 546: -25,1 - 3072: -29,-14 - 3073: -28,-14 - 3074: -28,-13 - 3075: -28,-12 - 3172: -23,-11 - 3173: -23,-9 + 2656: -29,-14 + 2657: -28,-14 + 2658: -28,-13 + 2659: -28,-12 + 2756: -23,-11 + 2757: -23,-9 - node: color: '#79150096' id: QuarterTileOverlayGreyscale180 decals: - 2071: -56,23 - 2072: -54,23 - 2073: -55,23 - 2074: -52,23 - 2075: -53,23 - 2076: -56,15 - 2077: -55,15 - 2078: -54,15 - 2079: -53,15 - 2080: -52,15 - 2083: -57,14 - 2084: -57,15 - 2085: -57,22 - 2086: -57,23 + 1928: -56,23 + 1929: -54,23 + 1930: -55,23 + 1931: -52,23 + 1932: -53,23 + 1933: -56,15 + 1934: -55,15 + 1935: -54,15 + 1936: -53,15 + 1937: -52,15 + 1940: -57,14 + 1941: -57,15 + 1942: -57,22 + 1943: -57,23 - node: color: '#9FED5896' id: QuarterTileOverlayGreyscale180 decals: - 2781: -23,9 + 2809: -24,9 - node: color: '#A4610696' id: QuarterTileOverlayGreyscale180 @@ -3780,117 +3584,117 @@ entities: 575: 16,-8 576: 15,-8 577: 14,-8 - 802: 13,0 - 803: 13,1 - 804: 13,2 - 805: 13,3 - 806: 13,4 - 2640: 5,1 + 737: 13,0 + 738: 13,1 + 739: 13,2 + 740: 13,3 + 741: 13,4 + 2336: 5,1 - node: color: '#D381C996' id: QuarterTileOverlayGreyscale180 decals: - 1292: 39,7 - 1293: 38,7 - 1294: 37,7 - 1295: 36,7 - 1296: 35,7 - 1297: 40,8 - 1298: 40,9 - 1299: 40,10 + 1192: 39,7 + 1193: 38,7 + 1194: 37,7 + 1195: 36,7 + 1196: 35,7 + 1197: 40,8 + 1198: 40,9 + 1199: 40,10 - node: color: '#D4D4D428' id: QuarterTileOverlayGreyscale180 decals: - 1904: 10,24 - 1905: 10,25 - 1906: 11,25 - 1909: -11,25 - 1910: -12,25 - 1911: -13,25 - 1912: -14,25 - 1913: -15,25 - 1914: -16,25 - 1915: -17,25 - 1916: -18,25 - 1917: -19,25 - 1918: -20,25 - 1919: -21,25 - 1920: -22,25 - 1921: -23,25 - 1922: -24,25 - 1923: -25,25 - 1924: -26,25 - 1925: -27,25 - 1926: -28,25 - 1927: -29,25 - 1928: -30,25 - 1929: -31,25 - 1930: -32,25 - 1931: -33,25 - 1932: -34,25 - 1933: -35,25 - 1934: -35,24 - 1935: -35,23 - 1936: -35,22 - 1937: -35,21 - 1938: -35,20 - 1939: -35,19 - 1940: -35,18 - 1941: -35,17 - 1942: -35,16 - 1943: -35,15 - 1944: -35,14 - 1945: -35,12 - 1946: -35,13 - 1947: -35,11 - 1948: -35,10 - 1949: -35,9 - 1950: -35,7 - 1951: -35,8 - 1952: -35,6 - 1953: -35,5 - 2002: -40,5 - 2003: -41,5 - 2004: -42,5 - 2005: -43,5 - 2006: -44,5 - 2007: -45,4 - 2008: -45,3 - 2009: -45,2 - 2010: -45,1 - 2011: -45,0 - 2012: -45,-1 - 2013: -45,-2 - 2105: -47,13 - 2106: -46,13 - 2107: -45,13 - 2108: -44,13 - 2109: -43,13 - 2110: -42,13 - 2111: -40,13 - 2112: -41,13 - 2468: -28,1 - 2469: -29,1 - 2470: -30,1 - 2471: -31,1 - 2472: -32,1 - 2473: -33,1 - 2613: 24,33 - 2614: 25,33 - 2615: 26,33 - 2616: 27,33 - 2617: 27,34 - 2618: 27,35 - 2619: 33,35 - 2620: 32,35 - 2621: 31,35 - 2622: 30,35 - 2623: 29,35 - 2816: -54,7 - 2817: -55,7 - 2818: -55,6 - 2819: -56,6 + 1761: 10,24 + 1762: 10,25 + 1763: 11,25 + 1766: -11,25 + 1767: -12,25 + 1768: -13,25 + 1769: -14,25 + 1770: -15,25 + 1771: -16,25 + 1772: -17,25 + 1773: -18,25 + 1774: -19,25 + 1775: -20,25 + 1776: -21,25 + 1777: -22,25 + 1778: -23,25 + 1779: -24,25 + 1780: -25,25 + 1781: -26,25 + 1782: -27,25 + 1783: -28,25 + 1784: -29,25 + 1785: -30,25 + 1786: -31,25 + 1787: -32,25 + 1788: -33,25 + 1789: -34,25 + 1790: -35,25 + 1791: -35,24 + 1792: -35,23 + 1793: -35,22 + 1794: -35,21 + 1795: -35,20 + 1796: -35,19 + 1797: -35,18 + 1798: -35,17 + 1799: -35,16 + 1800: -35,15 + 1801: -35,14 + 1802: -35,12 + 1803: -35,13 + 1804: -35,11 + 1805: -35,10 + 1806: -35,9 + 1807: -35,7 + 1808: -35,8 + 1809: -35,6 + 1810: -35,5 + 1859: -40,5 + 1860: -41,5 + 1861: -42,5 + 1862: -43,5 + 1863: -44,5 + 1864: -45,4 + 1865: -45,3 + 1866: -45,2 + 1867: -45,1 + 1868: -45,0 + 1869: -45,-1 + 1870: -45,-2 + 1962: -47,13 + 1963: -46,13 + 1964: -45,13 + 1965: -44,13 + 1966: -43,13 + 1967: -42,13 + 1968: -40,13 + 1969: -41,13 + 2172: -28,1 + 2173: -29,1 + 2174: -30,1 + 2175: -31,1 + 2176: -32,1 + 2177: -33,1 + 2309: 24,33 + 2310: 25,33 + 2311: 26,33 + 2312: 27,33 + 2313: 27,34 + 2314: 27,35 + 2315: 33,35 + 2316: 32,35 + 2317: 31,35 + 2318: 30,35 + 2319: 29,35 + 2406: -54,7 + 2407: -55,7 + 2408: -55,6 + 2409: -56,6 - node: color: '#DE3A3A96' id: QuarterTileOverlayGreyscale180 @@ -3922,35 +3726,31 @@ entities: 622: 3,-31 623: 3,-30 624: 3,-29 - 838: -81,-44 - 839: -80,-44 - 840: -79,-44 - 841: -78,-44 - 842: -77,-44 - 1124: -1,-21 - 1125: 0,-21 - 1126: 1,-21 - 1127: 3,-21 - 1128: 4,-21 - 1134: 2,-21 - 2327: -12,-36 - 2328: -12,-35 - 2329: -12,-34 - 2330: -12,-33 + 773: -81,-44 + 774: -80,-44 + 775: -79,-44 + 776: -78,-44 + 777: -77,-44 + 1024: -1,-21 + 1025: 0,-21 + 1026: 1,-21 + 1027: 3,-21 + 1028: 4,-21 + 1034: 2,-21 - node: color: '#334E6DC8' id: QuarterTileOverlayGreyscale270 decals: - 1954: -4,25 - 1955: -3,25 - 1956: -2,25 - 1957: -1,25 - 1958: 0,25 - 2791: 4,39 - 2792: 4,38 - 2793: 5,38 - 2794: 6,38 - 2795: 7,38 + 1811: -4,25 + 1812: -3,25 + 1813: -2,25 + 1814: -1,25 + 1815: 0,25 + 2381: 4,39 + 2382: 4,38 + 2383: 5,38 + 2384: 6,38 + 2385: 7,38 - node: color: '#52B4E996' id: QuarterTileOverlayGreyscale270 @@ -3966,121 +3766,121 @@ entities: 507: -13,-7 515: -6,-5 523: -10,-2 - 3076: -31,-14 - 3077: -32,-14 - 3078: -33,-14 - 3079: -34,-14 - 3080: -35,-14 - 3081: -35,-13 - 3164: -20,-11 - 3167: -20,-9 - 3178: -24,-11 - 3179: -24,-9 + 2660: -31,-14 + 2661: -32,-14 + 2662: -33,-14 + 2663: -34,-14 + 2664: -35,-14 + 2665: -35,-13 + 2748: -20,-11 + 2751: -20,-9 + 2762: -24,-11 + 2763: -24,-9 + - node: + color: '#724276FF' + id: QuarterTileOverlayGreyscale270 + decals: + 2832: 21,10 + 2837: 17,14 - node: color: '#79150096' id: QuarterTileOverlayGreyscale270 decals: - 832: -81,-47 - 833: -80,-47 - 834: -79,-47 - 835: -78,-47 - 836: -77,-47 - 837: -76,-47 + 767: -81,-47 + 768: -80,-47 + 769: -79,-47 + 770: -78,-47 + 771: -77,-47 + 772: -76,-47 - node: color: '#A4610696' id: QuarterTileOverlayGreyscale270 decals: 567: 3,0 586: 11,0 - 1164: 32,-12 - 2636: 8,1 - 2637: 9,1 - 2638: 10,1 - 2639: 11,1 - - node: - color: '#D381C93B' - id: QuarterTileOverlayGreyscale270 - decals: - 1348: 21,10 - 1371: 21,14 + 1064: 32,-12 + 2332: 8,1 + 2333: 9,1 + 2334: 10,1 + 2335: 11,1 - node: color: '#D381C996' id: QuarterTileOverlayGreyscale270 decals: - 1337: 25,7 - 1338: 26,7 - 1339: 27,7 - 1340: 28,7 - 1341: 29,7 - 1411: 24,7 + 1237: 25,7 + 1238: 26,7 + 1239: 27,7 + 1240: 28,7 + 1241: 29,7 + 1277: 24,7 - node: color: '#D4D4D428' id: QuarterTileOverlayGreyscale270 decals: - 1895: -9,25 - 1896: -8,25 - 1897: -7,25 - 1898: -6,25 - 1899: -5,25 - 1900: 1,25 - 1901: 2,25 - 1902: 8,25 - 1903: 8,24 - 1907: 6,25 - 1908: 7,25 - 1962: 8,6 - 1963: 8,5 - 1964: 8,4 - 1995: -37,1 - 1996: -37,2 - 1997: -37,3 - 1998: -37,4 - 1999: -37,5 - 2000: -38,5 - 2001: -39,5 - 2139: 11,-12 - 2140: 10,-12 - 2141: 9,-12 - 2142: 8,-12 - 2722: -46,4 - 2723: -46,3 - 2724: -46,2 - 2725: -46,1 - 2726: -46,0 - 2727: -46,-1 - 2728: -46,-2 - 2807: -46,5 - 2808: -47,5 - 2809: -48,5 - 2810: -49,5 - 2811: -51,5 - 2812: -50,5 - 2813: -51,6 - 2814: -51,7 - 2815: -52,7 - 2820: -57,6 - 2821: -58,6 - 2822: -58,7 - 2823: -59,7 - 2824: -60,7 + 1752: -9,25 + 1753: -8,25 + 1754: -7,25 + 1755: -6,25 + 1756: -5,25 + 1757: 1,25 + 1758: 2,25 + 1759: 8,25 + 1760: 8,24 + 1764: 6,25 + 1765: 7,25 + 1819: 8,6 + 1820: 8,5 + 1821: 8,4 + 1852: -37,1 + 1853: -37,2 + 1854: -37,3 + 1855: -37,4 + 1856: -37,5 + 1857: -38,5 + 1858: -39,5 + 1996: 11,-12 + 1997: 10,-12 + 1998: 9,-12 + 1999: 8,-12 + 2350: -46,4 + 2351: -46,3 + 2352: -46,2 + 2353: -46,1 + 2354: -46,0 + 2355: -46,-1 + 2356: -46,-2 + 2397: -46,5 + 2398: -47,5 + 2399: -48,5 + 2400: -49,5 + 2401: -51,5 + 2402: -50,5 + 2403: -51,6 + 2404: -51,7 + 2405: -52,7 + 2410: -57,6 + 2411: -58,6 + 2412: -58,7 + 2413: -59,7 + 2414: -60,7 - node: color: '#D4D4D496' id: QuarterTileOverlayGreyscale270 decals: - 2041: -56,15 - 2042: -55,15 - 2043: -54,15 - 2044: -52,15 - 2045: -53,15 - 2046: -52,23 - 2047: -53,23 - 2048: -54,23 - 2049: -55,23 - 2050: -56,23 - 2089: -51,23 - 2090: -51,22 - 2091: -51,15 - 2092: -51,14 + 1898: -56,15 + 1899: -55,15 + 1900: -54,15 + 1901: -52,15 + 1902: -53,15 + 1903: -52,23 + 1904: -53,23 + 1905: -54,23 + 1906: -55,23 + 1907: -56,23 + 1946: -51,23 + 1947: -51,22 + 1948: -51,15 + 1949: -51,14 - node: color: '#DE3A3A96' id: QuarterTileOverlayGreyscale270 @@ -4133,52 +3933,47 @@ entities: 618: -2,-31 619: -1,-31 620: 0,-31 - 1129: 8,-21 - 1130: 9,-21 - 1131: 11,-21 - 1132: 12,-21 - 1133: 13,-21 - 1959: 5,25 - 1960: 4,25 - 1961: 3,25 - 2323: -14,-36 - 2324: -14,-35 - 2325: -14,-34 - 2326: -14,-33 - 2709: -31,-59 + 1029: 8,-21 + 1030: 9,-21 + 1031: 11,-21 + 1032: 12,-21 + 1033: 13,-21 + 1816: 5,25 + 1817: 4,25 + 1818: 3,25 - node: color: '#334E6DC8' id: QuarterTileOverlayGreyscale90 decals: - 1562: -15,27 - 1564: -4,27 - 1568: -18,27 - 1639: -4,37 - 1640: -4,38 - 1641: -4,39 - 1642: -4,40 - 1643: -4,41 - 1650: -19,27 - 1651: -20,27 - 1652: -21,27 - 1653: -22,27 - 1654: -23,27 - 1655: -24,27 + 1419: -15,27 + 1421: -4,27 + 1425: -18,27 + 1496: -4,37 + 1497: -4,38 + 1498: -4,39 + 1499: -4,40 + 1500: -4,41 + 1507: -19,27 + 1508: -20,27 + 1509: -21,27 + 1510: -22,27 + 1511: -23,27 + 1512: -24,27 - node: color: '#52B4E957' id: QuarterTileOverlayGreyscale90 decals: - 2030: -58,10 - 2031: -57,10 - 2032: -56,10 - 2033: -55,10 - 2034: -54,10 - 2035: -53,10 - 2036: -52,10 - 2037: -51,10 - 2038: -50,10 - 2039: -49,10 - 2040: -48,10 + 1887: -58,10 + 1888: -57,10 + 1889: -56,10 + 1890: -55,10 + 1891: -54,10 + 1892: -53,10 + 1893: -52,10 + 1894: -51,10 + 1895: -50,10 + 1896: -49,10 + 1897: -48,10 - node: color: '#52B4E996' id: QuarterTileOverlayGreyscale90 @@ -4186,10 +3981,16 @@ entities: 497: -9,-2 517: -9,-4 522: -11,-3 - 3163: -21,-12 - 3166: -21,-10 - 3176: -25,-10 - 3177: -25,-12 + 2747: -21,-12 + 2750: -21,-10 + 2760: -25,-10 + 2761: -25,-12 + - node: + color: '#724276FF' + id: QuarterTileOverlayGreyscale90 + decals: + 2833: 18,15 + 2834: 23,11 - node: color: '#A4610696' id: QuarterTileOverlayGreyscale90 @@ -4199,140 +4000,135 @@ entities: 571: 16,-2 572: 15,-2 573: 14,-2 - - node: - color: '#D381C93B' - id: QuarterTileOverlayGreyscale90 - decals: - 1393: 23,16 - node: color: '#D381C996' id: QuarterTileOverlayGreyscale90 decals: - 771: 10,23 - 772: 10,22 - 773: 10,21 - 774: 10,20 - 775: 10,19 - 776: 10,18 - 777: 10,14 - 778: 10,13 - 779: 10,12 - 780: 10,11 - 781: 10,10 - 782: 10,9 - 783: 10,8 - 784: 10,7 + 706: 10,23 + 707: 10,22 + 708: 10,21 + 709: 10,20 + 710: 10,19 + 711: 10,18 + 712: 10,14 + 713: 10,13 + 714: 10,12 + 715: 10,11 + 716: 10,10 + 717: 10,9 + 718: 10,8 + 719: 10,7 - node: color: '#D4D4D428' id: QuarterTileOverlayGreyscale90 decals: - 1972: 0,4 - 1973: 1,4 - 1974: 2,4 - 1975: 4,4 - 1976: 3,4 - 1977: 5,4 - 1978: 6,4 - 1979: -14,3 - 1980: -15,3 - 1981: -16,3 - 1982: -17,3 - 1983: -18,3 - 1984: -19,3 - 1985: -20,3 - 1986: -20,4 - 1987: -20,5 - 1988: -20,6 - 1989: -20,7 - 2014: -45,-3 - 2016: -44,-3 - 2017: -44,-4 - 2018: -44,-5 - 2097: -47,15 - 2098: -46,15 - 2099: -45,15 - 2100: -44,15 - 2101: -43,15 - 2102: -42,15 - 2103: -41,15 - 2104: -40,15 - 2143: 9,-3 - 2144: 9,-4 - 2145: 9,-5 - 2146: 9,-6 - 2147: 9,-7 - 2148: 9,-8 - 2149: 9,-9 - 2150: 9,-10 - 2151: 10,-10 - 2152: -33,27 - 2153: -34,27 - 2154: -35,27 - 2155: -35,28 - 2156: -35,29 - 2157: -35,30 - 2158: -35,31 - 2159: -35,32 - 2160: -35,33 - 2161: -35,34 - 2432: 10,6 - 2433: 10,5 - 2434: 10,4 - 2435: 11,4 - 2436: 12,4 - 2437: 13,4 - 2438: -40,7 - 2439: -41,7 - 2440: -42,7 - 2441: -43,7 - 2442: -44,7 - 2443: -45,7 - 2444: -45,8 - 2445: -46,8 - 2446: -47,8 - 2571: 11,35 - 2572: 11,34 - 2573: 11,33 - 2574: 11,32 - 2575: 11,31 - 2576: 11,30 - 2577: 11,29 - 2591: 24,27 - 2592: 23,27 - 2593: 23,28 - 2594: 23,29 - 2595: 23,30 - 2596: 23,31 - 2597: 27,40 - 2598: 27,38 - 2599: 27,39 - 2600: 26,40 - 2624: 33,38 - 2625: 32,38 - 2626: 31,38 - 2627: 30,38 - 2628: 29,38 - 2801: 11,36 - 2847: -44,-7 - 2848: -44,-8 + 1829: 0,4 + 1830: 1,4 + 1831: 2,4 + 1832: 4,4 + 1833: 3,4 + 1834: 5,4 + 1835: 6,4 + 1836: -14,3 + 1837: -15,3 + 1838: -16,3 + 1839: -17,3 + 1840: -18,3 + 1841: -19,3 + 1842: -20,3 + 1843: -20,4 + 1844: -20,5 + 1845: -20,6 + 1846: -20,7 + 1871: -45,-3 + 1873: -44,-3 + 1874: -44,-4 + 1875: -44,-5 + 1954: -47,15 + 1955: -46,15 + 1956: -45,15 + 1957: -44,15 + 1958: -43,15 + 1959: -42,15 + 1960: -41,15 + 1961: -40,15 + 2000: 9,-3 + 2001: 9,-4 + 2002: 9,-5 + 2003: 9,-6 + 2004: 9,-7 + 2005: 9,-8 + 2006: 9,-9 + 2007: 9,-10 + 2008: 10,-10 + 2009: -33,27 + 2010: -34,27 + 2011: -35,27 + 2012: -35,28 + 2013: -35,29 + 2014: -35,30 + 2015: -35,31 + 2016: -35,32 + 2017: -35,33 + 2018: -35,34 + 2136: 10,6 + 2137: 10,5 + 2138: 10,4 + 2139: 11,4 + 2140: 12,4 + 2141: 13,4 + 2142: -40,7 + 2143: -41,7 + 2144: -42,7 + 2145: -43,7 + 2146: -44,7 + 2147: -45,7 + 2148: -45,8 + 2149: -46,8 + 2150: -47,8 + 2267: 11,35 + 2268: 11,34 + 2269: 11,33 + 2270: 11,32 + 2271: 11,31 + 2272: 11,30 + 2273: 11,29 + 2287: 24,27 + 2288: 23,27 + 2289: 23,28 + 2290: 23,29 + 2291: 23,30 + 2292: 23,31 + 2293: 27,40 + 2294: 27,38 + 2295: 27,39 + 2296: 26,40 + 2320: 33,38 + 2321: 32,38 + 2322: 31,38 + 2323: 30,38 + 2324: 29,38 + 2391: 11,36 + 2431: -44,-7 + 2432: -44,-8 - node: color: '#D4D4D496' id: QuarterTileOverlayGreyscale90 decals: - 2051: -52,21 - 2052: -53,21 - 2053: -54,21 - 2054: -55,21 - 2055: -56,21 - 2056: -56,13 - 2057: -55,13 - 2058: -54,13 - 2059: -53,13 - 2060: -52,13 - 2093: -57,13 - 2094: -57,14 - 2095: -57,21 - 2096: -57,22 + 1908: -52,21 + 1909: -53,21 + 1910: -54,21 + 1911: -55,21 + 1912: -56,21 + 1913: -56,13 + 1914: -55,13 + 1915: -54,13 + 1916: -53,13 + 1917: -52,13 + 1950: -57,13 + 1951: -57,14 + 1952: -57,21 + 1953: -57,22 - node: color: '#DE3A3A96' id: QuarterTileOverlayGreyscale90 @@ -4367,236 +4163,215 @@ entities: color: '#EFB34196' id: QuarterTileOverlayGreyscale90 decals: - 640: -2,-5 - 641: -2,-2 - 843: -81,-48 - 844: -80,-48 - 845: -79,-48 - 846: -78,-48 - 847: -77,-48 - - node: - color: '#FFFFFFFF' - id: Rock01 - decals: - 1106: -26.720001,4.0298495 + 633: -2,-5 + 634: -2,-2 + 778: -81,-48 + 779: -80,-48 + 780: -79,-48 + 781: -78,-48 + 782: -77,-48 - node: cleanable: True color: '#FFFFFFFF' id: Rust decals: - 917: -24,-36 - 918: -22,-38 - 919: -22,-38 - 920: -26,-37 - 921: -28,-37 - 922: -28,-37 + 852: -24,-36 + 853: -22,-38 + 854: -22,-38 + 855: -26,-37 + 856: -28,-37 + 857: -28,-37 + - node: + angle: -1.5707963267948966 rad + color: '#FFFFFFFF' + id: StandClear + decals: + 2867: 14,-19 - node: color: '#FFFFFFFF' id: StandClear decals: 389: 10,42 - 655: -10,-45 - 656: -6,-45 - 1037: 5,41 - 1386: 22,25 - 1387: 22,23 + 957: 5,41 + 1254: 22,25 + 1255: 22,23 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' id: StandClear decals: - 3190: -53,36 - - node: - color: '#334E6DC8' - id: ThreeQuarterTileOverlayGreyscale - decals: - 2714: -32,-63 + 2773: -53,36 - node: color: '#52B4E996' id: ThreeQuarterTileOverlayGreyscale decals: - 3136: -26,-8 - 3162: -20,-12 - 3165: -20,-10 - 3174: -24,-12 - 3175: -24,-10 + 2720: -26,-8 + 2746: -20,-12 + 2749: -20,-10 + 2758: -24,-12 + 2759: -24,-10 - node: color: '#EFB34196' id: ThreeQuarterTileOverlayGreyscale decals: - 2706: -32,-58 - - node: - color: '#334E6DC8' - id: ThreeQuarterTileOverlayGreyscale180 - decals: - 2712: -30,-64 + 2887: -14,-48 - node: color: '#52B4E996' id: ThreeQuarterTileOverlayGreyscale180 decals: - 3138: -18,-13 + 2722: -18,-13 - node: - color: '#D381C93B' + color: '#724276FF' id: ThreeQuarterTileOverlayGreyscale180 decals: - 1415: 15,14 + 2845: 15,14 - node: color: '#D381C996' id: ThreeQuarterTileOverlayGreyscale180 decals: - 1291: 40,7 - - node: - color: '#EFB34196' - id: ThreeQuarterTileOverlayGreyscale180 - decals: - 2711: -30,-61 - - node: - color: '#334E6DC8' - id: ThreeQuarterTileOverlayGreyscale270 - decals: - 2715: -32,-64 + 1191: 40,7 - node: color: '#52B4E996' id: ThreeQuarterTileOverlayGreyscale270 decals: - 3137: -26,-13 - 3170: -22,-9 - 3171: -22,-11 + 2721: -26,-13 + 2754: -22,-9 + 2755: -22,-11 - node: - color: '#EFB34196' + color: '#724276FF' id: ThreeQuarterTileOverlayGreyscale270 decals: - 2708: -32,-59 - 2710: -31,-61 - - node: - color: '#334E6DC8' - id: ThreeQuarterTileOverlayGreyscale90 - decals: - 2713: -30,-63 + 2835: 21,7 + 2844: 17,13 - node: color: '#52B4E996' id: ThreeQuarterTileOverlayGreyscale90 decals: - 3135: -18,-8 + 2719: -18,-8 - node: color: '#EFB34196' id: ThreeQuarterTileOverlayGreyscale90 decals: - 2707: -30,-58 + 2888: -8,-48 - node: color: '#FFFFFFFF' id: VentSmall decals: - 1462: -27,39 - 1582: -1,34 - 1671: 34,30 - 1672: 33,30 - 1844: -14,40 - - node: - color: '#FFFFFFFF' - id: WarnBox - decals: - 2667: -19,-48 + 1319: -27,39 + 1439: -1,34 + 1528: 34,30 + 1529: 33,30 + 1701: -14,40 - node: angle: -3.141592653589793 rad color: '#FFFFFFFF' id: WarnCorner decals: - 1140: -40,60 + 1040: -40,60 - node: angle: -1.5707963267948966 rad color: '#FFFFFFFF' id: WarnCorner decals: 463: -6,-12 - 970: 2,64 + 905: 2,64 - node: color: '#FFFFFFFF' id: WarnCorner decals: - 1137: -42,58 + 1037: -42,58 - node: angle: -3.141592653589793 rad color: '#FFFFFFFF' id: WarnCornerFlipped decals: - 1139: -42,60 + 1039: -42,60 - node: color: '#FFFFFFFF' id: WarnCornerFlipped decals: - 1138: -40,58 + 1038: -40,58 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' id: WarnCornerFlipped decals: - 973: -4,64 + 908: -4,64 - node: color: '#FFFFFFFF' id: WarnCornerGreyscaleSE decals: - 3065: -31,-11 + 2649: -31,-11 - node: color: '#FFFFFFFF' id: WarnCornerGreyscaleSW decals: - 3069: -35,-11 + 2653: -35,-11 - node: color: '#FFFFFFFF' id: WarnCornerNE decals: - 2222: 2,-33 + 2072: 2,-33 + 2876: -8,-51 + 3001: -17,-53 - node: color: '#FFFFFFFF' id: WarnCornerNW decals: - 2221: 0,-33 + 2071: 0,-33 + 2878: -14,-51 + 3000: -19,-53 - node: color: '#FFFFFFFF' id: WarnCornerSE decals: - 1876: 5,21 - 2220: 2,-35 + 1733: 5,21 + 2070: 2,-35 + 2810: 13,12 + 2877: -8,-53 + 2902: -5,-52 + 3003: -17,-56 - node: color: '#FFFFFFFF' id: WarnCornerSW decals: - 1875: 3,21 - 2219: 0,-35 + 1732: 3,21 + 2069: 0,-35 + 2879: -14,-53 + 3002: -19,-56 - node: color: '#FFFFFFFF' id: WarnCornerSmallNE decals: - 2213: -10,-36 - 2756: -10,-52 + 2863: 14,-20 + 2864: 14,-19 + 2933: -3,-52 - node: color: '#FFFFFFFF' id: WarnCornerSmallNW decals: - 1275: 21,-19 - 1834: -58,19 - 2212: -6,-36 - 2755: -6,-52 + 1175: 21,-19 + 1691: -58,19 + 2934: 1,-52 - node: color: '#FFFFFFFF' id: WarnCornerSmallSE decals: - 1277: 20,-19 - 1877: 5,22 - 2383: -10,-34 - 2754: -10,-50 + 1177: 20,-19 + 1734: 5,22 + 2865: 14,-18 + 2866: 14,-19 + 2931: -3,-50 - node: color: '#FFFFFFFF' id: WarnCornerSmallSW decals: - 1274: 21,-16 - 1276: 19,-19 - 1282: 22,-19 - 1833: -58,17 - 1878: 3,22 - 2382: -6,-34 - 2757: -6,-50 + 1174: 21,-16 + 1176: 19,-19 + 1182: 22,-19 + 1690: -58,17 + 1735: 3,22 + 2932: 1,-50 - node: angle: -3.141592653589793 rad color: '#FFFFFFFF' @@ -4612,290 +4387,304 @@ entities: color: '#52B4E996' id: WarnFullGreyscale decals: - 2478: -35,-1 - 2956: -24,-17 - 2957: -24,-23 - 2958: -20,-16 - 2959: -16,-16 - 3023: -14,-18 - 3024: -14,-14 - 3060: -28,-23 - 3061: -28,-17 - 3062: -32,-18 - 3106: -17,-11 - 3107: -17,-10 - 3111: -22,-14 - 3112: -27,-10 - 3113: -27,-11 + 2182: -35,-1 + 2540: -24,-17 + 2541: -24,-23 + 2542: -20,-16 + 2543: -16,-16 + 2607: -14,-18 + 2608: -14,-14 + 2644: -28,-23 + 2645: -28,-17 + 2646: -32,-18 + 2690: -17,-11 + 2691: -17,-10 + 2695: -22,-14 + 2696: -27,-10 + 2697: -27,-11 - node: color: '#D381C996' id: WarnFullGreyscale decals: - 2560: 30,7 - 2561: 30,8 + 2256: 30,7 + 2257: 30,8 - node: color: '#DE3A3A96' id: WarnFullGreyscale decals: - 2513: -33,45 - 2516: -40,45 - - node: - color: '#FFFFFFFF' - id: WarnFullGreyscale - decals: - 2282: -21,-43 - 2283: -21,-42 - 2285: -18,-46 - 2286: -19,-38 + 2217: -33,45 + 2220: -40,45 - node: color: '#FFFFFFFF' id: WarnLineE decals: - 1278: 20,-20 - 1289: 38,9 - 1290: 38,10 - 1309: 20,18 - 1310: 20,19 - 1317: 21,20 - 1318: 21,21 - 2211: -10,-35 - 2223: 2,-34 - 2431: -2,-1 - 2752: -10,-51 + 1178: 20,-20 + 1189: 38,9 + 1190: 38,10 + 1209: 20,18 + 1210: 20,19 + 1217: 21,20 + 1218: 21,21 + 2073: 2,-34 + 2135: -2,-1 + 2881: -8,-52 + 2903: -5,-51 + 2904: -5,-50 + 2905: -5,-49 + 2906: -5,-48 + 2925: -3,-51 + 3005: -17,-54 + 3006: -17,-55 - node: color: '#334E6DC8' id: WarnLineGreyscaleE decals: - 2634: -19,39 + 2330: -19,39 - node: color: '#52B4E996' id: WarnLineGreyscaleE decals: - 2945: -21,-16 - 3057: -29,-23 - 3058: -29,-17 - 3103: -12,-11 - 3108: -18,-11 - 3109: -18,-10 - 3116: -28,-11 - 3117: -28,-10 + 2529: -21,-16 + 2641: -29,-23 + 2642: -29,-17 + 2687: -12,-11 + 2692: -18,-11 + 2693: -18,-10 + 2700: -28,-11 + 2701: -28,-10 - node: color: '#D381C996' id: WarnLineGreyscaleE decals: - 2563: 33,8 + 2259: 33,8 - node: color: '#FFFFFFFF' id: WarnLineGreyscaleE decals: - 2280: -22,-43 - 2281: -22,-42 - 3066: -31,-10 + 2650: -31,-10 - node: color: '#334E6DC8' id: WarnLineGreyscaleN decals: - 2635: -20,40 + 2331: -20,40 - node: color: '#52B4E996' id: WarnLineGreyscaleN decals: - 2954: -22,-15 - 3022: -14,-19 - 3025: -14,-15 + 2538: -22,-15 + 2606: -14,-19 + 2609: -14,-15 - node: color: '#D381C996' id: WarnLineGreyscaleN decals: - 2564: 32,9 + 2260: 32,9 - node: color: '#DE3A3A96' id: WarnLineGreyscaleN decals: - 2511: -33,44 - 2512: -40,44 - - node: - color: '#FFFFFFFF' - id: WarnLineGreyscaleN - decals: - 2279: -19,-39 - 2299: -13,-39 + 2215: -33,44 + 2216: -40,44 - node: color: '#52B4E996' id: WarnLineGreyscaleS decals: - 2477: -35,0 - 2955: -22,-24 - 3020: -18,-23 - 3021: -14,-17 - 3102: -14,-13 - 3110: -22,-13 + 2181: -35,0 + 2539: -22,-24 + 2604: -18,-23 + 2605: -14,-17 + 2686: -14,-13 + 2694: -22,-13 - node: color: '#D381C996' id: WarnLineGreyscaleS decals: - 2562: 32,7 + 2258: 32,7 - node: color: '#DE3A3A96' id: WarnLineGreyscaleS decals: - 2508: -32,42 - 2509: -35,42 - 2510: -37,42 - 2514: -33,46 - 2515: -40,46 - 2518: -47,45 - 2519: -48,45 - 2520: -49,45 + 2212: -32,42 + 2213: -35,42 + 2214: -37,42 + 2218: -33,46 + 2219: -40,46 + 2222: -47,45 + 2223: -48,45 + 2224: -49,45 - node: color: '#EFB34196' id: WarnLineGreyscaleS decals: - 2859: -41,17 + 2443: -41,17 - node: color: '#FFFFFFFF' id: WarnLineGreyscaleS decals: - 2284: -18,-45 - 2497: -40,42 - 2498: -44,42 - 2499: -48,42 - 3067: -32,-11 - 3068: -33,-11 - 3070: -34,-11 + 2201: -40,42 + 2202: -44,42 + 2203: -48,42 + 2651: -32,-11 + 2652: -33,-11 + 2654: -34,-11 - node: color: '#334E6DC8' id: WarnLineGreyscaleW decals: - 2633: -21,39 + 2329: -21,39 - node: color: '#52B4E996' id: WarnLineGreyscaleW decals: - 2943: -23,-23 - 2944: -23,-17 - 2960: -15,-16 - 3059: -31,-18 - 3104: -16,-11 - 3105: -16,-10 - 3114: -26,-11 - 3115: -26,-10 + 2527: -23,-23 + 2528: -23,-17 + 2544: -15,-16 + 2643: -31,-18 + 2688: -16,-11 + 2689: -16,-10 + 2698: -26,-11 + 2699: -26,-10 - node: color: '#EFB34196' id: WarnLineGreyscaleW decals: - 2860: -44,18 + 2444: -44,18 - node: color: '#FFFFFFFF' id: WarnLineGreyscaleW decals: - 2277: -20,-43 - 2278: -20,-42 - 2461: -33,7 - 2462: -33,8 - 3071: -35,-10 + 2165: -33,7 + 2166: -33,8 + 2655: -35,-10 - node: color: '#FFFFFFFF' id: WarnLineN decals: - 1264: 18,-16 - 1265: 19,-16 - 1266: 20,-16 - 1267: 21,-19 - 1268: 18,-19 - 1285: 38,9 - 1286: 37,9 - 1287: 36,9 - 1288: 35,9 - 1328: 28,11 - 1329: 27,11 - 1330: 26,11 - 1874: 4,21 - 1879: 6,22 - 1880: 2,22 - 2186: -21,43 - 2187: -20,43 - 2188: -19,43 - 2224: 1,-35 - 2664: -26,-58 - 2665: -27,-58 - 2666: -28,-58 - 2749: -7,-50 - 2750: -8,-50 - 2751: -9,-50 + 1164: 18,-16 + 1165: 19,-16 + 1166: 20,-16 + 1167: 21,-19 + 1168: 18,-19 + 1185: 38,9 + 1186: 37,9 + 1187: 36,9 + 1188: 35,9 + 1228: 28,11 + 1229: 27,11 + 1230: 26,11 + 1731: 4,21 + 1736: 6,22 + 1737: 2,22 + 2043: -21,43 + 2044: -20,43 + 2045: -19,43 + 2074: 1,-35 + 2348: -26,-58 + 2349: -27,-58 + 2811: 12,12 + 2857: 15,-19 + 2858: 16,-19 + 2859: 17,-19 + 2882: -13,-53 + 2883: -12,-53 + 2884: -11,-53 + 2885: -10,-53 + 2886: -9,-53 + 2907: -6,-52 + 2908: -3,-47 + 2909: 1,-47 + 2910: 2,-47 + 2911: 3,-47 + 2912: 4,-47 + 2913: -2,-47 + 2914: 0,-47 + 2922: -2,-50 + 2923: -1,-50 + 2924: 0,-50 + 3009: -18,-56 - node: color: '#FFFFFFFF' id: WarnLineS decals: - 1272: 21,-18 - 1273: 21,-17 - 1279: 19,-20 - 1315: 24,20 - 1316: 24,21 - 1408: 27,18 - 1409: 27,19 - 1410: 27,20 - 1823: -58,12 - 1824: -58,13 - 1825: -58,14 - 1826: -58,15 - 1827: -58,16 - 1828: -58,20 - 1829: -58,21 - 1830: -58,22 - 1831: -58,23 - 1832: -58,24 - 2210: -6,-35 - 2217: 0,-34 - 2430: -4,-1 - 2538: 14,-26 - 2539: 14,-25 - 2540: 14,-24 - 2541: 14,-23 - 2753: -6,-51 - 2833: -47,-10 - 2834: -47,-9 + 1172: 21,-18 + 1173: 21,-17 + 1179: 19,-20 + 1215: 24,20 + 1216: 24,21 + 1274: 27,18 + 1275: 27,19 + 1276: 27,20 + 1680: -58,12 + 1681: -58,13 + 1682: -58,14 + 1683: -58,15 + 1684: -58,16 + 1685: -58,20 + 1686: -58,21 + 1687: -58,22 + 1688: -58,23 + 1689: -58,24 + 2067: 0,-34 + 2134: -4,-1 + 2423: -47,-10 + 2424: -47,-9 + 2880: -14,-52 + 2926: 1,-51 + 3007: -19,-54 + 3008: -19,-55 - node: color: '#FFFFFFFF' id: WarnLineW decals: - 1259: 18,-16 - 1260: 19,-16 - 1261: 20,-16 - 1262: 21,-16 - 1263: 22,-16 - 1269: 18,-19 - 1270: 19,-19 - 1271: 20,-19 - 1280: 20,-21 - 1281: 19,-21 - 1305: 17,19 - 1306: 18,19 - 1307: 19,19 - 1308: 20,19 - 1325: 26,8 - 1326: 27,8 - 1327: 28,8 - 1465: -23,38 - 1881: 6,22 - 1882: 5,22 - 1883: 3,22 - 1884: 2,22 - 2214: -7,-36 - 2215: -8,-36 - 2216: -9,-36 - 2218: 1,-33 - 2738: -6,-58 - 2739: -12,-58 - 2740: -5,-58 - 2741: -4,-58 - 2742: -13,-58 - 2743: -3,-58 - 2744: -10,-58 - 2745: -11,-58 - 2746: -9,-52 - 2747: -8,-52 - 2748: -7,-52 + 1159: 18,-16 + 1160: 19,-16 + 1161: 20,-16 + 1162: 21,-16 + 1163: 22,-16 + 1169: 18,-19 + 1170: 19,-19 + 1171: 20,-19 + 1180: 20,-21 + 1181: 19,-21 + 1205: 17,19 + 1206: 18,19 + 1207: 19,19 + 1208: 20,19 + 1225: 26,8 + 1226: 27,8 + 1227: 28,8 + 1322: -23,38 + 1738: 6,22 + 1739: 5,22 + 1740: 3,22 + 1741: 2,22 + 2068: 1,-33 + 2361: -12,-58 + 2362: -11,-58 + 2812: 12,10 + 2854: 13,10 + 2855: 14,10 + 2860: 15,-19 + 2861: 16,-19 + 2862: 17,-19 + 2872: -11,-51 + 2873: -10,-51 + 2874: -12,-51 + 2875: -9,-51 + 2927: -2,-52 + 2928: -1,-52 + 2929: 0,-52 + 2930: 0,-52 + 2935: -4,-48 + 2936: -3,-48 + 2937: -2,-48 + 2938: -1,-48 + 2939: 0,-48 + 2940: 1,-48 + 2941: 2,-48 + 2942: 3,-48 + 2943: 4,-48 + 3004: -18,-53 - node: angle: -3.141592653589793 rad color: '#FFFFFFFF' @@ -4910,17 +4699,13 @@ entities: 387: 10,42 388: 9,42 464: -5,-12 - 635: -24,-47 - 636: -25,-47 - 637: -26,-47 - 734: 13,-9 - 735: 12,-9 - 736: 11,-9 - 976: -6,82 - 977: 4,82 - 988: 3,78 - 989: -5,78 - 1118: 2,-38 + 674: 13,-9 + 675: 12,-9 + 676: 11,-9 + 911: -6,82 + 912: 4,82 + 923: 3,78 + 924: -5,78 - node: angle: -1.5707963267948966 rad color: '#FFFFFFFF' @@ -4932,13 +4717,13 @@ entities: 8: 0,22 9: 0,23 462: -6,-13 - 951: -47,-25 - 952: -47,-24 - 953: -47,-23 - 968: 2,62 - 969: 2,63 - 980: 4,87 - 990: 4,79 + 886: -47,-25 + 887: -47,-24 + 888: -47,-23 + 903: 2,62 + 904: 2,63 + 915: 4,87 + 925: 4,79 - node: color: '#FFFFFFFF' id: WarningLine @@ -4951,45 +4736,25 @@ entities: 614: 7,-21 615: 6,-21 616: 5,-21 - 642: -2,-46 - 643: -3,-46 - 644: -4,-46 - 645: -5,-46 - 646: -6,-46 - 647: -7,-46 - 648: -8,-46 - 649: -9,-46 - 650: -10,-46 - 651: -11,-46 - 652: -12,-46 - 653: -13,-46 - 654: -14,-46 - 663: -8,-42 - 664: -7,-42 - 665: -9,-42 - 666: -10,-42 - 667: -6,-42 - 737: 13,-9 - 738: 12,-9 - 739: 11,-9 - 747: 17,16 - 748: 18,16 - 752: 38,12 - 753: 37,12 - 754: 36,12 - 755: 35,12 - 974: 4,84 - 975: -6,84 - 978: 3,88 - 979: -5,88 - 1029: 6,41 - 1030: 4,41 - 1034: 7,41 - 1035: 3,41 - 1036: 5,41 - 1216: 35,-12 - 1217: 34,-12 - 1218: 33,-12 + 677: 13,-9 + 678: 12,-9 + 679: 11,-9 + 687: 38,12 + 688: 37,12 + 689: 36,12 + 690: 35,12 + 909: 4,84 + 910: -6,84 + 913: 3,88 + 914: -5,88 + 949: 6,41 + 950: 4,41 + 954: 7,41 + 955: 3,41 + 956: 5,41 + 1116: 35,-12 + 1117: 34,-12 + 1118: 33,-12 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' @@ -5001,315 +4766,303 @@ entities: 13: -4,22 14: -4,23 15: -2,22 - 954: -57,-25 - 955: -57,-24 - 956: -57,-23 - 971: -4,62 - 972: -4,63 - 981: -6,87 - 991: -6,79 - 1209: 35,-8 - 1210: 35,-7 - 1211: 35,-6 - 1212: 35,-5 - 1213: 35,-4 - 1214: 35,-3 - 1215: 35,-2 - - node: - angle: 3.141592653589793 rad - color: '#FFFFFFFF' - id: WarningLine - decals: - 631: 2,-38 - 632: 1,-38 - 633: 0,-38 - 749: 17,14 - 750: 18,14 + 889: -57,-25 + 890: -57,-24 + 891: -57,-23 + 906: -4,62 + 907: -4,63 + 916: -6,87 + 926: -6,79 + 1109: 35,-8 + 1110: 35,-7 + 1111: 35,-6 + 1112: 35,-5 + 1113: 35,-4 + 1114: 35,-3 + 1115: 35,-2 - node: angle: -3.141592653589793 rad color: '#FFFFFFFF' id: WarningLineCorner decals: - 993: 4,78 - 995: -4,78 + 928: 4,78 + 930: -4,78 - node: angle: -1.5707963267948966 rad color: '#FFFFFFFF' id: WarningLineCorner decals: - 958: -47,-22 + 893: -47,-22 - node: color: '#FFFFFFFF' id: WarningLineCorner decals: - 669: -11,-42 - 983: 2,88 - 985: -6,88 - 997: -6,80 - 1136: 4,-21 - 1219: 32,-12 + 918: 2,88 + 920: -6,88 + 932: -6,80 + 1036: 4,-21 + 1119: 32,-12 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' id: WarningLineCorner decals: - 987: -6,86 + 922: -6,86 - node: angle: -3.141592653589793 rad color: '#FFFFFFFF' id: WarningLineCornerFlipped decals: - 992: -6,78 - 994: 2,78 + 927: -6,78 + 929: 2,78 - node: angle: -1.5707963267948966 rad color: '#FFFFFFFF' id: WarningLineCornerFlipped decals: - 984: 4,86 + 919: 4,86 - node: color: '#FFFFFFFF' id: WarningLineCornerFlipped decals: - 668: -5,-42 - 982: 4,88 - 986: -4,88 - 996: 4,80 - 1135: 8,-21 + 917: 4,88 + 921: -4,88 + 931: 4,80 + 1035: 8,-21 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' id: WarningLineCornerFlipped decals: - 957: -57,-22 + 892: -57,-22 - node: color: '#FFFFFFFF' id: WoodTrimThinBox decals: - 1796: -11,34 - 1797: -10,34 - 1798: -9,34 + 1653: -11,34 + 1654: -10,34 + 1655: -9,34 - node: color: '#334E6DC8' id: WoodTrimThinEndE decals: - 1600: -9,41 + 1457: -9,41 - node: color: '#FFFFFFFF' id: WoodTrimThinEndN decals: - 1478: -22,31 + 1335: -22,31 - node: color: '#334E6DC8' id: WoodTrimThinEndW decals: - 1601: -11,41 + 1458: -11,41 - node: color: '#FFFFFFFF' id: WoodTrimThinInnerNe decals: - 1502: -13,32 - 1682: 42,40 - 2492: -27,52 + 1359: -13,32 + 1539: 42,40 + 2196: -27,52 - node: color: '#FFFFFFFF' id: WoodTrimThinInnerNw decals: - 1501: -7,32 + 1358: -7,32 - node: color: '#FFFFFFFF' id: WoodTrimThinInnerSe decals: - 1472: -24,37 - 1500: -13,36 - 1764: -21,36 + 1329: -24,37 + 1357: -13,36 + 1621: -21,36 - node: color: '#FFFFFFFF' id: WoodTrimThinInnerSw decals: - 1471: -24,37 - 1499: -7,36 + 1328: -24,37 + 1356: -7,36 - node: color: '#FFFFFFFF' id: WoodTrimThinLineE decals: - 1483: -20,30 - 1496: -13,33 - 1497: -13,34 - 1498: -13,35 - 1573: -2,32 - 1574: -2,33 - 1575: -2,31 - 1587: -19,32 - 1673: 35,37 - 1674: 35,38 - 1675: 35,39 - 1676: 35,40 - 1677: 35,41 - 1678: 43,37 - 1679: 43,38 - 1680: 43,39 - 1681: 43,40 - 1683: -75,-55 - 1685: -71,-55 - 1686: -71,-54 - 1687: -71,-53 - 1688: -71,-52 - 1689: -71,-56 - 1690: -71,-57 - 1762: -21,34 - 1763: -21,35 - 1769: 25,14 - 1770: 25,15 - 2730: -31,-3 - 2731: -31,-2 - 2732: -31,-1 + 1340: -20,30 + 1353: -13,33 + 1354: -13,34 + 1355: -13,35 + 1430: -2,32 + 1431: -2,33 + 1432: -2,31 + 1444: -19,32 + 1530: 35,37 + 1531: 35,38 + 1532: 35,39 + 1533: 35,40 + 1534: 35,41 + 1535: 43,37 + 1536: 43,38 + 1537: 43,39 + 1538: 43,40 + 1540: -75,-55 + 1542: -71,-55 + 1543: -71,-54 + 1544: -71,-53 + 1545: -71,-52 + 1546: -71,-56 + 1547: -71,-57 + 1619: -21,34 + 1620: -21,35 + 1626: 25,14 + 1627: 25,15 + 2358: -31,-3 + 2359: -31,-2 + 2360: -31,-1 - node: color: '#334E6DC8' id: WoodTrimThinLineN decals: - 1602: -10,41 + 1459: -10,41 - node: color: '#FFFFFFFF' id: WoodTrimThinLineN decals: - 1424: -49,32 - 1425: -50,32 - 1426: -51,32 - 1427: -52,32 - 1428: -53,32 - 1435: -54,32 - 1436: -22,52 - 1437: -23,52 - 1438: -24,52 - 1439: -25,52 - 1440: -26,52 - 1464: -21,33 - 1476: -20,30 - 1477: -21,30 - 1491: -8,32 - 1492: -9,32 - 1493: -10,32 - 1494: -11,32 - 1495: -12,32 - 1577: -1,34 - 1583: -22,32 - 1584: -20,32 - 1657: -32,20 - 1748: 8,-18 - 1766: 26,13 - 1767: 27,13 - 1768: 28,13 + 1281: -49,32 + 1282: -50,32 + 1283: -51,32 + 1284: -52,32 + 1285: -53,32 + 1292: -54,32 + 1293: -22,52 + 1294: -23,52 + 1295: -24,52 + 1296: -25,52 + 1297: -26,52 + 1321: -21,33 + 1333: -20,30 + 1334: -21,30 + 1348: -8,32 + 1349: -9,32 + 1350: -10,32 + 1351: -11,32 + 1352: -12,32 + 1434: -1,34 + 1440: -22,32 + 1441: -20,32 + 1514: -32,20 + 1605: 8,-18 + 1623: 26,13 + 1624: 27,13 + 1625: 28,13 - node: color: '#334E6DC8' id: WoodTrimThinLineS decals: - 1603: -10,41 + 1460: -10,41 - node: color: '#FFFFFFFF' id: WoodTrimThinLineS decals: - 1422: -43,32 - 1423: -44,32 - 1429: -52,29 - 1430: -53,29 - 1431: -51,29 - 1432: -50,29 - 1433: -49,29 - 1434: -54,29 - 1453: -18,37 - 1454: -19,37 - 1455: -20,37 - 1456: -21,37 - 1457: -22,37 - 1463: -21,33 - 1467: -25,37 - 1468: -26,37 - 1469: -27,37 - 1470: -28,37 - 1473: -19,36 - 1474: -20,36 - 1475: -18,36 - 1480: -22,30 - 1481: -21,30 - 1482: -20,30 - 1484: -12,36 - 1485: -10,36 - 1486: -9,36 - 1487: -8,36 - 1512: -11,36 - 1576: -1,34 - 1578: 3,34 - 1579: 4,34 - 1580: 5,34 - 1581: 2,34 - 1585: -19,32 - 1656: -32,24 - 1736: -6,15 - 1737: -5,15 - 1738: -4,15 - 1739: -3,15 - 1740: -2,15 - 1741: -1,15 - 1743: 0,15 - 1749: 9,-17 - 1750: 8,-17 - 1751: 7,-17 - 1752: 5,-12 - 1753: 4,-12 - 1754: 3,-12 - 1765: 28,16 - 1773: 27,16 - 1774: 26,16 - 2479: -42,32 - 2480: -45,32 + 1279: -43,32 + 1280: -44,32 + 1286: -52,29 + 1287: -53,29 + 1288: -51,29 + 1289: -50,29 + 1290: -49,29 + 1291: -54,29 + 1310: -18,37 + 1311: -19,37 + 1312: -20,37 + 1313: -21,37 + 1314: -22,37 + 1320: -21,33 + 1324: -25,37 + 1325: -26,37 + 1326: -27,37 + 1327: -28,37 + 1330: -19,36 + 1331: -20,36 + 1332: -18,36 + 1337: -22,30 + 1338: -21,30 + 1339: -20,30 + 1341: -12,36 + 1342: -10,36 + 1343: -9,36 + 1344: -8,36 + 1369: -11,36 + 1433: -1,34 + 1435: 3,34 + 1436: 4,34 + 1437: 5,34 + 1438: 2,34 + 1442: -19,32 + 1513: -32,24 + 1593: -6,15 + 1594: -5,15 + 1595: -4,15 + 1596: -3,15 + 1597: -2,15 + 1598: -1,15 + 1600: 0,15 + 1606: 9,-17 + 1607: 8,-17 + 1608: 7,-17 + 1609: 5,-12 + 1610: 4,-12 + 1611: 3,-12 + 1622: 28,16 + 1630: 27,16 + 1631: 26,16 + 2183: -42,32 + 2184: -45,32 - node: cleanable: True color: '#FFFFFFFF' id: WoodTrimThinLineS decals: - 1863: -23,37 + 1720: -23,37 - node: color: '#FFFFFFFF' id: WoodTrimThinLineW decals: - 1479: -22,30 - 1488: -7,33 - 1489: -7,34 - 1490: -7,35 - 1586: -19,32 - 1684: -70,-55 - 1691: -74,-57 - 1692: -74,-56 - 1693: -74,-55 - 1694: -74,-54 - 1695: -74,-53 - 1696: -74,-52 - 1744: 6,-11 - 1745: 6,-10 - 1746: 6,-9 - 1755: 3,-12 - 1756: 3,-11 - 1757: 3,-10 - 1758: 3,-9 - 1759: 3,-8 - 1760: 3,-7 - 1761: 3,-6 - 1771: 29,14 - 1772: 29,15 - 1792: 27,0 - 1793: 27,1 - 1794: 27,2 + 1336: -22,30 + 1345: -7,33 + 1346: -7,34 + 1347: -7,35 + 1443: -19,32 + 1541: -70,-55 + 1548: -74,-57 + 1549: -74,-56 + 1550: -74,-55 + 1551: -74,-54 + 1552: -74,-53 + 1553: -74,-52 + 1601: 6,-11 + 1602: 6,-10 + 1603: 6,-9 + 1612: 3,-12 + 1613: 3,-11 + 1614: 3,-10 + 1615: 3,-9 + 1616: 3,-8 + 1617: 3,-7 + 1618: 3,-6 + 1628: 29,14 + 1629: 29,15 + 1649: 27,0 + 1650: 27,1 + 1651: 27,2 - node: color: '#FFFFFFFF' id: bushsnowa1 decals: - 1605: -11,41 + 1462: -11,41 - node: color: '#FFFFFFFF' id: bushsnowb3 decals: - 1604: -9,41 + 1461: -9,41 - type: GridAtmosphere version: 2 data: @@ -7774,11 +7527,6 @@ entities: - type: Transform pos: -0.39634466,12.638008 parent: 30 - - uid: 9608 - components: - - type: Transform - pos: -19.30925,-35.362278 - parent: 30 - proto: AirAlarm entities: - uid: 6224 @@ -7865,11 +7613,6 @@ entities: rot: 1.5707963267948966 rad pos: -26.5,-40.5 parent: 30 - - type: DeviceList - devices: - - 9952 - - 11153 - - 11094 - uid: 9671 components: - type: Transform @@ -7882,6 +7625,120 @@ entities: - 7116 - 9686 - 9864 + - uid: 9996 + components: + - type: Transform + pos: -3.5,-46.5 + parent: 30 + - type: DeviceList + devices: + - 11134 + - 9793 + - 9994 + - 19806 + - uid: 10010 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-22.5 + parent: 30 + - type: DeviceList + devices: + - 11180 + - 11192 + - 4353 + - 11188 + - 9301 + - 9300 + - 9769 + - 4241 + - 9782 + - 9618 + - 11189 + - uid: 13957 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-42.5 + parent: 30 + - type: DeviceList + devices: + - 19767 + - 19768 + - 9993 + - 11007 + - 19770 + - 19771 + - 8454 + - 8609 + - 7443 + - 7098 + - 10000 + - 7099 + - 7100 + - 11003 + - 19812 + - 19766 + - 19598 + - uid: 13958 + components: + - type: Transform + pos: -19.5,-38.5 + parent: 30 + - type: DeviceList + devices: + - 9897 + - 8297 + - 11005 + - 11009 + - 7226 + - 9884 + - 19562 + - 11280 + - 11007 + - 9993 + - 19768 + - 19767 + - uid: 13966 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,-34.5 + parent: 30 + - type: DeviceList + devices: + - 10042 + - 9903 + - 10043 + - 10022 + - 9899 + - 9908 + - 11011 + - uid: 14365 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,16.5 + parent: 30 + - type: DeviceList + devices: + - 13002 + - 14522 + - 22440 + - 22439 + - 13082 + - 13085 + - 18074 + - 18214 + - 17912 + - 18601 + - 18212 + - 13073 + - 17724 + - 12664 + - 12665 + - 12666 + - 18073 - uid: 17960 components: - type: Transform @@ -7894,6 +7751,21 @@ entities: - 18435 - 18436 - 18437 + - uid: 19570 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-51.5 + parent: 30 + - type: DeviceList + devices: + - 8335 + - 7222 + - 11280 + - 9839 + - 7224 + - 8311 + - 9995 - uid: 20325 components: - type: Transform @@ -7909,58 +7781,6 @@ entities: - 18442 - 18439 - 17228 - - uid: 20353 - components: - - type: Transform - pos: -14.5,-45.5 - parent: 30 - - type: DeviceList - devices: - - 20354 - - 11262 - - 11263 - - 11264 - - 11114 - - 11163 - - uid: 20356 - components: - - type: Transform - pos: -9.5,-37.5 - parent: 30 - - type: DeviceList - devices: - - 11343 - - 11344 - - 11345 - - 11340 - - 11341 - - 11342 - - 20355 - - 11155 - - 11098 - - 11099 - - 11154 - - uid: 21740 - components: - - type: Transform - pos: -16.5,-33.5 - parent: 30 - - type: DeviceList - devices: - - 11097 - - 11227 - - 21741 - - uid: 21743 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,-33.5 - parent: 30 - - type: DeviceList - devices: - - 11176 - - 11107 - - 21744 - uid: 21747 components: - type: Transform @@ -7977,21 +7797,6 @@ entities: - 21749 - 11178 - 11179 - - uid: 21754 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,-27.5 - parent: 30 - - type: DeviceList - devices: - - 21753 - - 9302 - - 9303 - - 9301 - - 9300 - - 11188 - - 11189 - uid: 21755 components: - type: Transform @@ -8000,23 +7805,6 @@ entities: - type: DeviceList devices: - 21756 - - uid: 21757 - components: - - type: Transform - pos: 14.5,-21.5 - parent: 30 - - type: DeviceList - devices: - - 21759 - - 9303 - - 9302 - - 9301 - - 9300 - - 9307 - - 9308 - - 9309 - - 11192 - - 11180 - uid: 21760 components: - type: Transform @@ -8286,17 +8074,6 @@ entities: - 18758 - 18759 - 21843 - - uid: 21844 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -56.5,-62.5 - parent: 30 - - type: DeviceList - devices: - - 18770 - - 18769 - - 21845 - uid: 21846 components: - type: Transform @@ -8885,26 +8662,6 @@ entities: - 22053 - 12959 - 12813 - - uid: 22054 - components: - - type: Transform - pos: 19.5,13.5 - parent: 30 - - type: DeviceList - devices: - - 9161 - - 12665 - - 12664 - - 12666 - - 12858 - - 13391 - - 22056 - - 13078 - - 12983 - - 13085 - - 13002 - - 13086 - - 13003 - uid: 22057 components: - type: Transform @@ -8970,7 +8727,6 @@ entities: - 13080 - 22071 - 13006 - - 9161 - uid: 22073 components: - type: Transform @@ -8981,7 +8737,6 @@ entities: - 320 - 21456 - 22072 - - 3357 - 3358 - uid: 22075 components: @@ -9039,6 +8794,13 @@ entities: - 22084 - 3484 - 3481 +- proto: AirAlarmElectronics + entities: + - uid: 15214 + components: + - type: Transform + pos: 3.6103516,20.451275 + parent: 30 - proto: AirCanister entities: - uid: 2087 @@ -9056,6 +8818,21 @@ entities: - type: Transform pos: 22.5,-13.5 parent: 30 + - uid: 12727 + components: + - type: Transform + pos: -52.5,-64.5 + parent: 30 + - uid: 12770 + components: + - type: Transform + pos: -52.5,-65.5 + parent: 30 + - uid: 12816 + components: + - type: Transform + pos: -52.5,-63.5 + parent: 30 - uid: 15156 components: - type: Transform @@ -9071,26 +8848,6 @@ entities: - type: Transform pos: -44.5,25.5 parent: 30 - - uid: 18782 - components: - - type: Transform - pos: -66.5,-65.5 - parent: 30 - - uid: 18783 - components: - - type: Transform - pos: -65.5,-65.5 - parent: 30 - - uid: 18784 - components: - - type: Transform - pos: -64.5,-65.5 - parent: 30 - - uid: 22767 - components: - - type: Transform - pos: -27.5,-63.5 - parent: 30 - proto: Airlock entities: - uid: 752 @@ -9229,6 +8986,30 @@ entities: - type: Transform pos: 6.5,-30.5 parent: 30 + - uid: 9894 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-30.5 + parent: 30 + - uid: 10017 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-24.5 + parent: 30 + - uid: 11290 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-23.5 + parent: 30 + - uid: 19783 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-30.5 + parent: 30 - proto: AirlockAtmosphericsLocked entities: - uid: 8604 @@ -9246,6 +9027,18 @@ entities: - type: Transform pos: 20.5,-20.5 parent: 30 + - uid: 9978 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,-18.5 + parent: 30 + - uid: 9989 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-18.5 + parent: 30 - proto: AirlockBarLocked entities: - uid: 455 @@ -9430,12 +9223,16 @@ entities: parent: 30 - proto: AirlockChiefEngineerGlassLocked entities: - - uid: 9592 + - uid: 870 components: - - type: MetaData - name: CE's Office - type: Transform - pos: -18.5,-37.5 + pos: -7.5,-37.5 + parent: 30 + - uid: 9519 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,-30.5 parent: 30 - proto: AirlockChiefMedicalOfficerGlassLocked entities: @@ -9508,12 +9305,6 @@ entities: - type: Transform pos: -2.5,37.5 parent: 30 - - uid: 22638 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -29.5,-61.5 - parent: 30 - proto: AirlockCommandLocked entities: - uid: 4927 @@ -9552,12 +9343,20 @@ entities: parent: 30 - proto: AirlockEngineeringGlassLocked entities: - - uid: 9353 + - uid: 4827 components: - - type: MetaData - name: SMES bank - type: Transform - pos: -10.5,-33.5 + pos: -13.5,-32.5 + parent: 30 + - uid: 7125 + components: + - type: Transform + pos: -12.5,-46.5 + parent: 30 + - uid: 7146 + components: + - type: Transform + pos: -11.5,-46.5 parent: 30 - uid: 9463 components: @@ -9566,28 +9365,30 @@ entities: - type: Transform pos: -12.5,-36.5 parent: 30 - - uid: 9934 + - uid: 10767 components: - type: Transform - pos: -0.5,-53.5 + rot: 1.5707963267948966 rad + pos: 0.5,-42.5 parent: 30 - - uid: 9935 + - uid: 10769 components: - type: Transform - pos: -0.5,-49.5 + rot: 1.5707963267948966 rad + pos: -9.5,-44.5 parent: 30 - - uid: 10116 + - uid: 10785 components: - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,-45.5 + parent: 30 + - uid: 10788 + components: + - type: Transform + rot: 1.5707963267948966 rad pos: -17.5,-45.5 parent: 30 - - uid: 11177 - components: - - type: MetaData - name: SMES Bank - - type: Transform - pos: -7.5,-37.5 - parent: 30 - uid: 20984 components: - type: MetaData @@ -9595,18 +9396,6 @@ entities: - type: Transform pos: 4.5,24.5 parent: 30 - - uid: 22635 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,-60.5 - parent: 30 - - uid: 22636 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,-60.5 - parent: 30 - proto: AirlockEngineeringLocked entities: - uid: 204 @@ -9616,6 +9405,11 @@ entities: - type: Transform pos: 1.5,22.5 parent: 30 + - uid: 340 + components: + - type: Transform + pos: -54.5,-60.5 + parent: 30 - uid: 914 components: - type: Transform @@ -9666,27 +9460,11 @@ entities: - type: Transform pos: 1.5,-36.5 parent: 30 - - uid: 9426 + - uid: 10786 components: - type: Transform - pos: -20.5,-41.5 - parent: 30 - - uid: 9474 - components: - - type: Transform - pos: -14.5,-29.5 - parent: 30 - - uid: 9577 - components: - - type: Transform - pos: -20.5,-42.5 - parent: 30 - - uid: 9693 - components: - - type: MetaData - name: Thermo Electric Generator - - type: Transform - pos: -7.5,-42.5 + rot: 1.5707963267948966 rad + pos: -17.5,-49.5 parent: 30 - uid: 11377 components: @@ -9713,27 +9491,11 @@ entities: - type: Transform pos: -62.5,43.5 parent: 30 - - uid: 17912 - components: - - type: Transform - pos: -54.5,-59.5 - parent: 30 - - uid: 18794 - components: - - type: Transform - pos: -64.5,-61.5 - parent: 30 - uid: 18927 components: - type: Transform pos: -39.5,-24.5 parent: 30 - - uid: 22633 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,-58.5 - parent: 30 - proto: AirlockExternal entities: - uid: 841 @@ -9792,25 +9554,41 @@ entities: linkedPorts: 1695: - DoorStatus: DoorBolt - - uid: 22631 + - uid: 9501 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,-58.5 + rot: 1.5707963267948966 rad + pos: -21.5,-55.5 parent: 30 - type: DeviceLinkSource linkedPorts: - 22632: + 10789: - DoorStatus: DoorBolt - - uid: 22632 + - uid: 10534 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,-58.5 + rot: 3.141592653589793 rad + pos: -13.5,-55.5 + parent: 30 + - type: DeviceLinkSink + invokeCounter: 1 + - uid: 10789 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,-57.5 + parent: 30 + - type: DeviceLinkSink + invokeCounter: 1 + - uid: 11117 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,-57.5 parent: 30 - type: DeviceLinkSource linkedPorts: - 22631: + 10534: - DoorStatus: DoorBolt - proto: AirlockExternalGlass entities: @@ -9902,66 +9680,24 @@ entities: parent: 30 - proto: AirlockExternalGlassEngineeringLocked entities: - - uid: 3531 + - uid: 9342 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-58.5 + rot: 3.141592653589793 rad + pos: 5.5,-44.5 + parent: 30 + - type: DeviceLinkSource + linkedPorts: + 10559: + - DoorStatus: DoorBolt + - uid: 10559 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-45.5 parent: 30 - type: DeviceLinkSink - invokeCounter: 2 - - type: DeviceLinkSource - linkedPorts: - 6272: - - DoorStatus: DoorBolt - 7207: - - DoorStatus: DoorBolt - - uid: 6272 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-56.5 - parent: 30 - - type: DeviceLinkSink - invokeCounter: 2 - - type: DeviceLinkSource - linkedPorts: - 3531: - - DoorStatus: DoorBolt - 7207: - - DoorStatus: DoorBolt - - uid: 7207 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,-58.5 - parent: 30 - - type: DeviceLinkSink - invokeCounter: 2 - - type: DeviceLinkSource - linkedPorts: - 6272: - - DoorStatus: DoorBolt - 3531: - - DoorStatus: DoorBolt - - uid: 10135 - components: - - type: Transform - pos: -17.5,-52.5 - parent: 30 - - type: DeviceLinkSource - linkedPorts: - 10136: - - DoorStatus: DoorBolt - - uid: 10136 - components: - - type: Transform - pos: -17.5,-49.5 - parent: 30 - - type: DeviceLinkSource - linkedPorts: - 10135: - - DoorStatus: DoorBolt + invokeCounter: 1 - uid: 20059 components: - type: Transform @@ -10002,6 +9738,48 @@ entities: linkedPorts: 5390: - DoorStatus: DoorBolt + - uid: 9654 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-54.5 + parent: 30 + - type: DeviceLinkSink + invokeCounter: 2 + - type: DeviceLinkSource + linkedPorts: + 9655: + - DoorStatus: DoorBolt + 9675: + - DoorStatus: DoorBolt + - uid: 9655 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-56.5 + parent: 30 + - type: DeviceLinkSink + invokeCounter: 2 + - type: DeviceLinkSource + linkedPorts: + 9654: + - DoorStatus: DoorBolt + 9675: + - DoorStatus: DoorBolt + - uid: 9675 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-56.5 + parent: 30 + - type: DeviceLinkSink + invokeCounter: 2 + - type: DeviceLinkSource + linkedPorts: + 9654: + - DoorStatus: DoorBolt + 9655: + - DoorStatus: DoorBolt - uid: 15334 components: - type: Transform @@ -10361,6 +10139,16 @@ entities: - type: Transform pos: -34.5,-0.5 parent: 30 + - uid: 4098 + components: + - type: Transform + pos: -62.5,-61.5 + parent: 30 + - uid: 4101 + components: + - type: Transform + pos: -61.5,-61.5 + parent: 30 - uid: 6287 components: - type: Transform @@ -10556,6 +10344,16 @@ entities: - type: Transform pos: -59.5,-22.5 parent: 30 + - uid: 17717 + components: + - type: Transform + pos: -71.5,-59.5 + parent: 30 + - uid: 18360 + components: + - type: Transform + pos: -71.5,-60.5 + parent: 30 - uid: 18534 components: - type: Transform @@ -10566,26 +10364,6 @@ entities: - type: Transform pos: -66.5,-54.5 parent: 30 - - uid: 18733 - components: - - type: Transform - pos: -71.5,-60.5 - parent: 30 - - uid: 18734 - components: - - type: Transform - pos: -69.5,-58.5 - parent: 30 - - uid: 18814 - components: - - type: Transform - pos: -59.5,-61.5 - parent: 30 - - uid: 18815 - components: - - type: Transform - pos: -58.5,-61.5 - parent: 30 - uid: 19392 components: - type: Transform @@ -10773,17 +10551,6 @@ entities: - type: Transform pos: -26.5,-41.5 parent: 30 - - uid: 9462 - components: - - type: Transform - pos: -12.5,-26.5 - parent: 30 - - uid: 22634 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,-60.5 - parent: 30 - proto: AirlockMaintGlass entities: - uid: 8303 @@ -10992,10 +10759,11 @@ entities: - type: Transform pos: -60.5,31.5 parent: 30 - - uid: 19687 + - uid: 18992 components: - type: Transform - pos: -19.5,-27.5 + rot: 3.141592653589793 rad + pos: -19.5,-28.5 parent: 30 - uid: 19815 components: @@ -11191,7 +10959,7 @@ entities: pos: -20.5,-5.5 parent: 30 - type: Door - secondsUntilStateChange: -1046.2256 + secondsUntilStateChange: -17234.736 state: Opening - type: DeviceLinkSource lastSignals: @@ -11330,6 +11098,12 @@ entities: parent: 30 - proto: AirlockScienceGlassLocked entities: + - uid: 7677 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,11.5 + parent: 30 - uid: 12914 components: - type: Transform @@ -11342,16 +11116,6 @@ entities: parent: 30 - proto: AirlockScienceLocked entities: - - uid: 12651 - components: - - type: Transform - pos: 16.5,15.5 - parent: 30 - - uid: 12652 - components: - - type: Transform - pos: 19.5,15.5 - parent: 30 - uid: 12908 components: - type: MetaData @@ -11359,6 +11123,12 @@ entities: - type: Transform pos: 34.5,8.5 parent: 30 + - uid: 14335 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,13.5 + parent: 30 - proto: AirlockSecurityGlass entities: - uid: 2312 @@ -11516,6 +11286,11 @@ entities: - type: Transform pos: -6.5,14.5 parent: 30 + - uid: 12637 + components: + - type: Transform + pos: -67.5,-62.5 + parent: 30 - proto: AirlockTheatreLocked entities: - uid: 652 @@ -11532,6 +11307,16 @@ entities: parent: 30 - proto: AirSensor entities: + - uid: 4353 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-26.5 + parent: 30 + - type: DeviceNetwork + deviceLists: + - 10010 + - 829 - uid: 7116 components: - type: Transform @@ -11569,11 +11354,41 @@ entities: deviceLists: - 8262 - 8254 - - uid: 9952 + - uid: 9994 components: - type: Transform - pos: -23.5,-43.5 + pos: 0.5,-48.5 parent: 30 + - type: DeviceNetwork + deviceLists: + - 9996 + - uid: 9995 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,-51.5 + parent: 30 + - type: DeviceNetwork + deviceLists: + - 13965 + - 19570 + - uid: 9999 + components: + - type: Transform + pos: 1.5,-39.5 + parent: 30 + - type: DeviceNetwork + deviceLists: + - 19597 + - uid: 10000 + components: + - type: Transform + pos: -8.5,-40.5 + parent: 30 + - type: DeviceNetwork + deviceLists: + - 13957 + - 13959 - uid: 17227 components: - type: Transform @@ -11584,61 +11399,38 @@ entities: - type: Transform pos: -48.5,-23.5 parent: 30 + - uid: 18073 + components: + - type: Transform + pos: 20.5,13.5 + parent: 30 + - type: DeviceNetwork + deviceLists: + - 14365 + - uid: 19562 + components: + - type: Transform + pos: -17.5,-42.5 + parent: 30 + - type: DeviceNetwork + deviceLists: + - 13958 + - 13964 - uid: 20326 components: - type: Transform pos: -56.5,-23.5 parent: 30 - - uid: 20354 - components: - - type: Transform - pos: -8.5,-44.5 - parent: 30 - - uid: 20355 - components: - - type: Transform - pos: -9.5,-39.5 - parent: 30 - - uid: 20358 - components: - - type: Transform - pos: -17.5,-40.5 - parent: 30 - - uid: 21741 - components: - - type: Transform - pos: -17.5,-34.5 - parent: 30 - - uid: 21744 - components: - - type: Transform - pos: -12.5,-33.5 - parent: 30 - - uid: 21745 - components: - - type: Transform - pos: 1.5,-40.5 - parent: 30 - uid: 21749 components: - type: Transform pos: -2.5,-25.5 parent: 30 - - uid: 21753 - components: - - type: Transform - pos: 10.5,-27.5 - parent: 30 - uid: 21756 components: - type: Transform pos: 12.5,-36.5 parent: 30 - - uid: 21759 - components: - - type: Transform - pos: 12.5,-24.5 - parent: 30 - uid: 21761 components: - type: Transform @@ -11734,11 +11526,6 @@ entities: - type: Transform pos: -66.5,-48.5 parent: 30 - - uid: 21845 - components: - - type: Transform - pos: -57.5,-62.5 - parent: 30 - uid: 21847 components: - type: Transform @@ -11964,11 +11751,6 @@ entities: - type: Transform pos: 32.5,19.5 parent: 30 - - uid: 22056 - components: - - type: Transform - pos: 20.5,11.5 - parent: 30 - uid: 22058 components: - type: Transform @@ -12043,17 +11825,10 @@ entities: parent: 30 - proto: AmeController entities: - - uid: 9476 + - uid: 11269 components: - type: Transform - pos: -11.5,-27.5 - parent: 30 -- proto: AmeJar - entities: - - uid: 801 - components: - - type: Transform - pos: -17.490644,-32.439728 + pos: -13.5,-47.5 parent: 30 - proto: AnomalyScanner entities: @@ -12338,6 +12113,12 @@ entities: rot: 1.5707963267948966 rad pos: -27.5,-23.5 parent: 30 + - uid: 8278 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,-45.5 + parent: 30 - uid: 8363 components: - type: MetaData @@ -12370,16 +12151,6 @@ entities: - type: Transform pos: 0.5,-31.5 parent: 30 - - uid: 9573 - components: - - type: MetaData - name: Engineering APC - - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,-38.5 - parent: 30 - - type: Battery - startingCharge: 12000 - uid: 9628 components: - type: MetaData @@ -12388,29 +12159,16 @@ entities: rot: -1.5707963267948966 rad pos: -26.5,-2.5 parent: 30 - - uid: 10633 + - uid: 9934 components: - - type: MetaData - name: Engineering Central APC - type: Transform rot: 1.5707963267948966 rad - pos: -14.5,-38.5 + pos: -18.5,-30.5 parent: 30 - - uid: 10641 + - uid: 10590 components: - - type: MetaData - name: AME APC - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,-32.5 - parent: 30 - - uid: 10790 - components: - - type: MetaData - name: TEG APC - - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-47.5 + pos: -20.5,-53.5 parent: 30 - uid: 10791 components: @@ -12420,6 +12178,11 @@ entities: rot: 1.5707963267948966 rad pos: -10.5,-7.5 parent: 30 + - uid: 11014 + components: + - type: Transform + pos: -10.5,-37.5 + parent: 30 - uid: 11808 components: - type: MetaData @@ -12442,13 +12205,6 @@ entities: rot: -1.5707963267948966 rad pos: 41.5,10.5 parent: 30 - - uid: 12974 - components: - - type: MetaData - name: RND APC - - type: Transform - pos: 18.5,13.5 - parent: 30 - uid: 13096 components: - type: MetaData @@ -12470,6 +12226,12 @@ entities: - type: Transform pos: 15.5,55.5 parent: 30 + - uid: 14364 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,13.5 + parent: 30 - uid: 14541 components: - type: MetaData @@ -12511,6 +12273,11 @@ entities: - type: Transform pos: 0.5,85.5 parent: 30 + - uid: 20367 + components: + - type: Transform + pos: 1.5,-42.5 + parent: 30 - uid: 22213 components: - type: MetaData @@ -12526,21 +12293,12 @@ entities: rot: -1.5707963267948966 rad pos: 3.5,10.5 parent: 30 - - uid: 22672 +- proto: APCElectronics + entities: + - uid: 15969 components: - - type: MetaData - name: Telecomms APC - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,-57.5 - parent: 30 - - uid: 22673 - components: - - type: MetaData - name: Telecomms Entrance APC - - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,-60.5 + pos: 3.115302,20.471077 parent: 30 - proto: APCSuperCapacity entities: @@ -12577,6 +12335,41 @@ entities: parent: 30 - proto: AsteroidRock entities: + - uid: 332 + components: + - type: Transform + pos: -61.5,-68.5 + parent: 30 + - uid: 333 + components: + - type: Transform + pos: -60.5,-69.5 + parent: 30 + - uid: 3342 + components: + - type: Transform + pos: -51.5,-67.5 + parent: 30 + - uid: 3343 + components: + - type: Transform + pos: -54.5,-68.5 + parent: 30 + - uid: 3345 + components: + - type: Transform + pos: -53.5,-67.5 + parent: 30 + - uid: 3346 + components: + - type: Transform + pos: -52.5,-67.5 + parent: 30 + - uid: 12854 + components: + - type: Transform + pos: -54.5,-67.5 + parent: 30 - uid: 13747 components: - type: Transform @@ -12757,26 +12550,16 @@ entities: - type: Transform pos: -70.5,-49.5 parent: 30 + - uid: 17791 + components: + - type: Transform + pos: -53.5,-68.5 + parent: 30 - uid: 18183 components: - type: Transform pos: -74.5,-39.5 parent: 30 - - uid: 18189 - components: - - type: Transform - pos: -53.5,-61.5 - parent: 30 - - uid: 18190 - components: - - type: Transform - pos: -52.5,-61.5 - parent: 30 - - uid: 18191 - components: - - type: Transform - pos: -51.5,-61.5 - parent: 30 - uid: 18192 components: - type: Transform @@ -12837,61 +12620,11 @@ entities: - type: Transform pos: -50.5,-62.5 parent: 30 - - uid: 18205 - components: - - type: Transform - pos: -51.5,-62.5 - parent: 30 - - uid: 18206 - components: - - type: Transform - pos: -52.5,-62.5 - parent: 30 - - uid: 18207 - components: - - type: Transform - pos: -52.5,-63.5 - parent: 30 - uid: 18208 components: - type: Transform pos: -50.5,-63.5 parent: 30 - - uid: 18210 - components: - - type: Transform - pos: -52.5,-64.5 - parent: 30 - - uid: 18211 - components: - - type: Transform - pos: -52.5,-65.5 - parent: 30 - - uid: 18212 - components: - - type: Transform - pos: -52.5,-66.5 - parent: 30 - - uid: 18213 - components: - - type: Transform - pos: -52.5,-67.5 - parent: 30 - - uid: 18214 - components: - - type: Transform - pos: -51.5,-66.5 - parent: 30 - - uid: 18215 - components: - - type: Transform - pos: -51.5,-65.5 - parent: 30 - - uid: 18216 - components: - - type: Transform - pos: -51.5,-64.5 - parent: 30 - uid: 18217 components: - type: Transform @@ -13102,36 +12835,6 @@ entities: - type: Transform pos: -81.5,-56.5 parent: 30 - - uid: 18354 - components: - - type: Transform - pos: -55.5,-69.5 - parent: 30 - - uid: 18355 - components: - - type: Transform - pos: -56.5,-69.5 - parent: 30 - - uid: 18356 - components: - - type: Transform - pos: -61.5,-69.5 - parent: 30 - - uid: 18357 - components: - - type: Transform - pos: -62.5,-69.5 - parent: 30 - - uid: 18358 - components: - - type: Transform - pos: -62.5,-68.5 - parent: 30 - - uid: 18359 - components: - - type: Transform - pos: -62.5,-67.5 - parent: 30 - uid: 18361 components: - type: Transform @@ -13187,26 +12890,61 @@ entities: - type: Transform pos: -66.5,-68.5 parent: 30 - - uid: 18372 - components: - - type: Transform - pos: -65.5,-68.5 - parent: 30 - - uid: 18373 - components: - - type: Transform - pos: -64.5,-68.5 - parent: 30 - - uid: 18374 - components: - - type: Transform - pos: -63.5,-68.5 - parent: 30 - uid: 18376 components: - type: Transform pos: -79.5,-65.5 parent: 30 + - uid: 18776 + components: + - type: Transform + pos: -58.5,-69.5 + parent: 30 + - uid: 18777 + components: + - type: Transform + pos: -57.5,-69.5 + parent: 30 + - uid: 18778 + components: + - type: Transform + pos: -59.5,-69.5 + parent: 30 + - uid: 18779 + components: + - type: Transform + pos: -57.5,-68.5 + parent: 30 + - uid: 18780 + components: + - type: Transform + pos: -58.5,-68.5 + parent: 30 + - uid: 18781 + components: + - type: Transform + pos: -56.5,-68.5 + parent: 30 + - uid: 18782 + components: + - type: Transform + pos: -55.5,-68.5 + parent: 30 + - uid: 18784 + components: + - type: Transform + pos: -59.5,-68.5 + parent: 30 + - uid: 18785 + components: + - type: Transform + pos: -60.5,-68.5 + parent: 30 + - uid: 18798 + components: + - type: Transform + pos: -56.5,-69.5 + parent: 30 - uid: 19393 components: - type: Transform @@ -13531,18 +13269,11 @@ entities: parent: 30 - proto: Autolathe entities: - - uid: 11276 + - uid: 3125 components: - type: Transform - pos: 3.5,-43.5 + pos: -21.5,-44.5 parent: 30 - - type: MaterialStorage - materialWhiteList: - - Steel - - Plastic - - Wood - - Glass - - Cloth - uid: 11726 components: - type: Transform @@ -13602,6 +13333,12 @@ entities: parent: 30 - proto: Barricade entities: + - uid: 3196 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,-27.5 + parent: 30 - uid: 15531 components: - type: Transform @@ -13622,11 +13359,6 @@ entities: - type: Transform pos: -53.5,42.5 parent: 30 - - uid: 19688 - components: - - type: Transform - pos: -19.5,-26.5 - parent: 30 - uid: 19689 components: - type: Transform @@ -13683,6 +13415,19 @@ entities: - type: Transform pos: -0.5,-10.5 parent: 30 +- proto: BaseComputer + entities: + - uid: 8821 + components: + - type: Transform + pos: -12.5,-33.5 + parent: 30 + - uid: 9592 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,-31.5 + parent: 30 - proto: BaseGasCondenser entities: - uid: 6731 @@ -13840,6 +13585,11 @@ entities: - type: Transform pos: -51.5,-53.5 parent: 30 + - uid: 18216 + components: + - type: Transform + pos: -69.5,-62.5 + parent: 30 - uid: 21091 components: - type: Transform @@ -13884,14 +13634,6 @@ entities: - type: Transform pos: -17.5,31.5 parent: 30 -- proto: BedsheetCE - entities: - - uid: 9329 - components: - - type: Transform - parent: 9604 - - type: Physics - canCollide: False - proto: BedsheetCMO entities: - uid: 7166 @@ -14012,6 +13754,11 @@ entities: - type: Transform pos: -51.5,-53.5 parent: 30 + - uid: 18786 + components: + - type: Transform + pos: -69.5,-62.5 + parent: 30 - uid: 21092 components: - type: Transform @@ -14097,50 +13844,57 @@ entities: - type: Transform pos: -43.5,16.5 parent: 30 + - uid: 9064 + components: + - type: Transform + pos: -4.5,-58.5 + parent: 30 + - type: DeviceLinkSink + invokeCounter: 1 + - uid: 9065 + components: + - type: Transform + pos: -3.5,-58.5 + parent: 30 - uid: 9068 components: - type: Transform pos: 12.5,-38.5 parent: 30 - - uid: 9404 + - uid: 9302 components: - type: Transform - pos: -24.5,-45.5 + pos: 2.5,-58.5 parent: 30 - - uid: 9405 + - uid: 9533 components: - type: Transform - pos: -23.5,-45.5 + pos: -16.5,-38.5 parent: 30 - - uid: 9825 + - uid: 9678 components: - type: Transform - pos: -13.5,-59.5 + pos: -2.5,-58.5 parent: 30 - - uid: 9826 + - uid: 9690 components: - type: Transform - pos: -13.5,-58.5 + pos: 1.5,-58.5 parent: 30 - - uid: 9827 + - uid: 9691 components: - type: Transform - pos: -13.5,-57.5 + pos: 3.5,-58.5 parent: 30 - - uid: 9828 + - uid: 11015 components: - type: Transform - pos: -1.5,-59.5 + pos: -18.5,-38.5 parent: 30 - - uid: 9829 + - uid: 11028 components: - type: Transform - pos: -1.5,-58.5 - parent: 30 - - uid: 9830 - components: - - type: Transform - pos: -1.5,-57.5 + pos: -17.5,-38.5 parent: 30 - uid: 11659 components: @@ -14177,16 +13931,11 @@ entities: - type: Transform pos: 36.5,14.5 parent: 30 - - uid: 13751 + - uid: 15990 components: - type: Transform pos: 48.5,25.5 parent: 30 - - uid: 14512 - components: - - type: Transform - pos: 48.5,23.5 - parent: 30 - uid: 16228 components: - type: Transform @@ -14323,38 +14072,38 @@ entities: enabled: False - proto: BookAtmosAirAlarms entities: - - uid: 22308 + - uid: 3347 components: - type: Transform - pos: -60.65072,-63.356808 + pos: -58.671722,-63.148144 parent: 30 - proto: BookAtmosDistro entities: - - uid: 22309 + - uid: 3359 components: - type: Transform - pos: -60.36943,-63.3924 + pos: -58.35984,-63.163 parent: 30 - proto: BookAtmosVentsMore entities: - - uid: 22310 + - uid: 16405 components: - type: Transform - pos: -60.68197,-63.450558 + pos: -58.656876,-63.44517 parent: 30 - proto: BookAtmosWaste entities: - - uid: 22311 + - uid: 3357 components: - type: Transform - pos: -60.353844,-63.575558 + pos: -58.35984,-63.50458 parent: 30 - proto: BookHowToCookForFortySpaceman entities: - uid: 9948 components: - type: Transform - pos: -15.506373,7.7216425 + pos: -17.483065,5.6789637 parent: 30 - proto: BookRandomStory entities: @@ -14363,23 +14112,6 @@ entities: - type: Transform pos: 8.515235,-13.437349 parent: 30 - - uid: 22306 - components: - - type: Transform - pos: -54.57496,-63.325558 - parent: 30 - - uid: 22307 - components: - - type: Transform - pos: -54.340584,-63.466183 - parent: 30 -- proto: BooksBag - entities: - - uid: 22303 - components: - - type: Transform - pos: -60.525063,-67.28237 - parent: 30 - proto: Bookshelf entities: - uid: 2356 @@ -14434,50 +14166,30 @@ entities: - type: Transform pos: 7.5,-13.5 parent: 30 - - uid: 14970 + - uid: 10148 components: - type: Transform - pos: -54.5,-65.5 + pos: -60.5,-62.5 parent: 30 - - uid: 15180 + - uid: 10149 components: - type: Transform - pos: -55.5,-65.5 + pos: -58.5,-62.5 parent: 30 - - uid: 15213 + - uid: 12819 components: - type: Transform - pos: -56.5,-65.5 + pos: -59.5,-62.5 parent: 30 - - uid: 15214 + - uid: 14361 components: - type: Transform - pos: -54.5,-67.5 + pos: -58.5,-64.5 parent: 30 - - uid: 15280 + - uid: 14504 components: - type: Transform - pos: -55.5,-67.5 - parent: 30 - - uid: 15353 - components: - - type: Transform - pos: -56.5,-67.5 - parent: 30 - - uid: 15355 - components: - - type: Transform - pos: -54.5,-62.5 - parent: 30 - - uid: 15975 - components: - - type: Transform - pos: -55.5,-62.5 - parent: 30 - - uid: 16165 - components: - - type: Transform - pos: -56.5,-63.5 + pos: -67.5,-65.5 parent: 30 - uid: 16177 components: @@ -14519,6 +14231,11 @@ entities: - type: Transform pos: -76.5,-61.5 parent: 30 + - uid: 17544 + components: + - type: Transform + pos: -59.5,-64.5 + parent: 30 - uid: 17669 components: - type: Transform @@ -14539,6 +14256,21 @@ entities: - type: Transform pos: -74.5,-58.5 parent: 30 + - uid: 18773 + components: + - type: Transform + pos: -60.5,-66.5 + parent: 30 + - uid: 18774 + components: + - type: Transform + pos: -58.5,-66.5 + parent: 30 + - uid: 18783 + components: + - type: Transform + pos: -59.5,-66.5 + parent: 30 - uid: 18818 components: - type: Transform @@ -14687,6 +14419,11 @@ entities: parent: 30 - proto: BoxFolderGrey entities: + - uid: 339 + components: + - type: Transform + pos: 16.633371,16.353863 + parent: 30 - uid: 1403 components: - type: Transform @@ -14697,11 +14434,6 @@ entities: - type: Transform pos: -11.490971,34.71304 parent: 30 - - uid: 12865 - components: - - type: Transform - pos: 14.525648,10.557264 - parent: 30 - proto: BoxFolderRed entities: - uid: 1520 @@ -14763,11 +14495,6 @@ entities: - type: Transform pos: -7.4440956,34.21304 parent: 30 - - uid: 9616 - components: - - type: Transform - pos: -17.512093,-35.436672 - parent: 30 - uid: 11253 components: - type: Transform @@ -14778,10 +14505,10 @@ entities: - type: Transform pos: 17.53771,-0.43951988 parent: 30 - - uid: 19424 + - uid: 12842 components: - type: Transform - pos: -60.46691,-65.40645 + pos: -62.622215,-64.76696 parent: 30 - proto: BoxHandcuff entities: @@ -14814,7 +14541,7 @@ entities: - uid: 18788 components: - type: Transform - pos: -63.476974,-62.485996 + pos: -52.499535,-60.446262 parent: 30 - proto: BoxLightMixed entities: @@ -14961,11 +14688,6 @@ entities: parent: 30 - proto: Bucket entities: - - uid: 318 - components: - - type: Transform - pos: -24.461937,5.451811 - parent: 30 - uid: 323 components: - type: Transform @@ -14981,6 +14703,11 @@ entities: - type: Transform pos: -47.45382,68.49689 parent: 30 + - uid: 13049 + components: + - type: Transform + pos: -24.119356,6.357745 + parent: 30 - uid: 19541 components: - type: Transform @@ -14998,6 +14725,49 @@ entities: - type: Transform pos: -15.949732,15.31613 parent: 30 +- proto: ButtonFrameCaution + entities: + - uid: 12380 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,-47.5 + parent: 30 +- proto: ButtonFrameCautionSecurity + entities: + - uid: 9062 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-54.5 + parent: 30 + - uid: 9215 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-54.5 + parent: 30 +- proto: ButtonFrameGrey + entities: + - uid: 11138 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,-38.5 + parent: 30 +- proto: ButtonFrameJanitor + entities: + - uid: 9401 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-5.5 + parent: 30 + - uid: 9405 + components: + - type: Transform + pos: 18.5,17.5 + parent: 30 - proto: CableApcExtension entities: - uid: 41 @@ -15010,6 +14780,11 @@ entities: - type: Transform pos: 27.5,20.5 parent: 30 + - uid: 335 + components: + - type: Transform + pos: -67.5,-60.5 + parent: 30 - uid: 408 components: - type: Transform @@ -15020,16 +14795,26 @@ entities: - type: Transform pos: -14.5,20.5 parent: 30 + - uid: 773 + components: + - type: Transform + pos: -24.5,-41.5 + parent: 30 + - uid: 788 + components: + - type: Transform + pos: -22.5,-40.5 + parent: 30 + - uid: 795 + components: + - type: Transform + pos: -23.5,-43.5 + parent: 30 - uid: 828 components: - type: Transform pos: 30.5,-6.5 parent: 30 - - uid: 870 - components: - - type: Transform - pos: -12.5,-55.5 - parent: 30 - uid: 878 components: - type: Transform @@ -15045,6 +14830,16 @@ entities: - type: Transform pos: -59.5,7.5 parent: 30 + - uid: 908 + components: + - type: Transform + pos: -9.5,-29.5 + parent: 30 + - uid: 915 + components: + - type: Transform + pos: -12.5,-30.5 + parent: 30 - uid: 917 components: - type: Transform @@ -15145,6 +14940,11 @@ entities: - type: Transform pos: -37.5,61.5 parent: 30 + - uid: 3126 + components: + - type: Transform + pos: -11.5,-56.5 + parent: 30 - uid: 3193 components: - type: Transform @@ -17030,31 +16830,6 @@ entities: - type: Transform pos: -26.5,7.5 parent: 30 - - uid: 4126 - components: - - type: Transform - pos: -26.5,6.5 - parent: 30 - - uid: 4127 - components: - - type: Transform - pos: -26.5,6.5 - parent: 30 - - uid: 4128 - components: - - type: Transform - pos: -26.5,5.5 - parent: 30 - - uid: 4129 - components: - - type: Transform - pos: -27.5,5.5 - parent: 30 - - uid: 4130 - components: - - type: Transform - pos: -28.5,5.5 - parent: 30 - uid: 4131 components: - type: Transform @@ -17103,12 +16878,7 @@ entities: - uid: 4140 components: - type: Transform - pos: -25.5,6.5 - parent: 30 - - uid: 4141 - components: - - type: Transform - pos: -24.5,6.5 + pos: 16.5,11.5 parent: 30 - uid: 4142 components: @@ -17915,6 +17685,11 @@ entities: - type: Transform pos: -29.5,-22.5 parent: 30 + - uid: 4444 + components: + - type: Transform + pos: -23.5,-44.5 + parent: 30 - uid: 4569 components: - type: Transform @@ -18965,11 +18740,6 @@ entities: - type: Transform pos: -51.5,55.5 parent: 30 - - uid: 4827 - components: - - type: Transform - pos: -7.5,-55.5 - parent: 30 - uid: 4829 components: - type: Transform @@ -18985,16 +18755,6 @@ entities: - type: Transform pos: -41.5,29.5 parent: 30 - - uid: 4893 - components: - - type: Transform - pos: -9.5,-55.5 - parent: 30 - - uid: 4894 - components: - - type: Transform - pos: -8.5,-55.5 - parent: 30 - uid: 5188 components: - type: Transform @@ -20265,21 +20025,6 @@ entities: - type: Transform pos: 7.5,26.5 parent: 30 - - uid: 6274 - components: - - type: Transform - pos: -3.5,-55.5 - parent: 30 - - uid: 6466 - components: - - type: Transform - pos: -4.5,-55.5 - parent: 30 - - uid: 6467 - components: - - type: Transform - pos: -5.5,-55.5 - parent: 30 - uid: 6648 components: - type: Transform @@ -20555,6 +20300,11 @@ entities: - type: Transform pos: -29.5,-21.5 parent: 30 + - uid: 7107 + components: + - type: Transform + pos: -6.5,-29.5 + parent: 30 - uid: 7138 components: - type: Transform @@ -20565,11 +20315,6 @@ entities: - type: Transform pos: -29.5,-23.5 parent: 30 - - uid: 7225 - components: - - type: Transform - pos: -10.5,-33.5 - parent: 30 - uid: 7418 components: - type: Transform @@ -21530,16 +21275,26 @@ entities: - type: Transform pos: -34.5,-3.5 parent: 30 - - uid: 8253 + - uid: 8266 components: - type: Transform - pos: -11.5,-33.5 + pos: -20.5,-41.5 parent: 30 - uid: 8289 components: - type: Transform pos: -25.5,-23.5 parent: 30 + - uid: 8293 + components: + - type: Transform + pos: -20.5,-45.5 + parent: 30 + - uid: 8294 + components: + - type: Transform + pos: -6.5,-28.5 + parent: 30 - uid: 8302 components: - type: Transform @@ -21580,31 +21335,81 @@ entities: - type: Transform pos: 27.5,-21.5 parent: 30 - - uid: 8819 + - uid: 8800 components: - type: Transform - pos: -9.5,-58.5 + pos: -25.5,-41.5 parent: 30 - - uid: 8820 + - uid: 8807 components: - type: Transform - pos: -10.5,-58.5 + pos: -17.5,-36.5 + parent: 30 + - uid: 8818 + components: + - type: Transform + pos: -18.5,-36.5 parent: 30 - uid: 8822 components: - type: Transform - pos: -11.5,-58.5 + pos: -16.5,-36.5 + parent: 30 + - uid: 8823 + components: + - type: Transform + pos: -17.5,-42.5 + parent: 30 + - uid: 8824 + components: + - type: Transform + pos: -22.5,-48.5 + parent: 30 + - uid: 8825 + components: + - type: Transform + pos: -23.5,-48.5 + parent: 30 + - uid: 8835 + components: + - type: Transform + pos: -17.5,-41.5 + parent: 30 + - uid: 8836 + components: + - type: Transform + pos: -23.5,-49.5 + parent: 30 + - uid: 9406 + components: + - type: Transform + pos: -20.5,-42.5 + parent: 30 + - uid: 9421 + components: + - type: Transform + pos: -22.5,-41.5 parent: 30 - uid: 9422 components: - type: Transform pos: -24.5,-6.5 parent: 30 + - uid: 9567 + components: + - type: Transform + pos: -21.5,-41.5 + parent: 30 - uid: 9611 components: - type: Transform pos: 1.5,-8.5 parent: 30 + - uid: 9619 + components: + - type: Transform + pos: -12.5,-28.5 + parent: 30 - uid: 9635 components: - type: Transform @@ -21615,26 +21420,6 @@ entities: - type: Transform pos: -41.5,-12.5 parent: 30 - - uid: 9653 - components: - - type: Transform - pos: -6.5,-58.5 - parent: 30 - - uid: 9654 - components: - - type: Transform - pos: -4.5,-58.5 - parent: 30 - - uid: 9655 - components: - - type: Transform - pos: -5.5,-58.5 - parent: 30 - - uid: 9656 - components: - - type: Transform - pos: -7.5,-58.5 - parent: 30 - uid: 9665 components: - type: Transform @@ -21655,26 +21440,6 @@ entities: - type: Transform pos: -36.5,-6.5 parent: 30 - - uid: 9677 - components: - - type: Transform - pos: -2.5,-55.5 - parent: 30 - - uid: 9678 - components: - - type: Transform - pos: -6.5,-55.5 - parent: 30 - - uid: 9679 - components: - - type: Transform - pos: -11.5,-55.5 - parent: 30 - - uid: 9690 - components: - - type: Transform - pos: -10.5,-55.5 - parent: 30 - uid: 9698 components: - type: Transform @@ -21690,26 +21455,6 @@ entities: - type: Transform pos: -37.5,-6.5 parent: 30 - - uid: 9821 - components: - - type: Transform - pos: -3.5,-58.5 - parent: 30 - - uid: 9822 - components: - - type: Transform - pos: -8.5,-58.5 - parent: 30 - - uid: 9823 - components: - - type: Transform - pos: -7.5,-56.5 - parent: 30 - - uid: 9824 - components: - - type: Transform - pos: -7.5,-57.5 - parent: 30 - uid: 9851 components: - type: Transform @@ -21740,6 +21485,21 @@ entities: - type: Transform pos: -18.5,-4.5 parent: 30 + - uid: 10001 + components: + - type: Transform + pos: -23.5,-42.5 + parent: 30 + - uid: 10008 + components: + - type: Transform + pos: -23.5,-41.5 + parent: 30 + - uid: 10009 + components: + - type: Transform + pos: -12.5,-35.5 + parent: 30 - uid: 10048 components: - type: Transform @@ -21800,395 +21560,150 @@ entities: - type: Transform pos: -59.5,-8.5 parent: 30 - - uid: 10503 + - uid: 10163 components: - type: Transform - pos: -7.5,-52.5 + pos: -24.5,-48.5 parent: 30 - - uid: 10536 - components: - - type: Transform - pos: 3.5,-38.5 - parent: 30 - - uid: 10582 - components: - - type: Transform - pos: -20.5,-38.5 - parent: 30 - - uid: 10583 - components: - - type: Transform - pos: -19.5,-38.5 - parent: 30 - - uid: 10584 - components: - - type: Transform - pos: -18.5,-38.5 - parent: 30 - - uid: 10585 - components: - - type: Transform - pos: -17.5,-38.5 - parent: 30 - - uid: 10586 - components: - - type: Transform - pos: -18.5,-37.5 - parent: 30 - - uid: 10587 - components: - - type: Transform - pos: -18.5,-36.5 - parent: 30 - - uid: 10588 - components: - - type: Transform - pos: -17.5,-36.5 - parent: 30 - - uid: 10589 - components: - - type: Transform - pos: -16.5,-36.5 - parent: 30 - - uid: 10590 - components: - - type: Transform - pos: -16.5,-35.5 - parent: 30 - - uid: 10591 - components: - - type: Transform - pos: -16.5,-34.5 - parent: 30 - - uid: 10592 - components: - - type: Transform - pos: -18.5,-39.5 - parent: 30 - - uid: 10593 - components: - - type: Transform - pos: -18.5,-40.5 - parent: 30 - - uid: 10594 - components: - - type: Transform - pos: -18.5,-41.5 - parent: 30 - - uid: 10595 - components: - - type: Transform - pos: -18.5,-42.5 - parent: 30 - - uid: 10596 - components: - - type: Transform - pos: -18.5,-43.5 - parent: 30 - - uid: 10597 - components: - - type: Transform - pos: -19.5,-42.5 - parent: 30 - - uid: 10598 - components: - - type: Transform - pos: -20.5,-42.5 - parent: 30 - - uid: 10599 - components: - - type: Transform - pos: -21.5,-42.5 - parent: 30 - - uid: 10600 - components: - - type: Transform - pos: -22.5,-42.5 - parent: 30 - - uid: 10601 - components: - - type: Transform - pos: -23.5,-42.5 - parent: 30 - - uid: 10602 - components: - - type: Transform - pos: -23.5,-43.5 - parent: 30 - - uid: 10603 - components: - - type: Transform - pos: -23.5,-44.5 - parent: 30 - - uid: 10604 - components: - - type: Transform - pos: -23.5,-45.5 - parent: 30 - - uid: 10605 - components: - - type: Transform - pos: -23.5,-46.5 - parent: 30 - - uid: 10606 + - uid: 10176 components: - type: Transform pos: -23.5,-47.5 parent: 30 - - uid: 10607 - components: - - type: Transform - pos: -23.5,-48.5 - parent: 30 - - uid: 10608 - components: - - type: Transform - pos: -23.5,-49.5 - parent: 30 - - uid: 10609 - components: - - type: Transform - pos: -23.5,-50.5 - parent: 30 - - uid: 10610 - components: - - type: Transform - pos: -23.5,-41.5 - parent: 30 - - uid: 10611 - components: - - type: Transform - pos: -23.5,-40.5 - parent: 30 - - uid: 10612 - components: - - type: Transform - pos: -24.5,-40.5 - parent: 30 - - uid: 10613 - components: - - type: Transform - pos: -25.5,-40.5 - parent: 30 - - uid: 10614 - components: - - type: Transform - pos: -22.5,-40.5 - parent: 30 - - uid: 10615 - components: - - type: Transform - pos: -21.5,-40.5 - parent: 30 - - uid: 10616 + - uid: 10179 components: - type: Transform pos: -17.5,-43.5 parent: 30 + - uid: 10180 + components: + - type: Transform + pos: -17.5,-38.5 + parent: 30 + - uid: 10181 + components: + - type: Transform + pos: -18.5,-41.5 + parent: 30 + - uid: 10182 + components: + - type: Transform + pos: -19.5,-41.5 + parent: 30 + - uid: 10192 + components: + - type: Transform + pos: -23.5,-46.5 + parent: 30 + - uid: 10194 + components: + - type: Transform + pos: -23.5,-45.5 + parent: 30 + - uid: 10235 + components: + - type: Transform + pos: -3.5,-14.5 + parent: 30 + - uid: 10268 + components: + - type: Transform + pos: -16.5,-30.5 + parent: 30 + - uid: 10269 + components: + - type: Transform + pos: -18.5,-30.5 + parent: 30 + - uid: 10270 + components: + - type: Transform + pos: -20.5,-43.5 + parent: 30 + - uid: 10444 + components: + - type: Transform + pos: -17.5,-30.5 + parent: 30 + - uid: 10531 + components: + - type: Transform + pos: -15.5,-30.5 + parent: 30 + - uid: 10538 + components: + - type: Transform + pos: -20.5,-44.5 + parent: 30 + - uid: 10597 + components: + - type: Transform + pos: -19.5,-53.5 + parent: 30 + - uid: 10612 + components: + - type: Transform + pos: -14.5,-30.5 + parent: 30 - uid: 10617 - components: - - type: Transform - pos: -17.5,-44.5 - parent: 30 - - uid: 10618 - components: - - type: Transform - pos: -17.5,-45.5 - parent: 30 - - uid: 10619 - components: - - type: Transform - pos: -17.5,-46.5 - parent: 30 - - uid: 10620 - components: - - type: Transform - pos: -17.5,-47.5 - parent: 30 - - uid: 10621 - components: - - type: Transform - pos: -17.5,-48.5 - parent: 30 - - uid: 10622 - components: - - type: Transform - pos: -17.5,-48.5 - parent: 30 - - uid: 10623 - components: - - type: Transform - pos: -17.5,-49.5 - parent: 30 - - uid: 10624 - components: - - type: Transform - pos: -17.5,-50.5 - parent: 30 - - uid: 10625 components: - type: Transform pos: -17.5,-51.5 parent: 30 - - uid: 10626 + - uid: 10619 components: - type: Transform - pos: -17.5,-52.5 + pos: -20.5,-53.5 + parent: 30 + - uid: 10621 + components: + - type: Transform + pos: -17.5,-50.5 + parent: 30 + - uid: 10624 + components: + - type: Transform + pos: -23.5,-55.5 parent: 30 - uid: 10627 components: - type: Transform - pos: -17.5,-53.5 - parent: 30 - - uid: 10628 - components: - - type: Transform - pos: -17.5,-54.5 + pos: -23.5,-56.5 parent: 30 - uid: 10629 components: - type: Transform - pos: -17.5,-40.5 - parent: 30 - - uid: 10630 - components: - - type: Transform - pos: -16.5,-40.5 - parent: 30 - - uid: 10631 - components: - - type: Transform - pos: -15.5,-40.5 + pos: -19.5,-52.5 parent: 30 - uid: 10632 components: - type: Transform pos: -9.5,-7.5 parent: 30 - - uid: 10634 - components: - - type: Transform - pos: -12.5,-40.5 - parent: 30 - - uid: 10635 - components: - - type: Transform - pos: -11.5,-40.5 - parent: 30 - - uid: 10636 - components: - - type: Transform - pos: -10.5,-40.5 - parent: 30 - - uid: 10637 - components: - - type: Transform - pos: -9.5,-40.5 - parent: 30 - - uid: 10638 - components: - - type: Transform - pos: -8.5,-40.5 - parent: 30 - - uid: 10639 - components: - - type: Transform - pos: -7.5,-40.5 - parent: 30 - - uid: 10640 - components: - - type: Transform - pos: -7.5,-41.5 - parent: 30 - uid: 10644 components: - type: Transform - pos: -7.5,-44.5 + pos: -19.5,-51.5 parent: 30 - uid: 10645 components: - type: Transform - pos: -8.5,-44.5 - parent: 30 - - uid: 10646 - components: - - type: Transform - pos: -9.5,-44.5 + pos: -17.5,-49.5 parent: 30 - uid: 10647 components: - type: Transform - pos: -10.5,-44.5 - parent: 30 - - uid: 10648 - components: - - type: Transform - pos: -11.5,-44.5 - parent: 30 - - uid: 10649 - components: - - type: Transform - pos: -12.5,-44.5 - parent: 30 - - uid: 10650 - components: - - type: Transform - pos: -13.5,-44.5 - parent: 30 - - uid: 10651 - components: - - type: Transform - pos: -13.5,-45.5 + pos: -11.5,-57.5 parent: 30 - uid: 10652 components: - type: Transform - pos: -13.5,-46.5 - parent: 30 - - uid: 10653 - components: - - type: Transform - pos: -13.5,-47.5 - parent: 30 - - uid: 10654 - components: - - type: Transform - pos: -13.5,-48.5 - parent: 30 - - uid: 10655 - components: - - type: Transform - pos: -13.5,-49.5 - parent: 30 - - uid: 10656 - components: - - type: Transform - pos: -13.5,-50.5 - parent: 30 - - uid: 10657 - components: - - type: Transform - pos: -13.5,-51.5 + pos: -13.5,-31.5 parent: 30 - uid: 10658 components: - type: Transform - pos: -13.5,-52.5 - parent: 30 - - uid: 10659 - components: - - type: Transform - pos: -13.5,-53.5 - parent: 30 - - uid: 10660 - components: - - type: Transform - pos: -13.5,-54.5 - parent: 30 - - uid: 10661 - components: - - type: Transform - pos: -13.5,-55.5 + pos: -11.5,-58.5 parent: 30 - uid: 10662 components: @@ -22230,85 +21745,45 @@ entities: - type: Transform pos: -63.5,23.5 parent: 30 - - uid: 10679 + - uid: 10672 components: - type: Transform - pos: -1.5,-55.5 + pos: -11.5,-29.5 parent: 30 - - uid: 10680 + - uid: 10673 components: - type: Transform - pos: -1.5,-53.5 - parent: 30 - - uid: 10681 - components: - - type: Transform - pos: -1.5,-52.5 - parent: 30 - - uid: 10682 - components: - - type: Transform - pos: -1.5,-54.5 - parent: 30 - - uid: 10683 - components: - - type: Transform - pos: -1.5,-51.5 - parent: 30 - - uid: 10684 - components: - - type: Transform - pos: -1.5,-50.5 - parent: 30 - - uid: 10685 - components: - - type: Transform - pos: -1.5,-49.5 - parent: 30 - - uid: 10686 - components: - - type: Transform - pos: -1.5,-48.5 - parent: 30 - - uid: 10687 - components: - - type: Transform - pos: -1.5,-47.5 - parent: 30 - - uid: 10689 - components: - - type: Transform - pos: -1.5,-45.5 + pos: -8.5,-29.5 parent: 30 - uid: 10690 components: - type: Transform - pos: -2.5,-44.5 + pos: -17.5,-55.5 parent: 30 - uid: 10691 components: - type: Transform - pos: -3.5,-44.5 + pos: -16.5,-55.5 parent: 30 - uid: 10692 components: - type: Transform - pos: -1.5,-44.5 + pos: -18.5,-55.5 parent: 30 - uid: 10693 components: - type: Transform - pos: -4.5,-44.5 - parent: 30 - - uid: 10694 - components: - - type: Transform - pos: -6.5,-44.5 + pos: -15.5,-55.5 parent: 30 - uid: 10695 components: - type: Transform - pos: -5.5,-44.5 + pos: -23.5,-57.5 + parent: 30 + - uid: 10696 + components: + - type: Transform + pos: -23.5,-58.5 parent: 30 - uid: 10717 components: @@ -22350,21 +21825,6 @@ entities: - type: Transform pos: 1.5,-37.5 parent: 30 - - uid: 10725 - components: - - type: Transform - pos: 1.5,-38.5 - parent: 30 - - uid: 10726 - components: - - type: Transform - pos: 0.5,-38.5 - parent: 30 - - uid: 10727 - components: - - type: Transform - pos: 2.5,-38.5 - parent: 30 - uid: 10728 components: - type: Transform @@ -22418,7 +21878,7 @@ entities: - uid: 10740 components: - type: Transform - pos: 2.5,-20.5 + pos: -10.5,-37.5 parent: 30 - uid: 10744 components: @@ -22455,100 +21915,10 @@ entities: - type: Transform pos: -2.5,-25.5 parent: 30 - - uid: 10751 - components: - - type: Transform - pos: -3.5,-29.5 - parent: 30 - - uid: 10752 - components: - - type: Transform - pos: -4.5,-29.5 - parent: 30 - - uid: 10753 - components: - - type: Transform - pos: -5.5,-29.5 - parent: 30 - - uid: 10754 - components: - - type: Transform - pos: -6.5,-29.5 - parent: 30 - uid: 10755 components: - type: Transform - pos: -7.5,-29.5 - parent: 30 - - uid: 10756 - components: - - type: Transform - pos: -8.5,-29.5 - parent: 30 - - uid: 10757 - components: - - type: Transform - pos: -9.5,-29.5 - parent: 30 - - uid: 10758 - components: - - type: Transform - pos: -10.5,-29.5 - parent: 30 - - uid: 10759 - components: - - type: Transform - pos: -11.5,-29.5 - parent: 30 - - uid: 10760 - components: - - type: Transform - pos: -12.5,-29.5 - parent: 30 - - uid: 10761 - components: - - type: Transform - pos: -13.5,-29.5 - parent: 30 - - uid: 10762 - components: - - type: Transform - pos: -14.5,-29.5 - parent: 30 - - uid: 10763 - components: - - type: Transform - pos: -16.5,-29.5 - parent: 30 - - uid: 10764 - components: - - type: Transform - pos: -15.5,-29.5 - parent: 30 - - uid: 10765 - components: - - type: Transform - pos: -16.5,-30.5 - parent: 30 - - uid: 10766 - components: - - type: Transform - pos: -16.5,-31.5 - parent: 30 - - uid: 10767 - components: - - type: Transform - pos: -12.5,-28.5 - parent: 30 - - uid: 10768 - components: - - type: Transform - pos: -12.5,-27.5 - parent: 30 - - uid: 10769 - components: - - type: Transform - pos: -12.5,-26.5 + pos: -14.5,-55.5 parent: 30 - uid: 10770 components: @@ -22625,80 +21995,15 @@ entities: - type: Transform pos: -21.5,-25.5 parent: 30 - - uid: 10785 - components: - - type: Transform - pos: -12.5,-30.5 - parent: 30 - - uid: 10786 - components: - - type: Transform - pos: -12.5,-31.5 - parent: 30 - - uid: 10787 - components: - - type: Transform - pos: -12.5,-32.5 - parent: 30 - - uid: 10788 - components: - - type: Transform - pos: -12.5,-33.5 - parent: 30 - - uid: 10789 - components: - - type: Transform - pos: -12.5,-34.5 - parent: 30 - uid: 10792 components: - type: Transform pos: -10.5,-7.5 parent: 30 - - uid: 10793 - components: - - type: Transform - pos: -9.5,-33.5 - parent: 30 - - uid: 10794 - components: - - type: Transform - pos: -8.5,-33.5 - parent: 30 - - uid: 10795 - components: - - type: Transform - pos: -7.5,-33.5 - parent: 30 - uid: 10796 components: - type: Transform - pos: -6.5,-33.5 - parent: 30 - - uid: 10797 - components: - - type: Transform - pos: -5.5,-33.5 - parent: 30 - - uid: 10798 - components: - - type: Transform - pos: -7.5,-30.5 - parent: 30 - - uid: 10799 - components: - - type: Transform - pos: -7.5,-31.5 - parent: 30 - - uid: 10800 - components: - - type: Transform - pos: -7.5,-28.5 - parent: 30 - - uid: 10801 - components: - - type: Transform - pos: -7.5,-27.5 + pos: -13.5,-55.5 parent: 30 - uid: 10802 components: @@ -23485,170 +22790,25 @@ entities: - type: Transform pos: 24.5,-35.5 parent: 30 - - uid: 11039 + - uid: 11098 components: - type: Transform - pos: -9.5,-34.5 + pos: -13.5,-30.5 parent: 30 - - uid: 11040 + - uid: 11099 components: - type: Transform - pos: -9.5,-35.5 + pos: -17.5,-37.5 parent: 30 - - uid: 11041 + - uid: 11101 components: - type: Transform - pos: -9.5,-36.5 + pos: -12.5,-55.5 parent: 30 - - uid: 11042 + - uid: 11128 components: - type: Transform - pos: -5.5,-34.5 - parent: 30 - - uid: 11043 - components: - - type: Transform - pos: -5.5,-35.5 - parent: 30 - - uid: 11044 - components: - - type: Transform - pos: -5.5,-36.5 - parent: 30 - - uid: 11045 - components: - - type: Transform - pos: -6.5,-36.5 - parent: 30 - - uid: 11046 - components: - - type: Transform - pos: -7.5,-36.5 - parent: 30 - - uid: 11047 - components: - - type: Transform - pos: -5.5,-40.5 - parent: 30 - - uid: 11048 - components: - - type: Transform - pos: -6.5,-40.5 - parent: 30 - - uid: 11049 - components: - - type: Transform - pos: -4.5,-40.5 - parent: 30 - - uid: 11050 - components: - - type: Transform - pos: -3.5,-40.5 - parent: 30 - - uid: 11051 - components: - - type: Transform - pos: -2.5,-40.5 - parent: 30 - - uid: 11052 - components: - - type: Transform - pos: -1.5,-40.5 - parent: 30 - - uid: 11053 - components: - - type: Transform - pos: -0.5,-40.5 - parent: 30 - - uid: 11054 - components: - - type: Transform - pos: 0.5,-40.5 - parent: 30 - - uid: 11055 - components: - - type: Transform - pos: 1.5,-40.5 - parent: 30 - - uid: 11056 - components: - - type: Transform - pos: 2.5,-40.5 - parent: 30 - - uid: 11057 - components: - - type: Transform - pos: 1.5,-41.5 - parent: 30 - - uid: 11058 - components: - - type: Transform - pos: 1.5,-42.5 - parent: 30 - - uid: 11059 - components: - - type: Transform - pos: 1.5,-42.5 - parent: 30 - - uid: 11060 - components: - - type: Transform - pos: 1.5,-43.5 - parent: 30 - - uid: 11061 - components: - - type: Transform - pos: 1.5,-44.5 - parent: 30 - - uid: 11062 - components: - - type: Transform - pos: 2.5,-43.5 - parent: 30 - - uid: 11063 - components: - - type: Transform - pos: 3.5,-43.5 - parent: 30 - - uid: 11064 - components: - - type: Transform - pos: -2.5,-39.5 - parent: 30 - - uid: 11065 - components: - - type: Transform - pos: -2.5,-38.5 - parent: 30 - - uid: 11066 - components: - - type: Transform - pos: -9.5,-39.5 - parent: 30 - - uid: 11067 - components: - - type: Transform - pos: -12.5,-39.5 - parent: 30 - - uid: 11068 - components: - - type: Transform - pos: -12.5,-38.5 - parent: 30 - - uid: 11069 - components: - - type: Transform - pos: -12.5,-37.5 - parent: 30 - - uid: 11070 - components: - - type: Transform - pos: -15.5,-41.5 - parent: 30 - - uid: 11071 - components: - - type: Transform - pos: -15.5,-42.5 + pos: -12.5,-34.5 parent: 30 - uid: 11231 components: @@ -23685,11 +22845,66 @@ entities: - type: Transform pos: 22.5,-37.5 parent: 30 + - uid: 11300 + components: + - type: Transform + pos: -18.5,-51.5 + parent: 30 + - uid: 11301 + components: + - type: Transform + pos: -20.5,-55.5 + parent: 30 + - uid: 11305 + components: + - type: Transform + pos: -17.5,-48.5 + parent: 30 + - uid: 11306 + components: + - type: Transform + pos: -17.5,-40.5 + parent: 30 + - uid: 11311 + components: + - type: Transform + pos: -6.5,-30.5 + parent: 30 + - uid: 11312 + components: + - type: Transform + pos: -19.5,-54.5 + parent: 30 - uid: 11332 components: - type: Transform pos: 1.5,-9.5 parent: 30 + - uid: 11335 + components: + - type: Transform + pos: -21.5,-55.5 + parent: 30 + - uid: 11339 + components: + - type: Transform + pos: -17.5,-47.5 + parent: 30 + - uid: 11341 + components: + - type: Transform + pos: -19.5,-55.5 + parent: 30 + - uid: 11342 + components: + - type: Transform + pos: -22.5,-55.5 + parent: 30 + - uid: 11343 + components: + - type: Transform + pos: -17.5,-39.5 + parent: 30 - uid: 11350 components: - type: Transform @@ -24795,11 +24010,6 @@ entities: - type: Transform pos: -41.5,25.5 parent: 30 - - uid: 12297 - components: - - type: Transform - pos: -7.5,-54.5 - parent: 30 - uid: 12307 components: - type: Transform @@ -25395,11 +24605,6 @@ entities: - type: Transform pos: 24.5,34.5 parent: 30 - - uid: 12442 - components: - - type: Transform - pos: -0.5,-47.5 - parent: 30 - uid: 12444 components: - type: Transform @@ -25410,10 +24615,15 @@ entities: - type: Transform pos: 31.5,31.5 parent: 30 - - uid: 12663 + - uid: 12668 components: - type: Transform - pos: -7.5,-53.5 + pos: -68.5,-60.5 + parent: 30 + - uid: 12680 + components: + - type: Transform + pos: -69.5,-60.5 parent: 30 - uid: 12832 components: @@ -25425,16 +24635,6 @@ entities: - type: Transform pos: 25.5,20.5 parent: 30 - - uid: 12961 - components: - - type: Transform - pos: 18.5,13.5 - parent: 30 - - uid: 12973 - components: - - type: Transform - pos: 18.5,12.5 - parent: 30 - uid: 13169 components: - type: Transform @@ -25770,11 +24970,6 @@ entities: - type: Transform pos: 14.5,11.5 parent: 30 - - uid: 13241 - components: - - type: Transform - pos: 13.5,11.5 - parent: 30 - uid: 13242 components: - type: Transform @@ -27820,6 +27015,11 @@ entities: - type: Transform pos: 23.5,-0.5 parent: 30 + - uid: 17725 + components: + - type: Transform + pos: 13.5,11.5 + parent: 30 - uid: 17811 components: - type: Transform @@ -27895,11 +27095,41 @@ entities: - type: Transform pos: -45.5,-25.5 parent: 30 + - uid: 18085 + components: + - type: Transform + pos: 16.5,13.5 + parent: 30 - uid: 18126 components: - type: Transform pos: -79.5,-57.5 parent: 30 + - uid: 18814 + components: + - type: Transform + pos: 16.5,12.5 + parent: 30 + - uid: 18820 + components: + - type: Transform + pos: -23.5,7.5 + parent: 30 + - uid: 18827 + components: + - type: Transform + pos: -24.5,7.5 + parent: 30 + - uid: 18831 + components: + - type: Transform + pos: -25.5,7.5 + parent: 30 + - uid: 18833 + components: + - type: Transform + pos: -27.5,7.5 + parent: 30 - uid: 18970 components: - type: Transform @@ -28850,90 +28080,20 @@ entities: - type: Transform pos: -58.5,-60.5 parent: 30 - - uid: 19178 - components: - - type: Transform - pos: -58.5,-62.5 - parent: 30 - - uid: 19179 - components: - - type: Transform - pos: -58.5,-63.5 - parent: 30 - - uid: 19180 - components: - - type: Transform - pos: -58.5,-61.5 - parent: 30 - - uid: 19181 - components: - - type: Transform - pos: -58.5,-64.5 - parent: 30 - - uid: 19182 - components: - - type: Transform - pos: -58.5,-65.5 - parent: 30 - - uid: 19183 - components: - - type: Transform - pos: -58.5,-66.5 - parent: 30 - - uid: 19184 - components: - - type: Transform - pos: -58.5,-67.5 - parent: 30 - - uid: 19185 - components: - - type: Transform - pos: -58.5,-68.5 - parent: 30 - - uid: 19186 - components: - - type: Transform - pos: -57.5,-66.5 - parent: 30 - uid: 19187 components: - type: Transform - pos: -56.5,-66.5 + pos: -13.5,-34.5 parent: 30 - uid: 19188 components: - type: Transform - pos: -55.5,-66.5 + pos: -13.5,-32.5 parent: 30 - uid: 19189 components: - type: Transform - pos: -59.5,-63.5 - parent: 30 - - uid: 19190 - components: - - type: Transform - pos: -60.5,-63.5 - parent: 30 - - uid: 19191 - components: - - type: Transform - pos: -57.5,-64.5 - parent: 30 - - uid: 19192 - components: - - type: Transform - pos: -56.5,-64.5 - parent: 30 - - uid: 19193 - components: - - type: Transform - pos: -55.5,-64.5 - parent: 30 - - uid: 19194 - components: - - type: Transform - pos: -54.5,-64.5 + pos: -13.5,-33.5 parent: 30 - uid: 19195 components: @@ -29115,70 +28275,10 @@ entities: - type: Transform pos: -55.5,-59.5 parent: 30 - - uid: 19231 - components: - - type: Transform - pos: -54.5,-59.5 - parent: 30 - - uid: 19232 - components: - - type: Transform - pos: -64.5,-60.5 - parent: 30 - - uid: 19233 - components: - - type: Transform - pos: -64.5,-61.5 - parent: 30 - - uid: 19234 - components: - - type: Transform - pos: -64.5,-62.5 - parent: 30 - - uid: 19235 - components: - - type: Transform - pos: -64.5,-63.5 - parent: 30 - - uid: 19236 - components: - - type: Transform - pos: -64.5,-64.5 - parent: 30 - - uid: 19237 - components: - - type: Transform - pos: -64.5,-65.5 - parent: 30 - - uid: 19238 - components: - - type: Transform - pos: -63.5,-64.5 - parent: 30 - - uid: 19239 - components: - - type: Transform - pos: -62.5,-64.5 - parent: 30 - uid: 19240 components: - type: Transform - pos: -65.5,-63.5 - parent: 30 - - uid: 19241 - components: - - type: Transform - pos: -67.5,-63.5 - parent: 30 - - uid: 19242 - components: - - type: Transform - pos: -66.5,-63.5 - parent: 30 - - uid: 19243 - components: - - type: Transform - pos: -68.5,-63.5 + pos: -11.5,-55.5 parent: 30 - uid: 19244 components: @@ -29825,16 +28925,6 @@ entities: - type: Transform pos: -70.5,-60.5 parent: 30 - - uid: 19373 - components: - - type: Transform - pos: -70.5,-59.5 - parent: 30 - - uid: 19374 - components: - - type: Transform - pos: -70.5,-58.5 - parent: 30 - uid: 19375 components: - type: Transform @@ -29920,16 +29010,6 @@ entities: - type: Transform pos: -50.5,43.5 parent: 30 - - uid: 19597 - components: - - type: Transform - pos: -25.5,-41.5 - parent: 30 - - uid: 19598 - components: - - type: Transform - pos: -26.5,-41.5 - parent: 30 - uid: 19599 components: - type: Transform @@ -30015,50 +29095,110 @@ entities: - type: Transform pos: -29.5,-34.5 parent: 30 - - uid: 19709 - components: - - type: Transform - pos: -19.5,-34.5 - parent: 30 - - uid: 19710 - components: - - type: Transform - pos: -18.5,-34.5 - parent: 30 - - uid: 19781 - components: - - type: Transform - pos: -1.5,-46.5 - parent: 30 - - uid: 19794 - components: - - type: Transform - pos: -1.5,-45.5 - parent: 30 - - uid: 19795 - components: - - type: Transform - pos: -13.5,-38.5 - parent: 30 - uid: 19796 components: - type: Transform - pos: -14.5,-38.5 + pos: -12.5,-29.5 parent: 30 - uid: 19797 components: - type: Transform pos: -38.5,62.5 parent: 30 - - uid: 19801 + - uid: 19828 components: - type: Transform - pos: -13.5,-32.5 + pos: -7.5,-29.5 parent: 30 - - uid: 19802 + - uid: 19829 components: - type: Transform - pos: -14.5,-32.5 + pos: -10.5,-29.5 + parent: 30 + - uid: 19832 + components: + - type: Transform + pos: -10.5,-38.5 + parent: 30 + - uid: 19833 + components: + - type: Transform + pos: -10.5,-39.5 + parent: 30 + - uid: 19834 + components: + - type: Transform + pos: -12.5,-39.5 + parent: 30 + - uid: 19835 + components: + - type: Transform + pos: -12.5,-40.5 + parent: 30 + - uid: 19837 + components: + - type: Transform + pos: -12.5,-41.5 + parent: 30 + - uid: 19838 + components: + - type: Transform + pos: -12.5,-42.5 + parent: 30 + - uid: 19839 + components: + - type: Transform + pos: -12.5,-43.5 + parent: 30 + - uid: 19842 + components: + - type: Transform + pos: -12.5,-44.5 + parent: 30 + - uid: 19845 + components: + - type: Transform + pos: -12.5,-45.5 + parent: 30 + - uid: 19846 + components: + - type: Transform + pos: -12.5,-46.5 + parent: 30 + - uid: 19847 + components: + - type: Transform + pos: -12.5,-47.5 + parent: 30 + - uid: 19848 + components: + - type: Transform + pos: -11.5,-47.5 + parent: 30 + - uid: 19849 + components: + - type: Transform + pos: -11.5,-48.5 + parent: 30 + - uid: 19850 + components: + - type: Transform + pos: -10.5,-48.5 + parent: 30 + - uid: 19851 + components: + - type: Transform + pos: -9.5,-48.5 + parent: 30 + - uid: 19852 + components: + - type: Transform + pos: -8.5,-48.5 + parent: 30 + - uid: 19853 + components: + - type: Transform + pos: -11.5,-39.5 parent: 30 - uid: 20163 components: @@ -30555,50 +29695,320 @@ entities: - type: Transform pos: 0.5,66.5 parent: 30 + - uid: 20320 + components: + - type: Transform + pos: -9.5,-39.5 + parent: 30 + - uid: 20321 + components: + - type: Transform + pos: -8.5,-39.5 + parent: 30 + - uid: 20322 + components: + - type: Transform + pos: -7.5,-39.5 + parent: 30 + - uid: 20323 + components: + - type: Transform + pos: -7.5,-38.5 + parent: 30 + - uid: 20324 + components: + - type: Transform + pos: -7.5,-37.5 + parent: 30 + - uid: 20327 + components: + - type: Transform + pos: -7.5,-36.5 + parent: 30 + - uid: 20328 + components: + - type: Transform + pos: -7.5,-35.5 + parent: 30 + - uid: 20334 + components: + - type: Transform + pos: -7.5,-34.5 + parent: 30 + - uid: 20343 + components: + - type: Transform + pos: -6.5,-35.5 + parent: 30 + - uid: 20344 + components: + - type: Transform + pos: -8.5,-35.5 + parent: 30 + - uid: 20346 + components: + - type: Transform + pos: -12.5,-38.5 + parent: 30 + - uid: 20353 + components: + - type: Transform + pos: -6.5,-39.5 + parent: 30 + - uid: 20354 + components: + - type: Transform + pos: -5.5,-39.5 + parent: 30 + - uid: 20355 + components: + - type: Transform + pos: -4.5,-39.5 + parent: 30 + - uid: 20356 + components: + - type: Transform + pos: -3.5,-39.5 + parent: 30 + - uid: 20357 + components: + - type: Transform + pos: -2.5,-39.5 + parent: 30 + - uid: 20358 + components: + - type: Transform + pos: -2.5,-38.5 + parent: 30 + - uid: 20359 + components: + - type: Transform + pos: -2.5,-40.5 + parent: 30 + - uid: 20361 + components: + - type: Transform + pos: -1.5,-40.5 + parent: 30 + - uid: 20362 + components: + - type: Transform + pos: -0.5,-40.5 + parent: 30 - uid: 20363 components: - type: Transform - pos: -0.5,-49.5 + pos: 0.5,-40.5 parent: 30 - uid: 20364 components: - type: Transform - pos: 0.5,-49.5 + pos: 1.5,-40.5 parent: 30 - uid: 20365 components: - type: Transform - pos: 1.5,-49.5 + pos: 1.5,-39.5 parent: 30 - uid: 20366 components: - type: Transform - pos: 1.5,-51.5 - parent: 30 - - uid: 20367 - components: - - type: Transform - pos: 1.5,-50.5 + pos: 1.5,-38.5 parent: 30 - uid: 20368 + components: + - type: Transform + pos: 1.5,-42.5 + parent: 30 + - uid: 20396 + components: + - type: Transform + pos: 0.5,-42.5 + parent: 30 + - uid: 20397 + components: + - type: Transform + pos: 0.5,-43.5 + parent: 30 + - uid: 20399 + components: + - type: Transform + pos: 0.5,-44.5 + parent: 30 + - uid: 20409 + components: + - type: Transform + pos: 0.5,-45.5 + parent: 30 + - uid: 20410 + components: + - type: Transform + pos: 0.5,-46.5 + parent: 30 + - uid: 20411 + components: + - type: Transform + pos: 1.5,-44.5 + parent: 30 + - uid: 20412 + components: + - type: Transform + pos: 2.5,-44.5 + parent: 30 + - uid: 20413 + components: + - type: Transform + pos: 3.5,-44.5 + parent: 30 + - uid: 20414 + components: + - type: Transform + pos: 4.5,-44.5 + parent: 30 + - uid: 20415 + components: + - type: Transform + pos: 5.5,-44.5 + parent: 30 + - uid: 20416 + components: + - type: Transform + pos: 6.5,-44.5 + parent: 30 + - uid: 20417 + components: + - type: Transform + pos: 6.5,-45.5 + parent: 30 + - uid: 20418 + components: + - type: Transform + pos: 6.5,-46.5 + parent: 30 + - uid: 20419 + components: + - type: Transform + pos: -0.5,-46.5 + parent: 30 + - uid: 20420 + components: + - type: Transform + pos: -1.5,-46.5 + parent: 30 + - uid: 20421 + components: + - type: Transform + pos: -2.5,-46.5 + parent: 30 + - uid: 20422 + components: + - type: Transform + pos: 0.5,-47.5 + parent: 30 + - uid: 20423 + components: + - type: Transform + pos: 0.5,-48.5 + parent: 30 + - uid: 20424 + components: + - type: Transform + pos: -0.5,-48.5 + parent: 30 + - uid: 20425 + components: + - type: Transform + pos: -1.5,-48.5 + parent: 30 + - uid: 20426 + components: + - type: Transform + pos: -2.5,-48.5 + parent: 30 + - uid: 20427 + components: + - type: Transform + pos: -3.5,-48.5 + parent: 30 + - uid: 20428 + components: + - type: Transform + pos: -3.5,-49.5 + parent: 30 + - uid: 20429 + components: + - type: Transform + pos: -3.5,-50.5 + parent: 30 + - uid: 20430 + components: + - type: Transform + pos: -3.5,-51.5 + parent: 30 + - uid: 20431 + components: + - type: Transform + pos: -3.5,-52.5 + parent: 30 + - uid: 20440 + components: + - type: Transform + pos: -2.5,-52.5 + parent: 30 + - uid: 20450 + components: + - type: Transform + pos: -1.5,-52.5 + parent: 30 + - uid: 20462 + components: + - type: Transform + pos: -0.5,-52.5 + parent: 30 + - uid: 20463 + components: + - type: Transform + pos: 0.5,-52.5 + parent: 30 + - uid: 20464 components: - type: Transform pos: 1.5,-52.5 parent: 30 - - uid: 20369 + - uid: 20465 components: - type: Transform - pos: 1.5,-53.5 + pos: 2.5,-52.5 parent: 30 - - uid: 20370 + - uid: 20466 components: - type: Transform - pos: 1.5,-54.5 + pos: 3.5,-52.5 parent: 30 - - uid: 20371 + - uid: 20467 components: - type: Transform - pos: 0.5,-54.5 + pos: 3.5,-51.5 + parent: 30 + - uid: 20468 + components: + - type: Transform + pos: 3.5,-50.5 + parent: 30 + - uid: 20469 + components: + - type: Transform + pos: 3.5,-49.5 + parent: 30 + - uid: 20470 + components: + - type: Transform + pos: 3.5,-48.5 + parent: 30 + - uid: 20474 + components: + - type: Transform + pos: 2.5,-48.5 parent: 30 - uid: 20504 components: @@ -30665,6 +30075,56 @@ entities: - type: Transform pos: -33.5,-35.5 parent: 30 + - uid: 20518 + components: + - type: Transform + pos: 1.5,-48.5 + parent: 30 + - uid: 20527 + components: + - type: Transform + pos: -0.5,-55.5 + parent: 30 + - uid: 20528 + components: + - type: Transform + pos: -0.5,-56.5 + parent: 30 + - uid: 20538 + components: + - type: Transform + pos: -0.5,-54.5 + parent: 30 + - uid: 20539 + components: + - type: Transform + pos: -0.5,-53.5 + parent: 30 + - uid: 20544 + components: + - type: Transform + pos: 0.5,-56.5 + parent: 30 + - uid: 20545 + components: + - type: Transform + pos: 1.5,-56.5 + parent: 30 + - uid: 20562 + components: + - type: Transform + pos: 2.5,-56.5 + parent: 30 + - uid: 20569 + components: + - type: Transform + pos: 3.5,-56.5 + parent: 30 + - uid: 20570 + components: + - type: Transform + pos: -1.5,-56.5 + parent: 30 - uid: 20582 components: - type: Transform @@ -30685,6 +30145,41 @@ entities: - type: Transform pos: -59.5,4.5 parent: 30 + - uid: 20590 + components: + - type: Transform + pos: -2.5,-56.5 + parent: 30 + - uid: 20591 + components: + - type: Transform + pos: -3.5,-56.5 + parent: 30 + - uid: 20613 + components: + - type: Transform + pos: -4.5,-56.5 + parent: 30 + - uid: 20617 + components: + - type: Transform + pos: 4.5,-52.5 + parent: 30 + - uid: 20618 + components: + - type: Transform + pos: -0.5,-33.5 + parent: 30 + - uid: 20619 + components: + - type: Transform + pos: -1.5,-33.5 + parent: 30 + - uid: 20620 + components: + - type: Transform + pos: -2.5,-33.5 + parent: 30 - uid: 21007 components: - type: Transform @@ -31195,276 +30690,6 @@ entities: - type: Transform pos: 1.5,10.5 parent: 30 - - uid: 22706 - components: - - type: Transform - pos: -33.5,-57.5 - parent: 30 - - uid: 22707 - components: - - type: Transform - pos: -34.5,-57.5 - parent: 30 - - uid: 22708 - components: - - type: Transform - pos: -34.5,-58.5 - parent: 30 - - uid: 22709 - components: - - type: Transform - pos: -34.5,-59.5 - parent: 30 - - uid: 22710 - components: - - type: Transform - pos: -34.5,-60.5 - parent: 30 - - uid: 22711 - components: - - type: Transform - pos: -34.5,-61.5 - parent: 30 - - uid: 22712 - components: - - type: Transform - pos: -34.5,-62.5 - parent: 30 - - uid: 22713 - components: - - type: Transform - pos: -34.5,-63.5 - parent: 30 - - uid: 22714 - components: - - type: Transform - pos: -35.5,-60.5 - parent: 30 - - uid: 22715 - components: - - type: Transform - pos: -36.5,-60.5 - parent: 30 - - uid: 22716 - components: - - type: Transform - pos: -36.5,-61.5 - parent: 30 - - uid: 22717 - components: - - type: Transform - pos: -37.5,-61.5 - parent: 30 - - uid: 22718 - components: - - type: Transform - pos: -38.5,-61.5 - parent: 30 - - uid: 22719 - components: - - type: Transform - pos: -39.5,-61.5 - parent: 30 - - uid: 22720 - components: - - type: Transform - pos: -39.5,-60.5 - parent: 30 - - uid: 22721 - components: - - type: Transform - pos: -40.5,-60.5 - parent: 30 - - uid: 22722 - components: - - type: Transform - pos: -41.5,-60.5 - parent: 30 - - uid: 22723 - components: - - type: Transform - pos: -39.5,-59.5 - parent: 30 - - uid: 22724 - components: - - type: Transform - pos: -38.5,-59.5 - parent: 30 - - uid: 22725 - components: - - type: Transform - pos: -37.5,-59.5 - parent: 30 - - uid: 22726 - components: - - type: Transform - pos: -36.5,-59.5 - parent: 30 - - uid: 22727 - components: - - type: Transform - pos: -41.5,-59.5 - parent: 30 - - uid: 22728 - components: - - type: Transform - pos: -41.5,-58.5 - parent: 30 - - uid: 22729 - components: - - type: Transform - pos: -41.5,-61.5 - parent: 30 - - uid: 22730 - components: - - type: Transform - pos: -41.5,-62.5 - parent: 30 - - uid: 22731 - components: - - type: Transform - pos: -36.5,-58.5 - parent: 30 - - uid: 22732 - components: - - type: Transform - pos: -36.5,-62.5 - parent: 30 - - uid: 22733 - components: - - type: Transform - pos: -39.5,-62.5 - parent: 30 - - uid: 22734 - components: - - type: Transform - pos: -39.5,-58.5 - parent: 30 - - uid: 22735 - components: - - type: Transform - pos: -28.5,-60.5 - parent: 30 - - uid: 22736 - components: - - type: Transform - pos: -29.5,-60.5 - parent: 30 - - uid: 22737 - components: - - type: Transform - pos: -29.5,-61.5 - parent: 30 - - uid: 22738 - components: - - type: Transform - pos: -29.5,-62.5 - parent: 30 - - uid: 22739 - components: - - type: Transform - pos: -29.5,-63.5 - parent: 30 - - uid: 22740 - components: - - type: Transform - pos: -30.5,-63.5 - parent: 30 - - uid: 22741 - components: - - type: Transform - pos: -29.5,-59.5 - parent: 30 - - uid: 22742 - components: - - type: Transform - pos: -29.5,-58.5 - parent: 30 - - uid: 22743 - components: - - type: Transform - pos: -29.5,-57.5 - parent: 30 - - uid: 22744 - components: - - type: Transform - pos: -30.5,-57.5 - parent: 30 - - uid: 22745 - components: - - type: Transform - pos: -30.5,-60.5 - parent: 30 - - uid: 22746 - components: - - type: Transform - pos: -31.5,-60.5 - parent: 30 - - uid: 22747 - components: - - type: Transform - pos: -28.5,-58.5 - parent: 30 - - uid: 22748 - components: - - type: Transform - pos: -26.5,-58.5 - parent: 30 - - uid: 22749 - components: - - type: Transform - pos: -25.5,-58.5 - parent: 30 - - uid: 22750 - components: - - type: Transform - pos: -25.5,-58.5 - parent: 30 - - uid: 22751 - components: - - type: Transform - pos: -27.5,-58.5 - parent: 30 - - uid: 22752 - components: - - type: Transform - pos: -26.5,-59.5 - parent: 30 - - uid: 22753 - components: - - type: Transform - pos: -26.5,-60.5 - parent: 30 - - uid: 22754 - components: - - type: Transform - pos: -26.5,-62.5 - parent: 30 - - uid: 22755 - components: - - type: Transform - pos: -26.5,-61.5 - parent: 30 - - uid: 22756 - components: - - type: Transform - pos: -24.5,-58.5 - parent: 30 - - uid: 22757 - components: - - type: Transform - pos: -23.5,-58.5 - parent: 30 - - uid: 22758 - components: - - type: Transform - pos: -22.5,-58.5 - parent: 30 - - uid: 22759 - components: - - type: Transform - pos: -21.5,-58.5 - parent: 30 - proto: CableApcStack entities: - uid: 1637 @@ -31477,11 +30702,6 @@ entities: - type: Transform pos: -36.516556,-12.325844 parent: 30 - - uid: 9605 - components: - - type: Transform - pos: -15.653,-34.268528 - parent: 30 - uid: 10259 components: - type: Transform @@ -31497,15 +30717,15 @@ entities: - type: Transform pos: -42.554832,27.618874 parent: 30 - - uid: 11310 + - uid: 11024 components: - type: Transform - pos: -11.510529,-35.15977 + pos: -5.583432,-34.527874 parent: 30 - uid: 18792 components: - type: Transform - pos: -66.4926,-62.50162 + pos: -55.006935,-63.112835 parent: 30 - uid: 20302 components: @@ -31519,15 +30739,10 @@ entities: parent: 30 - proto: CableHV entities: - - uid: 829 + - uid: 867 components: - type: Transform - pos: -20.5,-56.5 - parent: 30 - - uid: 833 - components: - - type: Transform - pos: -20.5,-57.5 + pos: -17.5,-47.5 parent: 30 - uid: 933 components: @@ -31549,6 +30764,16 @@ entities: - type: Transform pos: -46.5,8.5 parent: 30 + - uid: 2403 + components: + - type: Transform + pos: -55.5,-60.5 + parent: 30 + - uid: 3152 + components: + - type: Transform + pos: -17.5,-48.5 + parent: 30 - uid: 3187 components: - type: Transform @@ -31559,6 +30784,11 @@ entities: - type: Transform pos: -47.5,9.5 parent: 30 + - uid: 3221 + components: + - type: Transform + pos: -23.5,-57.5 + parent: 30 - uid: 3532 components: - type: Transform @@ -31739,10 +30969,15 @@ entities: - type: Transform pos: -44.5,18.5 parent: 30 - - uid: 4444 + - uid: 4406 components: - type: Transform - pos: -20.5,-58.5 + pos: -3.5,-44.5 + parent: 30 + - uid: 4412 + components: + - type: Transform + pos: -20.5,-41.5 parent: 30 - uid: 4456 components: @@ -32494,11 +31729,6 @@ entities: - type: Transform pos: -22.5,43.5 parent: 30 - - uid: 5240 - components: - - type: Transform - pos: -24.5,-58.5 - parent: 30 - uid: 5507 components: - type: Transform @@ -32744,21 +31974,6 @@ entities: - type: Transform pos: 12.5,42.5 parent: 30 - - uid: 5635 - components: - - type: Transform - pos: -23.5,-58.5 - parent: 30 - - uid: 5722 - components: - - type: Transform - pos: -22.5,-58.5 - parent: 30 - - uid: 6095 - components: - - type: Transform - pos: -21.5,-58.5 - parent: 30 - uid: 6387 components: - type: Transform @@ -32859,10 +32074,70 @@ entities: - type: Transform pos: 19.5,31.5 parent: 30 + - uid: 6467 + components: + - type: Transform + pos: -13.5,-32.5 + parent: 30 + - uid: 7096 + components: + - type: Transform + pos: -24.5,-41.5 + parent: 30 + - uid: 7097 + components: + - type: Transform + pos: -2.5,-44.5 + parent: 30 + - uid: 7101 + components: + - type: Transform + pos: -5.5,-39.5 + parent: 30 + - uid: 7104 + components: + - type: Transform + pos: -3.5,-39.5 + parent: 30 + - uid: 7105 + components: + - type: Transform + pos: -2.5,-39.5 + parent: 30 - uid: 7106 components: - type: Transform - pos: -7.5,-45.5 + pos: -1.5,-39.5 + parent: 30 + - uid: 7108 + components: + - type: Transform + pos: -13.5,-34.5 + parent: 30 + - uid: 7109 + components: + - type: Transform + pos: -4.5,-39.5 + parent: 30 + - uid: 7207 + components: + - type: Transform + pos: -8.5,-51.5 + parent: 30 + - uid: 7208 + components: + - type: Transform + pos: -9.5,-51.5 + parent: 30 + - uid: 7219 + components: + - type: Transform + pos: -10.5,-51.5 + parent: 30 + - uid: 7220 + components: + - type: Transform + pos: -16.5,-35.5 parent: 30 - uid: 7615 components: @@ -33379,260 +32654,165 @@ entities: - type: Transform pos: -0.5,-11.5 parent: 30 - - uid: 7965 - components: - - type: Transform - pos: -7.5,-46.5 - parent: 30 - - uid: 8225 - components: - - type: Transform - pos: -7.5,-47.5 - parent: 30 - - uid: 8230 - components: - - type: Transform - pos: -7.5,-48.5 - parent: 30 - - uid: 8231 - components: - - type: Transform - pos: -7.5,-49.5 - parent: 30 - uid: 8232 components: - type: Transform - pos: -7.5,-50.5 + pos: -16.5,-28.5 + parent: 30 + - uid: 8233 + components: + - type: Transform + pos: -15.5,-28.5 + parent: 30 + - uid: 8235 + components: + - type: Transform + pos: -15.5,-30.5 + parent: 30 + - uid: 8236 + components: + - type: Transform + pos: -15.5,-29.5 + parent: 30 + - uid: 8253 + components: + - type: Transform + pos: -13.5,-30.5 + parent: 30 + - uid: 8256 + components: + - type: Transform + pos: -14.5,-30.5 + parent: 30 + - uid: 8337 + components: + - type: Transform + pos: -12.5,-40.5 parent: 30 - uid: 8402 components: - type: Transform pos: 3.5,-13.5 parent: 30 - - uid: 9293 + - uid: 8606 components: - type: Transform - pos: 3.5,-37.5 + pos: -7.5,-43.5 parent: 30 - - uid: 9484 + - uid: 8798 components: - type: Transform - pos: -8.5,-33.5 + pos: -13.5,-33.5 parent: 30 - - uid: 9485 + - uid: 8801 components: - type: Transform - pos: -7.5,-33.5 + pos: -10.5,-39.5 parent: 30 - - uid: 9486 + - uid: 9400 components: - type: Transform - pos: -6.5,-33.5 + pos: -20.5,-55.5 parent: 30 - - uid: 9490 + - uid: 9404 components: - type: Transform - pos: -8.5,-35.5 + pos: -19.5,-52.5 parent: 30 - - uid: 9491 + - uid: 9420 components: - type: Transform - pos: -7.5,-35.5 + pos: -15.5,-40.5 parent: 30 - - uid: 9492 + - uid: 9427 components: - type: Transform - pos: -6.5,-35.5 + pos: -23.5,-58.5 + parent: 30 + - uid: 9429 + components: + - type: Transform + pos: -23.5,-56.5 + parent: 30 + - uid: 9430 + components: + - type: Transform + pos: -6.5,-44.5 + parent: 30 + - uid: 9437 + components: + - type: Transform + pos: -23.5,-55.5 + parent: 30 + - uid: 9438 + components: + - type: Transform + pos: -22.5,-55.5 + parent: 30 + - uid: 9462 + components: + - type: Transform + pos: -5.5,-42.5 + parent: 30 + - uid: 9465 + components: + - type: Transform + pos: -8.5,-44.5 + parent: 30 + - uid: 9469 + components: + - type: Transform + pos: -9.5,-44.5 + parent: 30 + - uid: 9474 + components: + - type: Transform + pos: -12.5,-46.5 + parent: 30 + - uid: 9475 + components: + - type: Transform + pos: -11.5,-44.5 + parent: 30 + - uid: 9476 + components: + - type: Transform + pos: -12.5,-48.5 + parent: 30 + - uid: 9479 + components: + - type: Transform + pos: -16.5,-43.5 + parent: 30 + - uid: 9480 + components: + - type: Transform + pos: -13.5,-43.5 parent: 30 - uid: 9493 components: - type: Transform - pos: -8.5,-34.5 - parent: 30 - - uid: 9494 - components: - - type: Transform - pos: -6.5,-34.5 - parent: 30 - - uid: 9495 - components: - - type: Transform - pos: -7.5,-34.5 - parent: 30 - - uid: 9499 - components: - - type: Transform - pos: -9.5,-33.5 + pos: -17.5,-43.5 parent: 30 - uid: 9500 components: - type: Transform - pos: -7.5,-36.5 - parent: 30 - - uid: 9501 - components: - - type: Transform - pos: -7.5,-37.5 - parent: 30 - - uid: 9502 - components: - - type: Transform - pos: -7.5,-38.5 - parent: 30 - - uid: 9503 - components: - - type: Transform - pos: -6.5,-38.5 - parent: 30 - - uid: 9504 - components: - - type: Transform - pos: -5.5,-38.5 - parent: 30 - - uid: 9505 - components: - - type: Transform - pos: -4.5,-38.5 - parent: 30 - - uid: 9506 - components: - - type: Transform - pos: -3.5,-38.5 - parent: 30 - - uid: 9507 - components: - - type: Transform - pos: -10.5,-33.5 - parent: 30 - - uid: 9508 - components: - - type: Transform - pos: -11.5,-33.5 - parent: 30 - - uid: 9509 - components: - - type: Transform - pos: -12.5,-33.5 - parent: 30 - - uid: 9510 - components: - - type: Transform - pos: -12.5,-34.5 - parent: 30 - - uid: 9511 - components: - - type: Transform - pos: -12.5,-35.5 + pos: -15.5,-36.5 parent: 30 - uid: 9512 components: - type: Transform pos: -12.5,-36.5 parent: 30 - - uid: 9513 - components: - - type: Transform - pos: -12.5,-37.5 - parent: 30 - - uid: 9514 - components: - - type: Transform - pos: -12.5,-38.5 - parent: 30 - - uid: 9515 - components: - - type: Transform - pos: -12.5,-40.5 - parent: 30 - - uid: 9516 - components: - - type: Transform - pos: -12.5,-39.5 - parent: 30 - - uid: 9517 - components: - - type: Transform - pos: -12.5,-32.5 - parent: 30 - - uid: 9518 - components: - - type: Transform - pos: -12.5,-31.5 - parent: 30 - - uid: 9519 - components: - - type: Transform - pos: -12.5,-30.5 - parent: 30 - - uid: 9520 - components: - - type: Transform - pos: -12.5,-29.5 - parent: 30 - uid: 9521 components: - type: Transform - pos: -11.5,-29.5 + pos: -11.5,-51.5 parent: 30 - uid: 9522 components: - type: Transform - pos: -9.5,-29.5 - parent: 30 - - uid: 9523 - components: - - type: Transform - pos: -10.5,-29.5 - parent: 30 - - uid: 9524 - components: - - type: Transform - pos: -8.5,-29.5 - parent: 30 - - uid: 9525 - components: - - type: Transform - pos: -7.5,-29.5 - parent: 30 - - uid: 9526 - components: - - type: Transform - pos: -6.5,-29.5 - parent: 30 - - uid: 9527 - components: - - type: Transform - pos: -5.5,-29.5 - parent: 30 - - uid: 9528 - components: - - type: Transform - pos: -13.5,-29.5 - parent: 30 - - uid: 9529 - components: - - type: Transform - pos: -2.5,-38.5 - parent: 30 - - uid: 9530 - components: - - type: Transform - pos: -1.5,-38.5 - parent: 30 - - uid: 9531 - components: - - type: Transform - pos: -0.5,-38.5 - parent: 30 - - uid: 9532 - components: - - type: Transform - pos: 0.5,-38.5 - parent: 30 - - uid: 9533 - components: - - type: Transform - pos: 1.5,-38.5 + pos: -16.5,-34.5 parent: 30 - uid: 9534 components: @@ -33779,15 +32959,30 @@ entities: - type: Transform pos: -2.5,-15.5 parent: 30 - - uid: 9571 + - uid: 9568 components: - type: Transform - pos: 2.5,-38.5 + pos: -14.5,-40.5 parent: 30 - - uid: 9572 + - uid: 9570 components: - type: Transform - pos: 3.5,-38.5 + pos: -7.5,-42.5 + parent: 30 + - uid: 9576 + components: + - type: Transform + pos: -25.5,-41.5 + parent: 30 + - uid: 9577 + components: + - type: Transform + pos: -1.5,-44.5 + parent: 30 + - uid: 9578 + components: + - type: Transform + pos: -21.5,-41.5 parent: 30 - uid: 9594 components: @@ -33799,260 +32994,365 @@ entities: - type: Transform pos: 3.5,-10.5 parent: 30 - - uid: 9793 + - uid: 9620 components: - type: Transform - pos: -12.5,-42.5 + pos: 1.5,-38.5 parent: 30 - - uid: 9795 + - uid: 9621 components: - type: Transform - pos: -17.5,-41.5 + pos: -0.5,-39.5 parent: 30 - - uid: 9839 + - uid: 9622 components: - type: Transform - pos: -7.5,-44.5 + pos: 0.5,-39.5 parent: 30 - - uid: 9999 + - uid: 9623 components: - type: Transform - pos: -17.5,-42.5 + pos: 1.5,-39.5 parent: 30 - - uid: 10151 + - uid: 9703 components: - type: Transform - pos: -13.5,-40.5 + pos: -5.5,-43.5 parent: 30 - - uid: 10152 + - uid: 9789 components: - type: Transform - pos: -14.5,-40.5 + pos: -0.5,-50.5 parent: 30 - - uid: 10153 + - uid: 9808 components: - type: Transform - pos: -15.5,-40.5 + pos: -6.5,-40.5 parent: 30 - - uid: 10154 + - uid: 9814 components: - type: Transform - pos: -16.5,-40.5 + pos: -7.5,-39.5 parent: 30 - - uid: 10155 + - uid: 9830 components: - type: Transform - pos: -17.5,-40.5 + pos: -6.5,-41.5 parent: 30 - - uid: 10156 + - uid: 9875 components: - type: Transform - pos: -7.5,-43.5 + pos: -6.5,-39.5 parent: 30 - - uid: 10157 + - uid: 9880 components: - type: Transform - pos: -7.5,-42.5 + pos: -9.5,-39.5 parent: 30 - - uid: 10158 + - uid: 9895 components: - type: Transform - pos: -7.5,-41.5 + pos: -22.5,-41.5 parent: 30 - - uid: 10159 + - uid: 9937 components: - type: Transform - pos: -7.5,-40.5 + pos: -12.5,-49.5 parent: 30 - - uid: 10160 + - uid: 9945 components: - type: Transform - pos: -8.5,-40.5 + pos: -12.5,-51.5 parent: 30 - - uid: 10161 + - uid: 9950 components: - type: Transform - pos: -9.5,-40.5 + pos: -12.5,-50.5 parent: 30 - - uid: 10162 + - uid: 9952 components: - type: Transform - pos: -10.5,-40.5 + pos: -16.5,-37.5 parent: 30 - - uid: 10163 - components: - - type: Transform - pos: -11.5,-40.5 - parent: 30 - - uid: 10164 - components: - - type: Transform - pos: -17.5,-43.5 - parent: 30 - - uid: 10165 - components: - - type: Transform - pos: -17.5,-44.5 - parent: 30 - - uid: 10166 - components: - - type: Transform - pos: -17.5,-45.5 - parent: 30 - - uid: 10167 + - uid: 9987 components: - type: Transform pos: -17.5,-46.5 parent: 30 - - uid: 10168 - components: - - type: Transform - pos: -17.5,-47.5 - parent: 30 - - uid: 10169 - components: - - type: Transform - pos: -17.5,-48.5 - parent: 30 - - uid: 10170 - components: - - type: Transform - pos: -17.5,-49.5 - parent: 30 - - uid: 10171 - components: - - type: Transform - pos: -17.5,-50.5 - parent: 30 - - uid: 10172 - components: - - type: Transform - pos: -17.5,-51.5 - parent: 30 - - uid: 10173 - components: - - type: Transform - pos: -17.5,-52.5 - parent: 30 - - uid: 10174 - components: - - type: Transform - pos: -17.5,-53.5 - parent: 30 - - uid: 10175 - components: - - type: Transform - pos: -17.5,-54.5 - parent: 30 - - uid: 10176 - components: - - type: Transform - pos: -17.5,-55.5 - parent: 30 - - uid: 10177 - components: - - type: Transform - pos: -17.5,-56.5 - parent: 30 - - uid: 10178 - components: - - type: Transform - pos: -17.5,-57.5 - parent: 30 - - uid: 10179 - components: - - type: Transform - pos: -17.5,-58.5 - parent: 30 - - uid: 10180 - components: - - type: Transform - pos: -17.5,-59.5 - parent: 30 - - uid: 10181 + - uid: 10087 components: - type: Transform pos: -17.5,-60.5 parent: 30 - - uid: 10182 + - uid: 10090 components: - type: Transform - pos: -17.5,-61.5 + pos: -16.5,-60.5 parent: 30 - - uid: 10183 + - uid: 10138 components: - type: Transform - pos: -17.5,-62.5 + pos: -20.5,-60.5 parent: 30 - - uid: 10184 + - uid: 10142 components: - type: Transform - pos: -17.5,-63.5 + pos: -14.5,-60.5 parent: 30 - - uid: 10185 + - uid: 10144 components: - type: Transform - pos: -17.5,-64.5 + pos: -19.5,-60.5 parent: 30 - - uid: 10535 + - uid: 10153 components: - type: Transform - pos: -16.5,-51.5 + pos: -19.5,-55.5 parent: 30 - - uid: 10670 + - uid: 10154 components: - type: Transform - pos: -20.5,-55.5 + pos: -19.5,-53.5 parent: 30 - - uid: 10671 + - uid: 10156 + components: + - type: Transform + pos: -19.5,-47.5 + parent: 30 + - uid: 10164 + components: + - type: Transform + pos: -18.5,-60.5 + parent: 30 + - uid: 10189 + components: + - type: Transform + pos: -54.5,-62.5 + parent: 30 + - uid: 10204 + components: + - type: Transform + pos: -0.5,-47.5 + parent: 30 + - uid: 10211 + components: + - type: Transform + pos: -0.5,-46.5 + parent: 30 + - uid: 10271 + components: + - type: Transform + pos: -18.5,-46.5 + parent: 30 + - uid: 10274 components: - type: Transform pos: -21.5,-55.5 parent: 30 - - uid: 10672 + - uid: 10510 components: - type: Transform - pos: -22.5,-55.5 + pos: -12.5,-43.5 parent: 30 - - uid: 10673 + - uid: 10529 components: - type: Transform - pos: -22.5,-54.5 + pos: -7.5,-44.5 parent: 30 - - uid: 10674 + - uid: 10530 components: - type: Transform - pos: -22.5,-53.5 + pos: -12.5,-44.5 parent: 30 - - uid: 10675 + - uid: 10537 components: - type: Transform - pos: -22.5,-52.5 + pos: -19.5,-46.5 parent: 30 - - uid: 10676 + - uid: 10539 components: - type: Transform - pos: -22.5,-51.5 + pos: -10.5,-44.5 parent: 30 - - uid: 10677 + - uid: 10540 components: - type: Transform - pos: -22.5,-50.5 + pos: -12.5,-47.5 parent: 30 - - uid: 10678 + - uid: 10541 components: - type: Transform - pos: -22.5,-49.5 + pos: -15.5,-43.5 parent: 30 - - uid: 10688 + - uid: 10542 components: - type: Transform - pos: -22.5,-48.5 + pos: -17.5,-44.5 parent: 30 - - uid: 10696 + - uid: 10543 components: - type: Transform - pos: -22.5,-47.5 + pos: -14.5,-43.5 + parent: 30 + - uid: 10544 + components: + - type: Transform + pos: -16.5,-36.5 + parent: 30 + - uid: 10547 + components: + - type: Transform + pos: -4.5,-44.5 + parent: 30 + - uid: 10586 + components: + - type: Transform + pos: -19.5,-54.5 + parent: 30 + - uid: 10588 + components: + - type: Transform + pos: -15.5,-60.5 + parent: 30 + - uid: 10599 + components: + - type: Transform + pos: -19.5,-48.5 + parent: 30 + - uid: 10601 + components: + - type: Transform + pos: -12.5,-45.5 + parent: 30 + - uid: 10611 + components: + - type: Transform + pos: -5.5,-44.5 + parent: 30 + - uid: 10628 + components: + - type: Transform + pos: -21.5,-58.5 + parent: 30 + - uid: 10631 + components: + - type: Transform + pos: -22.5,-58.5 + parent: 30 + - uid: 10633 + components: + - type: Transform + pos: -20.5,-59.5 + parent: 30 + - uid: 10634 + components: + - type: Transform + pos: -20.5,-58.5 + parent: 30 + - uid: 10638 + components: + - type: Transform + pos: -17.5,-45.5 + parent: 30 + - uid: 10694 + components: + - type: Transform + pos: -17.5,-50.5 + parent: 30 + - uid: 10725 + components: + - type: Transform + pos: -17.5,-51.5 + parent: 30 + - uid: 10754 + components: + - type: Transform + pos: -17.5,-49.5 + parent: 30 + - uid: 11066 + components: + - type: Transform + pos: -19.5,-41.5 + parent: 30 + - uid: 11070 + components: + - type: Transform + pos: -0.5,-44.5 + parent: 30 + - uid: 11078 + components: + - type: Transform + pos: -12.5,-37.5 + parent: 30 + - uid: 11082 + components: + - type: Transform + pos: -12.5,-38.5 + parent: 30 + - uid: 11084 + components: + - type: Transform + pos: -8.5,-39.5 + parent: 30 + - uid: 11096 + components: + - type: Transform + pos: -18.5,-41.5 + parent: 30 + - uid: 11097 + components: + - type: Transform + pos: -11.5,-39.5 + parent: 30 + - uid: 11103 + components: + - type: Transform + pos: -12.5,-35.5 + parent: 30 + - uid: 11114 + components: + - type: Transform + pos: -16.5,-39.5 + parent: 30 + - uid: 11120 + components: + - type: Transform + pos: -13.5,-40.5 + parent: 30 + - uid: 11124 + components: + - type: Transform + pos: -0.5,-49.5 + parent: 30 + - uid: 11142 + components: + - type: Transform + pos: -18.5,-51.5 + parent: 30 + - uid: 11143 + components: + - type: Transform + pos: -19.5,-51.5 + parent: 30 + - uid: 11277 + components: + - type: Transform + pos: -6.5,-42.5 + parent: 30 + - uid: 11291 + components: + - type: Transform + pos: -0.5,-45.5 + parent: 30 + - uid: 11307 + components: + - type: Transform + pos: -16.5,-40.5 + parent: 30 + - uid: 11337 + components: + - type: Transform + pos: -12.5,-39.5 parent: 30 - uid: 11378 components: @@ -34244,6 +33544,26 @@ entities: - type: Transform pos: 3.5,-12.5 parent: 30 + - uid: 12213 + components: + - type: Transform + pos: -6.5,-43.5 + parent: 30 + - uid: 12443 + components: + - type: Transform + pos: -12.5,-34.5 + parent: 30 + - uid: 12814 + components: + - type: Transform + pos: -53.5,-62.5 + parent: 30 + - uid: 13083 + components: + - type: Transform + pos: -16.5,-38.5 + parent: 30 - uid: 13842 components: - type: Transform @@ -35969,6 +35289,11 @@ entities: - type: Transform pos: 46.5,31.5 parent: 30 + - uid: 16129 + components: + - type: Transform + pos: -55.5,-62.5 + parent: 30 - uid: 16265 components: - type: Transform @@ -37044,21 +36369,6 @@ entities: - type: Transform pos: -55.5,-48.5 parent: 30 - - uid: 17884 - components: - - type: Transform - pos: -52.5,-59.5 - parent: 30 - - uid: 17885 - components: - - type: Transform - pos: -53.5,-59.5 - parent: 30 - - uid: 17886 - components: - - type: Transform - pos: -54.5,-59.5 - parent: 30 - uid: 17887 components: - type: Transform @@ -37114,6 +36424,16 @@ entities: - type: Transform pos: -55.5,-49.5 parent: 30 + - uid: 17910 + components: + - type: Transform + pos: -54.5,-60.5 + parent: 30 + - uid: 17911 + components: + - type: Transform + pos: -53.5,-60.5 + parent: 30 - uid: 17913 components: - type: Transform @@ -37349,45 +36669,35 @@ entities: - type: Transform pos: -52.5,-43.5 parent: 30 - - uid: 18796 + - uid: 18766 components: - type: Transform - pos: -69.5,-63.5 + pos: -56.5,-65.5 parent: 30 - - uid: 18797 + - uid: 18767 components: - type: Transform - pos: -68.5,-62.5 + pos: -56.5,-64.5 parent: 30 - - uid: 18798 + - uid: 18768 components: - type: Transform - pos: -69.5,-62.5 + pos: -53.5,-61.5 + parent: 30 + - uid: 18795 + components: + - type: Transform + pos: -55.5,-63.5 parent: 30 - uid: 18799 components: - type: Transform - pos: -67.5,-62.5 + pos: -56.5,-63.5 parent: 30 - uid: 18800 components: - type: Transform - pos: -65.5,-62.5 - parent: 30 - - uid: 18801 - components: - - type: Transform - pos: -64.5,-62.5 - parent: 30 - - uid: 18802 - components: - - type: Transform - pos: -64.5,-61.5 - parent: 30 - - uid: 18803 - components: - - type: Transform - pos: -64.5,-60.5 + pos: -56.5,-62.5 parent: 30 - uid: 18804 components: @@ -37434,6 +36744,11 @@ entities: - type: Transform pos: -56.5,-59.5 parent: 30 + - uid: 18924 + components: + - type: Transform + pos: -15.5,-39.5 + parent: 30 - uid: 18926 components: - type: Transform @@ -37509,6 +36824,31 @@ entities: - type: Transform pos: -54.5,-42.5 parent: 30 + - uid: 19243 + components: + - type: Transform + pos: -13.5,-31.5 + parent: 30 + - uid: 19424 + components: + - type: Transform + pos: -0.5,-48.5 + parent: 30 + - uid: 19785 + components: + - type: Transform + pos: -17.5,-41.5 + parent: 30 + - uid: 19801 + components: + - type: Transform + pos: -16.5,-41.5 + parent: 30 + - uid: 19802 + components: + - type: Transform + pos: -23.5,-41.5 + parent: 30 - uid: 19816 components: - type: Transform @@ -37559,51 +36899,6 @@ entities: - type: Transform pos: -26.5,-41.5 parent: 30 - - uid: 20409 - components: - - type: Transform - pos: -25.5,-41.5 - parent: 30 - - uid: 20410 - components: - - type: Transform - pos: -24.5,-41.5 - parent: 30 - - uid: 20411 - components: - - type: Transform - pos: -23.5,-41.5 - parent: 30 - - uid: 20412 - components: - - type: Transform - pos: -23.5,-42.5 - parent: 30 - - uid: 20413 - components: - - type: Transform - pos: -23.5,-43.5 - parent: 30 - - uid: 20414 - components: - - type: Transform - pos: -23.5,-44.5 - parent: 30 - - uid: 20415 - components: - - type: Transform - pos: -23.5,-45.5 - parent: 30 - - uid: 20416 - components: - - type: Transform - pos: -23.5,-46.5 - parent: 30 - - uid: 20417 - components: - - type: Transform - pos: -22.5,-46.5 - parent: 30 - uid: 21289 components: - type: Transform @@ -37659,61 +36954,6 @@ entities: - type: Transform pos: 0.5,84.5 parent: 30 - - uid: 22660 - components: - - type: Transform - pos: -25.5,-58.5 - parent: 30 - - uid: 22661 - components: - - type: Transform - pos: -26.5,-58.5 - parent: 30 - - uid: 22662 - components: - - type: Transform - pos: -26.5,-59.5 - parent: 30 - - uid: 22663 - components: - - type: Transform - pos: -26.5,-60.5 - parent: 30 - - uid: 22664 - components: - - type: Transform - pos: -26.5,-61.5 - parent: 30 - - uid: 22665 - components: - - type: Transform - pos: -25.5,-61.5 - parent: 30 - - uid: 22666 - components: - - type: Transform - pos: -25.5,-62.5 - parent: 30 - - uid: 22667 - components: - - type: Transform - pos: -25.5,-63.5 - parent: 30 - - uid: 22668 - components: - - type: Transform - pos: -26.5,-63.5 - parent: 30 - - uid: 22669 - components: - - type: Transform - pos: -27.5,-63.5 - parent: 30 - - uid: 22670 - components: - - type: Transform - pos: -27.5,-62.5 - parent: 30 - proto: CableHVStack entities: - uid: 1639 @@ -37721,10 +36961,10 @@ entities: - type: Transform pos: -29.80019,33.583 parent: 30 - - uid: 9607 + - uid: 10203 components: - type: Transform - pos: -15.37175,-34.518528 + pos: -24.57955,-44.498714 parent: 30 - uid: 10314 components: @@ -37741,10 +36981,10 @@ entities: - type: Transform pos: -42.242332,27.415749 parent: 30 - - uid: 11312 + - uid: 11025 components: - type: Transform - pos: 1.5133002,-44.49842 + pos: -5.405215,-34.750645 parent: 30 - uid: 15972 components: @@ -37753,6 +36993,16 @@ entities: parent: 30 - proto: CableMV entities: + - uid: 845 + components: + - type: Transform + pos: -11.5,-39.5 + parent: 30 + - uid: 866 + components: + - type: Transform + pos: -10.5,-37.5 + parent: 30 - uid: 948 components: - type: Transform @@ -38523,26 +37773,6 @@ entities: - type: Transform pos: -23.5,6.5 parent: 30 - - uid: 4098 - components: - - type: Transform - pos: -24.5,6.5 - parent: 30 - - uid: 4099 - components: - - type: Transform - pos: -25.5,6.5 - parent: 30 - - uid: 4100 - components: - - type: Transform - pos: -26.5,6.5 - parent: 30 - - uid: 4101 - components: - - type: Transform - pos: -26.5,6.5 - parent: 30 - uid: 4102 components: - type: Transform @@ -38778,6 +38008,16 @@ entities: - type: Transform pos: -5.5,12.5 parent: 30 + - uid: 4426 + components: + - type: Transform + pos: -24.5,7.5 + parent: 30 + - uid: 4455 + components: + - type: Transform + pos: -25.5,7.5 + parent: 30 - uid: 4512 components: - type: Transform @@ -39673,6 +38913,11 @@ entities: - type: Transform pos: -13.5,-7.5 parent: 30 + - uid: 7449 + components: + - type: Transform + pos: -23.5,7.5 + parent: 30 - uid: 7481 components: - type: Transform @@ -39883,16 +39128,6 @@ entities: - type: Transform pos: -24.5,-6.5 parent: 30 - - uid: 8004 - components: - - type: Transform - pos: -4.5,-47.5 - parent: 30 - - uid: 8005 - components: - - type: Transform - pos: -7.5,-46.5 - parent: 30 - uid: 8045 components: - type: Transform @@ -39923,11 +39158,6 @@ entities: - type: Transform pos: -25.5,-5.5 parent: 30 - - uid: 8137 - components: - - type: Transform - pos: -5.5,-15.5 - parent: 30 - uid: 8138 components: - type: Transform @@ -39938,10 +39168,25 @@ entities: - type: Transform pos: -28.5,-5.5 parent: 30 - - uid: 8606 + - uid: 8251 components: - type: Transform - pos: 3.5,-37.5 + pos: -15.5,-40.5 + parent: 30 + - uid: 8837 + components: + - type: Transform + pos: -19.5,-41.5 + parent: 30 + - uid: 9047 + components: + - type: Transform + pos: -20.5,-44.5 + parent: 30 + - uid: 9048 + components: + - type: Transform + pos: -20.5,-43.5 parent: 30 - uid: 9055 components: @@ -40033,210 +39278,120 @@ entities: - type: Transform pos: -30.5,-13.5 parent: 30 - - uid: 10269 + - uid: 9927 + components: + - type: Transform + pos: -16.5,-28.5 + parent: 30 + - uid: 9935 + components: + - type: Transform + pos: -16.5,-29.5 + parent: 30 + - uid: 10143 + components: + - type: Transform + pos: -23.5,-55.5 + parent: 30 + - uid: 10155 + components: + - type: Transform + pos: -17.5,-48.5 + parent: 30 + - uid: 10157 + components: + - type: Transform + pos: -22.5,-60.5 + parent: 30 + - uid: 10158 + components: + - type: Transform + pos: -21.5,-60.5 + parent: 30 + - uid: 10159 + components: + - type: Transform + pos: -20.5,-53.5 + parent: 30 + - uid: 10161 + components: + - type: Transform + pos: -20.5,-42.5 + parent: 30 + - uid: 10162 + components: + - type: Transform + pos: -18.5,-41.5 + parent: 30 + - uid: 10165 + components: + - type: Transform + pos: -23.5,-57.5 + parent: 30 + - uid: 10168 + components: + - type: Transform + pos: -17.5,-50.5 + parent: 30 + - uid: 10169 components: - type: Transform pos: -17.5,-51.5 parent: 30 - - uid: 10270 + - uid: 10177 components: - type: Transform - pos: -17.5,-52.5 + pos: -20.5,-41.5 parent: 30 - - uid: 10271 + - uid: 10178 components: - type: Transform - pos: -17.5,-53.5 + pos: -16.5,-40.5 parent: 30 - - uid: 10272 + - uid: 10183 components: - type: Transform - pos: -17.5,-54.5 + pos: -17.5,-41.5 parent: 30 - - uid: 10273 + - uid: 10184 components: - type: Transform - pos: -17.5,-55.5 + pos: -20.5,-45.5 parent: 30 - - uid: 10274 + - uid: 10187 components: - type: Transform - pos: -17.5,-56.5 + pos: -53.5,-60.5 parent: 30 - - uid: 10275 + - uid: 10207 components: - type: Transform - pos: -17.5,-57.5 + pos: -55.5,-62.5 parent: 30 - - uid: 10276 + - uid: 10209 components: - type: Transform - pos: -17.5,-58.5 + pos: -53.5,-62.5 parent: 30 - - uid: 10277 + - uid: 10210 components: - type: Transform - pos: -17.5,-59.5 + pos: -53.5,-61.5 parent: 30 - - uid: 10278 + - uid: 10441 components: - type: Transform - pos: -17.5,-60.5 + pos: -18.5,-30.5 parent: 30 - - uid: 10279 + - uid: 10532 components: - type: Transform - pos: -17.5,-61.5 + pos: -17.5,-30.5 parent: 30 - - uid: 10280 + - uid: 10533 components: - type: Transform - pos: -17.5,-62.5 - parent: 30 - - uid: 10281 - components: - - type: Transform - pos: -17.5,-63.5 - parent: 30 - - uid: 10282 - components: - - type: Transform - pos: -17.5,-64.5 - parent: 30 - - uid: 10534 - components: - - type: Transform - pos: -16.5,-51.5 - parent: 30 - - uid: 10537 - components: - - type: Transform - pos: 3.5,-38.5 - parent: 30 - - uid: 10538 - components: - - type: Transform - pos: 2.5,-38.5 - parent: 30 - - uid: 10539 - components: - - type: Transform - pos: 1.5,-38.5 - parent: 30 - - uid: 10540 - components: - - type: Transform - pos: 0.5,-38.5 - parent: 30 - - uid: 10541 - components: - - type: Transform - pos: -0.5,-38.5 - parent: 30 - - uid: 10542 - components: - - type: Transform - pos: -1.5,-38.5 - parent: 30 - - uid: 10543 - components: - - type: Transform - pos: -1.5,-38.5 - parent: 30 - - uid: 10544 - components: - - type: Transform - pos: -2.5,-38.5 - parent: 30 - - uid: 10545 - components: - - type: Transform - pos: -3.5,-38.5 - parent: 30 - - uid: 10546 - components: - - type: Transform - pos: -4.5,-38.5 - parent: 30 - - uid: 10547 - components: - - type: Transform - pos: -20.5,-38.5 - parent: 30 - - uid: 10548 - components: - - type: Transform - pos: -19.5,-38.5 - parent: 30 - - uid: 10549 - components: - - type: Transform - pos: -18.5,-38.5 - parent: 30 - - uid: 10550 - components: - - type: Transform - pos: -17.5,-38.5 - parent: 30 - - uid: 10551 - components: - - type: Transform - pos: -16.5,-38.5 - parent: 30 - - uid: 10552 - components: - - type: Transform - pos: -15.5,-38.5 - parent: 30 - - uid: 10553 - components: - - type: Transform - pos: -14.5,-38.5 - parent: 30 - - uid: 10554 - components: - - type: Transform - pos: -13.5,-38.5 - parent: 30 - - uid: 10555 - components: - - type: Transform - pos: -12.5,-38.5 - parent: 30 - - uid: 10556 - components: - - type: Transform - pos: -11.5,-38.5 - parent: 30 - - uid: 10557 - components: - - type: Transform - pos: -10.5,-38.5 - parent: 30 - - uid: 10558 - components: - - type: Transform - pos: -9.5,-38.5 - parent: 30 - - uid: 10559 - components: - - type: Transform - pos: -8.5,-38.5 - parent: 30 - - uid: 10560 - components: - - type: Transform - pos: -7.5,-38.5 - parent: 30 - - uid: 10561 - components: - - type: Transform - pos: -6.5,-38.5 - parent: 30 - - uid: 10562 - components: - - type: Transform - pos: -5.5,-38.5 + pos: -16.5,-30.5 parent: 30 - uid: 10563 components: @@ -40333,16 +39488,186 @@ entities: - type: Transform pos: 9.5,-30.5 parent: 30 - - uid: 10642 + - uid: 10594 components: - type: Transform - pos: -7.5,-40.5 + pos: -16.5,-41.5 parent: 30 - - uid: 10643 + - uid: 10595 + components: + - type: Transform + pos: -24.5,-60.5 + parent: 30 + - uid: 10596 + components: + - type: Transform + pos: -24.5,-62.5 + parent: 30 + - uid: 10600 + components: + - type: Transform + pos: -19.5,-48.5 + parent: 30 + - uid: 10602 + components: + - type: Transform + pos: -24.5,-63.5 + parent: 30 + - uid: 10605 + components: + - type: Transform + pos: -12.5,-40.5 + parent: 30 + - uid: 10615 + components: + - type: Transform + pos: -18.5,-48.5 + parent: 30 + - uid: 10616 + components: + - type: Transform + pos: -17.5,-49.5 + parent: 30 + - uid: 10618 + components: + - type: Transform + pos: -23.5,-56.5 + parent: 30 + - uid: 10620 + components: + - type: Transform + pos: -23.5,-58.5 + parent: 30 + - uid: 10625 + components: + - type: Transform + pos: -10.5,-39.5 + parent: 30 + - uid: 10626 + components: + - type: Transform + pos: -8.5,-39.5 + parent: 30 + - uid: 10630 + components: + - type: Transform + pos: -24.5,-61.5 + parent: 30 + - uid: 10646 + components: + - type: Transform + pos: -19.5,-54.5 + parent: 30 + - uid: 10675 components: - type: Transform pos: -7.5,-39.5 parent: 30 + - uid: 10679 + components: + - type: Transform + pos: -12.5,-39.5 + parent: 30 + - uid: 10681 + components: + - type: Transform + pos: -6.5,-39.5 + parent: 30 + - uid: 10683 + components: + - type: Transform + pos: -1.5,-39.5 + parent: 30 + - uid: 10684 + components: + - type: Transform + pos: 0.5,-39.5 + parent: 30 + - uid: 10685 + components: + - type: Transform + pos: 1.5,-38.5 + parent: 30 + - uid: 10686 + components: + - type: Transform + pos: -15.5,-39.5 + parent: 30 + - uid: 10687 + components: + - type: Transform + pos: -10.5,-38.5 + parent: 30 + - uid: 10688 + components: + - type: Transform + pos: -9.5,-39.5 + parent: 30 + - uid: 11064 + components: + - type: Transform + pos: -13.5,-40.5 + parent: 30 + - uid: 11158 + components: + - type: Transform + pos: -3.5,-39.5 + parent: 30 + - uid: 11227 + components: + - type: Transform + pos: -0.5,-39.5 + parent: 30 + - uid: 11257 + components: + - type: Transform + pos: 1.5,-39.5 + parent: 30 + - uid: 11263 + components: + - type: Transform + pos: -4.5,-39.5 + parent: 30 + - uid: 11268 + components: + - type: Transform + pos: -2.5,-39.5 + parent: 30 + - uid: 11302 + components: + - type: Transform + pos: -21.5,-55.5 + parent: 30 + - uid: 11304 + components: + - type: Transform + pos: -20.5,-55.5 + parent: 30 + - uid: 11313 + components: + - type: Transform + pos: -14.5,-40.5 + parent: 30 + - uid: 11333 + components: + - type: Transform + pos: -22.5,-55.5 + parent: 30 + - uid: 11334 + components: + - type: Transform + pos: -23.5,-59.5 + parent: 30 + - uid: 11344 + components: + - type: Transform + pos: -23.5,-60.5 + parent: 30 + - uid: 11464 + components: + - type: Transform + pos: -68.5,-60.5 + parent: 30 - uid: 11534 components: - type: Transform @@ -40773,25 +40098,40 @@ entities: - type: Transform pos: -10.5,-7.5 parent: 30 - - uid: 12380 + - uid: 12651 components: - type: Transform - pos: -0.5,-47.5 + pos: 21.5,11.5 parent: 30 - - uid: 12443 + - uid: 12652 components: - type: Transform - pos: -1.5,-47.5 + pos: 20.5,11.5 parent: 30 - - uid: 12860 + - uid: 12654 components: - type: Transform - pos: 21.5,12.5 + pos: 19.5,11.5 + parent: 30 + - uid: 12696 + components: + - type: Transform + pos: -69.5,-60.5 parent: 30 - uid: 12862 components: - type: Transform - pos: 20.5,12.5 + pos: 16.5,11.5 + parent: 30 + - uid: 12865 + components: + - type: Transform + pos: 16.5,12.5 + parent: 30 + - uid: 13075 + components: + - type: Transform + pos: -54.5,-62.5 parent: 30 - uid: 13099 components: @@ -41141,28 +40481,13 @@ entities: - uid: 13211 components: - type: Transform - pos: 19.5,12.5 - parent: 30 - - uid: 13283 - components: - - type: Transform - pos: 18.5,13.5 + pos: 18.5,11.5 parent: 30 - uid: 13307 components: - type: Transform pos: 26.5,20.5 parent: 30 - - uid: 13319 - components: - - type: Transform - pos: -2.5,-47.5 - parent: 30 - - uid: 13331 - components: - - type: Transform - pos: 18.5,12.5 - parent: 30 - uid: 13369 components: - type: Transform @@ -41188,6 +40513,26 @@ entities: - type: Transform pos: 15.5,55.5 parent: 30 + - uid: 13972 + components: + - type: Transform + pos: -17.5,-52.5 + parent: 30 + - uid: 14345 + components: + - type: Transform + pos: 17.5,11.5 + parent: 30 + - uid: 14441 + components: + - type: Transform + pos: -54.5,-60.5 + parent: 30 + - uid: 14523 + components: + - type: Transform + pos: -55.5,-60.5 + parent: 30 - uid: 14542 components: - type: Transform @@ -41253,11 +40598,6 @@ entities: - type: Transform pos: 48.5,20.5 parent: 30 - - uid: 14590 - components: - - type: Transform - pos: -7.5,-43.5 - parent: 30 - uid: 14731 components: - type: Transform @@ -41438,46 +40778,16 @@ entities: - type: Transform pos: 32.5,44.5 parent: 30 - - uid: 14808 - components: - - type: Transform - pos: -7.5,-44.5 - parent: 30 - - uid: 14827 - components: - - type: Transform - pos: -7.5,-45.5 - parent: 30 - - uid: 14828 - components: - - type: Transform - pos: -6.5,-47.5 - parent: 30 - - uid: 14848 - components: - - type: Transform - pos: -3.5,-47.5 - parent: 30 - - uid: 14868 - components: - - type: Transform - pos: -7.5,-42.5 - parent: 30 - - uid: 14895 - components: - - type: Transform - pos: -5.5,-47.5 - parent: 30 - - uid: 14915 - components: - - type: Transform - pos: -7.5,-41.5 - parent: 30 - uid: 16128 components: - type: Transform pos: 23.5,-4.5 parent: 30 + - uid: 16404 + components: + - type: Transform + pos: -56.5,-62.5 + parent: 30 - uid: 16420 components: - type: Transform @@ -41488,10 +40798,10 @@ entities: - type: Transform pos: 23.5,-6.5 parent: 30 - - uid: 17593 + - uid: 17785 components: - type: Transform - pos: -7.5,-47.5 + pos: -56.5,-65.5 parent: 30 - uid: 18118 components: @@ -41503,20 +40813,20 @@ entities: - type: Transform pos: 16.5,47.5 parent: 30 - - uid: 18859 + - uid: 18189 components: - type: Transform - pos: -52.5,-59.5 + pos: -56.5,-64.5 parent: 30 - - uid: 18860 + - uid: 18190 components: - type: Transform - pos: -53.5,-59.5 + pos: -56.5,-63.5 parent: 30 - - uid: 18861 + - uid: 18207 components: - type: Transform - pos: -54.5,-59.5 + pos: 16.5,13.5 parent: 30 - uid: 18862 components: @@ -41598,21 +40908,6 @@ entities: - type: Transform pos: -68.5,-58.5 parent: 30 - - uid: 18878 - components: - - type: Transform - pos: -69.5,-58.5 - parent: 30 - - uid: 18879 - components: - - type: Transform - pos: -70.5,-58.5 - parent: 30 - - uid: 18880 - components: - - type: Transform - pos: -70.5,-59.5 - parent: 30 - uid: 18881 components: - type: Transform @@ -41988,6 +41283,31 @@ entities: - type: Transform pos: -59.5,-26.5 parent: 30 + - uid: 19182 + components: + - type: Transform + pos: -5.5,-39.5 + parent: 30 + - uid: 19235 + components: + - type: Transform + pos: -17.5,-53.5 + parent: 30 + - uid: 19412 + components: + - type: Transform + pos: -18.5,-54.5 + parent: 30 + - uid: 19421 + components: + - type: Transform + pos: -20.5,-54.5 + parent: 30 + - uid: 19422 + components: + - type: Transform + pos: -17.5,-54.5 + parent: 30 - uid: 19494 components: - type: Transform @@ -42108,31 +41428,6 @@ entities: - type: Transform pos: -8.5,-13.5 parent: 30 - - uid: 19828 - components: - - type: Transform - pos: -5.5,-16.5 - parent: 30 - - uid: 19829 - components: - - type: Transform - pos: -5.5,-17.5 - parent: 30 - - uid: 19830 - components: - - type: Transform - pos: -5.5,-18.5 - parent: 30 - - uid: 19831 - components: - - type: Transform - pos: -5.5,-19.5 - parent: 30 - - uid: 19832 - components: - - type: Transform - pos: -5.5,-20.5 - parent: 30 - uid: 20157 components: - type: Transform @@ -42173,75 +41468,20 @@ entities: - type: Transform pos: 30.5,6.5 parent: 30 - - uid: 20418 + - uid: 20369 components: - type: Transform - pos: -22.5,-46.5 + pos: 1.5,-40.5 parent: 30 - - uid: 20419 + - uid: 20370 components: - type: Transform - pos: -23.5,-46.5 + pos: 1.5,-41.5 parent: 30 - - uid: 20420 + - uid: 20371 components: - type: Transform - pos: -23.5,-45.5 - parent: 30 - - uid: 20421 - components: - - type: Transform - pos: -23.5,-44.5 - parent: 30 - - uid: 20422 - components: - - type: Transform - pos: -23.5,-43.5 - parent: 30 - - uid: 20423 - components: - - type: Transform - pos: -23.5,-42.5 - parent: 30 - - uid: 20424 - components: - - type: Transform - pos: -22.5,-42.5 - parent: 30 - - uid: 20425 - components: - - type: Transform - pos: -21.5,-42.5 - parent: 30 - - uid: 20426 - components: - - type: Transform - pos: -20.5,-42.5 - parent: 30 - - uid: 20427 - components: - - type: Transform - pos: -19.5,-42.5 - parent: 30 - - uid: 20428 - components: - - type: Transform - pos: -18.5,-42.5 - parent: 30 - - uid: 20429 - components: - - type: Transform - pos: -18.5,-41.5 - parent: 30 - - uid: 20430 - components: - - type: Transform - pos: -18.5,-40.5 - parent: 30 - - uid: 20431 - components: - - type: Transform - pos: -18.5,-39.5 + pos: 1.5,-42.5 parent: 30 - uid: 20893 components: @@ -42763,166 +42003,6 @@ entities: - type: Transform pos: 3.5,10.5 parent: 30 - - uid: 22674 - components: - - type: Transform - pos: -27.5,-62.5 - parent: 30 - - uid: 22675 - components: - - type: Transform - pos: -27.5,-61.5 - parent: 30 - - uid: 22676 - components: - - type: Transform - pos: -26.5,-61.5 - parent: 30 - - uid: 22677 - components: - - type: Transform - pos: -26.5,-60.5 - parent: 30 - - uid: 22678 - components: - - type: Transform - pos: -26.5,-59.5 - parent: 30 - - uid: 22679 - components: - - type: Transform - pos: -27.5,-59.5 - parent: 30 - - uid: 22680 - components: - - type: Transform - pos: -27.5,-58.5 - parent: 30 - - uid: 22681 - components: - - type: Transform - pos: -28.5,-58.5 - parent: 30 - - uid: 22682 - components: - - type: Transform - pos: -29.5,-58.5 - parent: 30 - - uid: 22683 - components: - - type: Transform - pos: -29.5,-59.5 - parent: 30 - - uid: 22684 - components: - - type: Transform - pos: -29.5,-60.5 - parent: 30 - - uid: 22685 - components: - - type: Transform - pos: -28.5,-60.5 - parent: 30 - - uid: 22686 - components: - - type: Transform - pos: -30.5,-60.5 - parent: 30 - - uid: 22687 - components: - - type: Transform - pos: -31.5,-60.5 - parent: 30 - - uid: 22688 - components: - - type: Transform - pos: -32.5,-60.5 - parent: 30 - - uid: 22689 - components: - - type: Transform - pos: -33.5,-60.5 - parent: 30 - - uid: 22690 - components: - - type: Transform - pos: -34.5,-60.5 - parent: 30 - - uid: 22691 - components: - - type: Transform - pos: -34.5,-59.5 - parent: 30 - - uid: 22692 - components: - - type: Transform - pos: -34.5,-58.5 - parent: 30 - - uid: 22693 - components: - - type: Transform - pos: -34.5,-57.5 - parent: 30 - - uid: 22694 - components: - - type: Transform - pos: -33.5,-57.5 - parent: 30 - - uid: 22695 - components: - - type: Transform - pos: -32.5,-59.5 - parent: 30 - - uid: 22696 - components: - - type: Transform - pos: -32.5,-58.5 - parent: 30 - - uid: 22697 - components: - - type: Transform - pos: -32.5,-57.5 - parent: 30 - - uid: 22698 - components: - - type: Transform - pos: -32.5,-61.5 - parent: 30 - - uid: 22699 - components: - - type: Transform - pos: -32.5,-62.5 - parent: 30 - - uid: 22700 - components: - - type: Transform - pos: -32.5,-63.5 - parent: 30 - - uid: 22701 - components: - - type: Transform - pos: -31.5,-59.5 - parent: 30 - - uid: 22702 - components: - - type: Transform - pos: -33.5,-59.5 - parent: 30 - - uid: 22703 - components: - - type: Transform - pos: -33.5,-61.5 - parent: 30 - - uid: 22704 - components: - - type: Transform - pos: -31.5,-61.5 - parent: 30 - - uid: 22705 - components: - - type: Transform - pos: -30.5,-61.5 - parent: 30 - proto: CableMVStack entities: - uid: 1638 @@ -42930,10 +42010,10 @@ entities: - type: Transform pos: -30.17519,33.583 parent: 30 - - uid: 9606 + - uid: 10202 components: - type: Transform - pos: -15.528,-34.377903 + pos: -24.846876,-44.33535 parent: 30 - uid: 10260 components: @@ -42950,10 +42030,18 @@ entities: - type: Transform pos: -42.382957,27.540749 parent: 30 - - uid: 11311 + - uid: 10751 components: - type: Transform - pos: 1.2945502,-44.37342 + pos: -5.4943237,-34.631832 + parent: 30 +- proto: CableMVStack10 + entities: + - uid: 10151 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.347925,-59.731403 parent: 30 - proto: CableTerminal entities: @@ -42967,33 +42055,48 @@ entities: canCollide: False - type: Fixtures fixtures: {} - - uid: 9487 + - uid: 8419 components: - type: Transform - pos: -6.5,-33.5 + rot: 3.141592653589793 rad + pos: -15.5,-29.5 parent: 30 - - type: Physics - canCollide: False - - type: Fixtures - fixtures: {} - - uid: 9488 + - uid: 9412 components: - type: Transform - pos: -8.5,-33.5 + rot: -1.5707963267948966 rad + pos: -18.5,-46.5 parent: 30 - - type: Physics - canCollide: False - - type: Fixtures - fixtures: {} - - uid: 9489 + - uid: 9418 components: - type: Transform - pos: -7.5,-33.5 + rot: 3.141592653589793 rad + pos: -5.5,-44.5 + parent: 30 + - uid: 9451 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-44.5 + parent: 30 + - uid: 9499 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,-34.5 + parent: 30 + - uid: 10503 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-44.5 + parent: 30 + - uid: 11340 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,-35.5 parent: 30 - - type: Physics - canCollide: False - - type: Fixtures - fixtures: {} - uid: 15296 components: - type: Transform @@ -43020,11 +42123,6 @@ entities: rot: -1.5707963267948966 rad pos: 0.5,84.5 parent: 30 - - uid: 22671 - components: - - type: Transform - pos: -25.5,-61.5 - parent: 30 - proto: CandyBowl entities: - uid: 10047 @@ -43056,11 +42154,6 @@ entities: - type: Transform pos: 2.6220274,21.009964 parent: 30 - - uid: 22441 - components: - - type: Transform - pos: 2.452661,20.541075 - parent: 30 - proto: CarbonDioxideCanister entities: - uid: 8772 @@ -43078,10 +42171,10 @@ entities: - type: Transform pos: 19.5,-17.5 parent: 30 - - uid: 10430 + - uid: 9657 components: - type: Transform - pos: -14.5,-47.5 + pos: -5.5,-50.5 parent: 30 - proto: Carpet entities: @@ -43604,76 +42697,6 @@ entities: - type: Transform pos: -79.5,-49.5 parent: 30 - - uid: 19401 - components: - - type: Transform - pos: -59.5,-68.5 - parent: 30 - - uid: 19402 - components: - - type: Transform - pos: -59.5,-67.5 - parent: 30 - - uid: 19403 - components: - - type: Transform - pos: -59.5,-66.5 - parent: 30 - - uid: 19404 - components: - - type: Transform - pos: -59.5,-65.5 - parent: 30 - - uid: 19405 - components: - - type: Transform - pos: -59.5,-64.5 - parent: 30 - - uid: 19406 - components: - - type: Transform - pos: -59.5,-63.5 - parent: 30 - - uid: 19407 - components: - - type: Transform - pos: -59.5,-62.5 - parent: 30 - - uid: 19408 - components: - - type: Transform - pos: -58.5,-68.5 - parent: 30 - - uid: 19409 - components: - - type: Transform - pos: -58.5,-67.5 - parent: 30 - - uid: 19410 - components: - - type: Transform - pos: -58.5,-66.5 - parent: 30 - - uid: 19411 - components: - - type: Transform - pos: -58.5,-65.5 - parent: 30 - - uid: 19412 - components: - - type: Transform - pos: -58.5,-64.5 - parent: 30 - - uid: 19413 - components: - - type: Transform - pos: -58.5,-63.5 - parent: 30 - - uid: 19414 - components: - - type: Transform - pos: -58.5,-62.5 - parent: 30 - uid: 19478 components: - type: Transform @@ -44408,23 +43431,35 @@ entities: parent: 30 - proto: CarpetOrange entities: - - uid: 8294 + - uid: 4099 components: - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-35.5 + pos: -66.5,-63.5 parent: 30 - - uid: 8297 + - uid: 4100 components: - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-36.5 + pos: -66.5,-62.5 parent: 30 - - uid: 8298 + - uid: 4128 components: - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-34.5 + pos: -65.5,-64.5 + parent: 30 + - uid: 4129 + components: + - type: Transform + pos: -65.5,-63.5 + parent: 30 + - uid: 4130 + components: + - type: Transform + pos: -65.5,-62.5 + parent: 30 + - uid: 9492 + components: + - type: Transform + pos: -6.5,-33.5 parent: 30 - uid: 9720 components: @@ -44446,6 +43481,26 @@ entities: - type: Transform pos: -42.5,-13.5 parent: 30 + - uid: 9976 + components: + - type: Transform + pos: -63.5,-63.5 + parent: 30 + - uid: 10227 + components: + - type: Transform + pos: -61.5,-65.5 + parent: 30 + - uid: 10742 + components: + - type: Transform + pos: -6.5,-35.5 + parent: 30 + - uid: 11020 + components: + - type: Transform + pos: -6.5,-34.5 + parent: 30 - uid: 11619 components: - type: Transform @@ -44466,6 +43521,46 @@ entities: - type: Transform pos: 24.5,0.5 parent: 30 + - uid: 12771 + components: + - type: Transform + pos: -62.5,-65.5 + parent: 30 + - uid: 12772 + components: + - type: Transform + pos: -61.5,-63.5 + parent: 30 + - uid: 12809 + components: + - type: Transform + pos: -61.5,-64.5 + parent: 30 + - uid: 12820 + components: + - type: Transform + pos: -63.5,-64.5 + parent: 30 + - uid: 14360 + components: + - type: Transform + pos: -66.5,-64.5 + parent: 30 + - uid: 14473 + components: + - type: Transform + pos: -63.5,-65.5 + parent: 30 + - uid: 14474 + components: + - type: Transform + pos: -62.5,-64.5 + parent: 30 + - uid: 14478 + components: + - type: Transform + pos: -62.5,-63.5 + parent: 30 - proto: CarpetPink entities: - uid: 15267 @@ -44881,11 +43976,6 @@ entities: - type: Transform pos: -58.5,-8.5 parent: 30 - - uid: 4987 - components: - - type: Transform - pos: -20.5,-58.5 - parent: 30 - uid: 5068 components: - type: Transform @@ -45008,21 +44098,23 @@ entities: - type: Transform pos: 27.5,-18.5 parent: 30 - - uid: 7443 - components: - - type: Transform - pos: -19.5,-58.5 - parent: 30 - - uid: 7444 - components: - - type: Transform - pos: -18.5,-58.5 - parent: 30 - uid: 7975 components: - type: Transform pos: 24.5,-18.5 parent: 30 + - uid: 8455 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,-44.5 + parent: 30 + - uid: 8526 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-43.5 + parent: 30 - uid: 8538 components: - type: Transform @@ -45078,36 +44170,6 @@ entities: - type: Transform pos: -5.5,-14.5 parent: 30 - - uid: 9213 - components: - - type: Transform - pos: -5.5,-15.5 - parent: 30 - - uid: 9214 - components: - - type: Transform - pos: -5.5,-16.5 - parent: 30 - - uid: 9215 - components: - - type: Transform - pos: -5.5,-17.5 - parent: 30 - - uid: 9216 - components: - - type: Transform - pos: -5.5,-18.5 - parent: 30 - - uid: 9217 - components: - - type: Transform - pos: -5.5,-19.5 - parent: 30 - - uid: 9218 - components: - - type: Transform - pos: -5.5,-20.5 - parent: 30 - uid: 9219 components: - type: Transform @@ -45123,51 +44185,110 @@ entities: - type: Transform pos: 25.5,-18.5 parent: 30 + - uid: 9478 + components: + - type: Transform + pos: -12.5,-48.5 + parent: 30 + - uid: 9484 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-43.5 + parent: 30 + - uid: 9518 + components: + - type: Transform + pos: -5.5,-18.5 + parent: 30 + - uid: 9520 + components: + - type: Transform + pos: -11.5,-51.5 + parent: 30 - uid: 9563 components: - type: Transform - pos: -12.5,-29.5 - parent: 30 - - uid: 9564 - components: - - type: Transform - pos: -11.5,-29.5 - parent: 30 - - uid: 9565 - components: - - type: Transform - pos: -10.5,-29.5 - parent: 30 - - uid: 9566 - components: - - type: Transform - pos: -9.5,-29.5 - parent: 30 - - uid: 9567 - components: - - type: Transform - pos: -8.5,-29.5 - parent: 30 - - uid: 9568 - components: - - type: Transform - pos: -7.5,-29.5 + pos: -10.5,-51.5 parent: 30 - uid: 9569 components: - type: Transform - pos: -6.5,-29.5 + rot: -1.5707963267948966 rad + pos: -6.5,-44.5 + parent: 30 + - uid: 9571 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-44.5 + parent: 30 + - uid: 9613 + components: + - type: Transform + pos: -5.5,-17.5 + parent: 30 + - uid: 9615 + components: + - type: Transform + pos: -5.5,-19.5 + parent: 30 + - uid: 9616 + components: + - type: Transform + pos: -5.5,-20.5 + parent: 30 + - uid: 9704 + components: + - type: Transform + pos: -5.5,-16.5 + parent: 30 + - uid: 9705 + components: + - type: Transform + pos: -5.5,-15.5 parent: 30 - uid: 9799 components: - type: Transform pos: -40.5,-24.5 parent: 30 + - uid: 9821 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-46.5 + parent: 30 - uid: 9831 components: - type: Transform pos: -41.5,-24.5 parent: 30 + - uid: 9888 + components: + - type: Transform + pos: -12.5,-49.5 + parent: 30 + - uid: 9889 + components: + - type: Transform + pos: -8.5,-51.5 + parent: 30 + - uid: 9938 + components: + - type: Transform + pos: -12.5,-51.5 + parent: 30 + - uid: 9939 + components: + - type: Transform + pos: -12.5,-50.5 + parent: 30 + - uid: 9985 + components: + - type: Transform + pos: -9.5,-51.5 + parent: 30 - uid: 10073 components: - type: Transform @@ -45183,6 +44304,107 @@ entities: - type: Transform pos: -48.5,-8.5 parent: 30 + - uid: 10659 + components: + - type: Transform + pos: -21.5,-55.5 + parent: 30 + - uid: 10660 + components: + - type: Transform + pos: -22.5,-55.5 + parent: 30 + - uid: 10670 + components: + - type: Transform + pos: -22.5,-56.5 + parent: 30 + - uid: 10671 + components: + - type: Transform + pos: -10.5,-55.5 + parent: 30 + - uid: 10689 + components: + - type: Transform + pos: -11.5,-56.5 + parent: 30 + - uid: 11093 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-45.5 + parent: 30 + - uid: 11094 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-44.5 + parent: 30 + - uid: 11121 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-44.5 + parent: 30 + - uid: 11148 + components: + - type: Transform + pos: -23.5,-55.5 + parent: 30 + - uid: 11149 + components: + - type: Transform + pos: -9.5,-55.5 + parent: 30 + - uid: 11150 + components: + - type: Transform + pos: -10.5,-56.5 + parent: 30 + - uid: 11151 + components: + - type: Transform + pos: -12.5,-55.5 + parent: 30 + - uid: 11152 + components: + - type: Transform + pos: -13.5,-55.5 + parent: 30 + - uid: 11153 + components: + - type: Transform + pos: -11.5,-57.5 + parent: 30 + - uid: 11154 + components: + - type: Transform + pos: -12.5,-56.5 + parent: 30 + - uid: 11273 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-44.5 + parent: 30 + - uid: 11274 + components: + - type: Transform + pos: -9.5,-56.5 + parent: 30 + - uid: 11287 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-44.5 + parent: 30 + - uid: 11288 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-44.5 + parent: 30 - uid: 11314 components: - type: Transform @@ -45363,6 +44585,17 @@ entities: - type: Transform pos: 37.5,-18.5 parent: 30 + - uid: 13903 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-43.5 + parent: 30 + - uid: 14848 + components: + - type: Transform + pos: -23.5,-56.5 + parent: 30 - uid: 14869 components: - type: Transform @@ -47196,6 +46429,16 @@ entities: - type: Transform pos: -59.5,23.5 parent: 30 + - uid: 18994 + components: + - type: Transform + pos: -23.5,-57.5 + parent: 30 + - uid: 19241 + components: + - type: Transform + pos: -11.5,-55.5 + parent: 30 - uid: 19591 components: - type: Transform @@ -47556,46 +46799,6 @@ entities: - type: Transform pos: -0.5,58.5 parent: 30 - - uid: 22647 - components: - - type: Transform - pos: -22.5,-58.5 - parent: 30 - - uid: 22648 - components: - - type: Transform - pos: -23.5,-58.5 - parent: 30 - - uid: 22760 - components: - - type: Transform - pos: -25.5,-63.5 - parent: 30 - - uid: 22761 - components: - - type: Transform - pos: -26.5,-63.5 - parent: 30 - - uid: 22762 - components: - - type: Transform - pos: -27.5,-63.5 - parent: 30 - - uid: 22763 - components: - - type: Transform - pos: -27.5,-61.5 - parent: 30 - - uid: 22764 - components: - - type: Transform - pos: -26.5,-61.5 - parent: 30 - - uid: 22765 - components: - - type: Transform - pos: -25.5,-61.5 - parent: 30 - proto: Chair entities: - uid: 586 @@ -48039,6 +47242,42 @@ entities: rot: 1.5707963267948966 rad pos: 11.5,-4.5 parent: 30 + - uid: 10125 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,-39.5 + parent: 30 + - uid: 10127 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,-40.5 + parent: 30 + - uid: 10195 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,-41.5 + parent: 30 + - uid: 10196 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-40.5 + parent: 30 + - uid: 10197 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-39.5 + parent: 30 + - uid: 10198 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-41.5 + parent: 30 - uid: 11360 components: - type: Transform @@ -48735,22 +47974,10 @@ entities: rot: -1.5707963267948966 rad pos: -2.5,-34.5 parent: 30 - - uid: 8251 + - uid: 9060 components: - type: Transform - pos: -16.5,-28.5 - parent: 30 - - uid: 8300 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-39.5 - parent: 30 - - uid: 9047 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,-36.5 + pos: 4.095898,-45.486774 parent: 30 - uid: 9126 components: @@ -48764,20 +47991,28 @@ entities: rot: -1.5707963267948966 rad pos: 5.5,-27.5 parent: 30 - - uid: 9446 + - uid: 9677 components: - type: Transform - pos: -23.5,-40.5 + pos: 2.8055086,-45.39959 parent: 30 - - uid: 11304 + - uid: 9964 components: - type: Transform - pos: -16.5,-43.5 + rot: 3.141592653589793 rad + pos: -8.548677,-35.341038 parent: 30 - - uid: 11305 + - uid: 10095 components: - type: Transform - pos: 1.5,-43.5 + rot: -1.5707963267948966 rad + pos: -16.516525,-31.38681 + parent: 30 + - uid: 10764 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.450798,-48.444862 parent: 30 - uid: 11569 components: @@ -48825,12 +48060,6 @@ entities: rot: 1.5707963267948966 rad pos: 32.5,12.5 parent: 30 - - uid: 12831 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,12.5 - parent: 30 - uid: 16157 components: - type: Transform @@ -48847,6 +48076,11 @@ entities: - type: Transform pos: -60.5,44.5 parent: 30 + - uid: 18995 + components: + - type: Transform + pos: -24.534996,-43.467594 + parent: 30 - uid: 20274 components: - type: Transform @@ -48888,20 +48122,19 @@ entities: rot: -1.5707963267948966 rad pos: 30.5,20.5 parent: 30 - - uid: 22834 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,-62.5 - parent: 30 - - uid: 22837 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,-58.5 - parent: 30 - proto: ChairOfficeLight entities: + - uid: 318 + components: + - type: Transform + pos: 18.503437,14.498728 + parent: 30 + - uid: 334 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -66.47906,-63.39059 + parent: 30 - uid: 2111 components: - type: Transform @@ -49001,6 +48234,12 @@ entities: rot: 3.141592653589793 rad pos: 18.5,23.5 parent: 30 + - uid: 14048 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.504675,15.6658 + parent: 30 - proto: ChairWood entities: - uid: 562 @@ -49086,6 +48325,24 @@ entities: rot: 1.5707963267948966 rad pos: 17.5,40.5 parent: 30 + - uid: 10229 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -63.447754,-64.514534 + parent: 30 + - uid: 10230 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -61.457657,-64.514534 + parent: 30 + - uid: 10232 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -61.427956,-65.45017 + parent: 30 - uid: 13673 components: - type: Transform @@ -49248,12 +48505,6 @@ entities: rot: -1.5707963267948966 rad pos: -81.5,-44.5 parent: 30 - - uid: 17789 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -55.5,-63.5 - parent: 30 - uid: 18078 components: - type: Transform @@ -49269,16 +48520,6 @@ entities: - type: Transform pos: -58.5,-48.5 parent: 30 - - uid: 19422 - components: - - type: Transform - pos: -60.5,-66.5 - parent: 30 - - uid: 19423 - components: - - type: Transform - pos: -60.5,-64.5 - parent: 30 - uid: 19464 components: - type: Transform @@ -49646,29 +48887,23 @@ entities: - 0 - proto: ClosetChefFilled entities: - - uid: 64 + - uid: 18188 components: - type: Transform - pos: -17.5,5.5 + pos: -16.5,5.5 + parent: 30 +- proto: ClosetEmergency + entities: + - uid: 9869 + components: + - type: Transform + pos: -8.5,-38.5 + parent: 30 + - uid: 13975 + components: + - type: Transform + pos: -15.5,-50.5 parent: 30 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - proto: ClosetEmergencyFilledRandom entities: - uid: 893 @@ -49865,29 +49100,6 @@ entities: - type: Transform pos: -37.5,-5.5 parent: 30 - - uid: 11267 - components: - - type: Transform - pos: -18.5,-51.5 - parent: 30 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - uid: 11456 components: - type: Transform @@ -49939,6 +49151,16 @@ entities: - 0 - 0 - 0 + - uid: 12817 + components: + - type: Transform + pos: -53.5,-65.5 + parent: 30 + - uid: 14049 + components: + - type: Transform + pos: 14.5,10.5 + parent: 30 - uid: 15549 components: - type: Transform @@ -50146,29 +49368,11 @@ entities: - 0 - 0 - 0 - - uid: 18785 + - uid: 19242 components: - type: Transform - pos: -67.5,-65.5 + pos: -13.5,-35.5 parent: 30 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - uid: 19394 components: - type: Transform @@ -50266,52 +49470,6 @@ entities: - 0 - 0 - 0 - - uid: 22654 - components: - - type: Transform - pos: -23.5,-57.5 - parent: 30 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 22840 - components: - - type: Transform - pos: -27.5,-57.5 - parent: 30 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - proto: ClosetFireFilled entities: - uid: 1277 @@ -50406,6 +49564,11 @@ entities: - 0 - 0 - 0 + - uid: 9067 + components: + - type: Transform + pos: 2.5,-43.5 + parent: 30 - uid: 9242 components: - type: Transform @@ -50452,75 +49615,21 @@ entities: - 0 - 0 - 0 - - uid: 9996 + - uid: 10562 components: - type: Transform - pos: -4.5,-43.5 + pos: 1.5,-43.5 parent: 30 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 9997 + - uid: 11069 components: - type: Transform - pos: -5.5,-43.5 + pos: 3.5,-37.5 parent: 30 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 10094 + - uid: 11285 components: - type: Transform - pos: 3.5,-39.5 + pos: -6.5,-38.5 parent: 30 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - uid: 11752 components: - type: Transform @@ -50544,29 +49653,6 @@ entities: - 0 - 0 - 0 - - uid: 12771 - components: - - type: Transform - pos: 18.5,16.5 - parent: 30 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - uid: 13340 components: - type: Transform @@ -50636,6 +49722,11 @@ entities: - 0 - 0 - 0 + - uid: 17726 + components: + - type: Transform + pos: 13.5,12.5 + parent: 30 - uid: 22224 components: - type: Transform @@ -50659,29 +49750,6 @@ entities: - 0 - 0 - 0 - - uid: 22841 - components: - - type: Transform - pos: -25.5,-57.5 - parent: 30 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - proto: ClosetJanitorFilled entities: - uid: 539 @@ -51005,75 +50073,26 @@ entities: - 0 - proto: ClosetRadiationSuitFilled entities: - - uid: 9993 + - uid: 9058 components: - type: Transform - pos: -1.5,-43.5 + pos: 4.5,-43.5 parent: 30 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 9994 + - uid: 9246 components: - type: Transform - pos: -2.5,-43.5 + pos: 3.5,-43.5 parent: 30 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 9995 + - uid: 10049 components: - type: Transform - pos: -3.5,-43.5 + pos: -15.5,-48.5 + parent: 30 + - uid: 11062 + components: + - type: Transform + pos: -15.5,-46.5 parent: 30 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - uid: 11246 components: - type: Transform @@ -51097,29 +50116,6 @@ entities: - 0 - 0 - 0 - - uid: 12770 - components: - - type: Transform - pos: 17.5,16.5 - parent: 30 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - uid: 13346 components: - type: Transform @@ -51143,52 +50139,11 @@ entities: - 0 - 0 - 0 - - uid: 21459 + - uid: 14333 components: - type: Transform - pos: 0.5,-37.5 + pos: 12.5,12.5 parent: 30 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 21460 - components: - - type: Transform - pos: 2.5,-37.5 - parent: 30 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - proto: ClosetSteelBase entities: - uid: 7040 @@ -51253,29 +50208,6 @@ entities: - 0 - 0 - 0 - - uid: 16172 - components: - - type: Transform - pos: 52.5,24.5 - parent: 30 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - uid: 16213 components: - type: Transform @@ -51399,6 +50331,18 @@ entities: - type: Transform pos: -32.460716,58.62153 parent: 30 +- proto: ClothingBeltUtilityEngineering + entities: + - uid: 8298 + components: + - type: Transform + pos: -5.4889383,-38.35511 + parent: 30 + - uid: 11172 + components: + - type: Transform + pos: -9.825792,-47.53879 + parent: 30 - proto: ClothingBeltUtilityFilled entities: - uid: 1630 @@ -51406,16 +50350,6 @@ entities: - type: Transform pos: -28.53513,29.598625 parent: 30 - - uid: 8337 - components: - - type: Transform - pos: -4.5536795,-38.356297 - parent: 30 - - uid: 11334 - components: - - type: Transform - pos: -17.525967,-28.59756 - parent: 30 - proto: ClothingEyesEyepatch entities: - uid: 15076 @@ -51445,10 +50379,10 @@ entities: - type: Transform pos: 24.515018,11.567955 parent: 30 - - uid: 19524 + - uid: 18355 components: - type: Transform - pos: -57.565453,-65.51947 + pos: -58.808327,-65.48881 parent: 30 - uid: 19696 components: @@ -51490,31 +50424,16 @@ entities: parent: 30 - proto: ClothingEyesGlassesMeson entities: - - uid: 9437 + - uid: 9370 components: - type: Transform - pos: -23.481958,-39.312622 - parent: 30 - - uid: 9438 - components: - - type: Transform - pos: -23.481958,-39.468872 + pos: -2.4337187,-46.09784 parent: 30 - uid: 9440 components: - type: Transform pos: 5.538602,-23.326946 parent: 30 - - uid: 9618 - components: - - type: Transform - pos: -18.387093,-35.233547 - parent: 30 - - uid: 10009 - components: - - type: Transform - pos: -13.542964,-45.357754 - parent: 30 - uid: 22447 components: - type: Transform @@ -51539,27 +50458,27 @@ entities: parent: 30 - proto: ClothingEyesGlassesThermal entities: + - uid: 9397 + components: + - type: Transform + pos: -2.5034692,-46.307095 + parent: 30 - uid: 9441 components: - type: Transform pos: 5.522977,-23.530071 parent: 30 - - uid: 10010 - components: - - type: Transform - pos: -13.542964,-45.170254 - parent: 30 - proto: ClothingEyesHudDiagnostic entities: - - uid: 11291 + - uid: 11115 components: - type: Transform - pos: -15.509655,-44.429184 + pos: -9.615068,-41.346893 parent: 30 - - uid: 11292 + - uid: 11116 components: - type: Transform - pos: -15.509655,-44.241684 + pos: -9.388378,-41.503834 parent: 30 - proto: ClothingEyesHudSecurity entities: @@ -51618,10 +50537,10 @@ entities: - type: Transform pos: -29.37888,29.583 parent: 30 - - uid: 9444 + - uid: 19401 components: - type: Transform - pos: -24.364544,-39.42136 + pos: -24.731133,-50.435394 parent: 30 - proto: ClothingHandsGlovesFingerless entities: @@ -51974,20 +50893,10 @@ entities: - type: Transform pos: 16.616007,29.472477 parent: 30 - - uid: 7751 + - uid: 8295 components: - type: Transform - pos: -4.5693045,-38.59067 - parent: 30 - - uid: 7771 - components: - - type: Transform - pos: -4.3505545,-38.46567 - parent: 30 - - uid: 11337 - components: - - type: Transform - pos: -17.479092,-30.706936 + pos: -5.4715004,-38.529488 parent: 30 - uid: 18177 components: @@ -52041,10 +50950,10 @@ entities: parent: 30 - proto: ClothingNeckCloakTrans entities: - - uid: 18360 + - uid: 3344 components: - type: Transform - pos: -64.42011,-67.461174 + pos: -56.501534,-67.426544 parent: 30 - proto: ClothingNeckHeadphones entities: @@ -52067,6 +50976,11 @@ entities: parent: 30 - proto: ClothingNeckScarfStripedGreen entities: + - uid: 3360 + components: + - type: Transform + pos: -66.40864,-64.41052 + parent: 30 - uid: 16211 components: - type: Transform @@ -52077,11 +50991,6 @@ entities: - type: Transform pos: -38.49321,0.5225295 parent: 30 - - uid: 19430 - components: - - type: Transform - pos: -57.52941,-67.45332 - parent: 30 - uid: 21488 components: - type: Transform @@ -52332,15 +51241,15 @@ entities: parent: 30 - proto: ClothingOuterVestHazard entities: - - uid: 11335 + - uid: 11258 components: - type: Transform - pos: -17.557217,-31.269436 + pos: -8.974306,-47.528893 parent: 30 - - uid: 11336 + - uid: 11262 components: - type: Transform - pos: -17.385342,-31.456936 + pos: -9.241632,-47.33087 parent: 30 - proto: ClothingOuterVestWeb entities: @@ -52403,10 +51312,10 @@ entities: - type: Transform pos: -3.4180164,22.487759 parent: 30 - - uid: 11268 + - uid: 4895 components: - type: Transform - pos: -16.51538,-50.461685 + pos: -19.595419,-50.39677 parent: 30 - proto: ClothingShoesBootsPerformer entities: @@ -52782,10 +51691,10 @@ entities: rot: 3.141592653589793 rad pos: 14.5,-16.5 parent: 30 - - uid: 9588 + - uid: 9407 components: - type: Transform - pos: -18.5,-34.5 + pos: -8.5,-33.5 parent: 30 - uid: 9673 components: @@ -52798,17 +51707,23 @@ entities: - type: Transform pos: -42.5,-11.5 parent: 30 - - uid: 12854 + - uid: 14359 components: - type: Transform rot: 1.5707963267948966 rad - pos: 13.5,10.5 + pos: 17.5,10.5 parent: 30 - - uid: 12929 + - uid: 14509 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,10.5 + rot: 3.141592653589793 rad + pos: -66.5,-65.5 + parent: 30 + - uid: 14524 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -65.5,-65.5 parent: 30 - uid: 15363 components: @@ -52904,6 +51819,12 @@ entities: rot: 1.5707963267948966 rad pos: -57.5,31.5 parent: 30 + - uid: 18544 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,10.5 + parent: 30 - uid: 19463 components: - type: Transform @@ -52991,12 +51912,6 @@ entities: - type: Transform pos: -61.5,-20.5 parent: 30 - - uid: 22806 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,-58.5 - parent: 30 - proto: ComputerAnalysisConsole entities: - uid: 15282 @@ -53112,11 +52027,11 @@ entities: - type: Transform pos: -14.5,-14.5 parent: 30 - - uid: 22804 + - uid: 9596 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,-62.5 + rot: 3.141592653589793 rad + pos: -16.5,-32.5 parent: 30 - proto: ComputerCriminalRecords entities: @@ -53171,11 +52086,6 @@ entities: parent: 30 - proto: ComputerFrame entities: - - uid: 10213 - components: - - type: Transform - pos: -22.5,-68.5 - parent: 30 - uid: 20279 components: - type: Transform @@ -53254,10 +52164,23 @@ entities: rot: -1.5707963267948966 rad pos: -6.5,43.5 parent: 30 - - uid: 11271 + - uid: 8525 components: - type: Transform - pos: -7.5,-35.5 + rot: 1.5707963267948966 rad + pos: -9.5,-33.5 + parent: 30 + - uid: 10200 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,-44.5 + parent: 30 + - uid: 10589 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-45.5 parent: 30 - proto: ComputerRadar entities: @@ -53268,12 +52191,6 @@ entities: parent: 30 - proto: ComputerResearchAndDevelopment entities: - - uid: 490 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,12.5 - parent: 30 - uid: 5816 components: - type: Transform @@ -53339,10 +52256,11 @@ entities: rot: -1.5707963267948966 rad pos: -6.5,44.5 parent: 30 - - uid: 11270 + - uid: 7225 components: - type: Transform - pos: -5.5,-38.5 + rot: -1.5707963267948966 rad + pos: -6.5,-45.5 parent: 30 - uid: 15966 components: @@ -53390,12 +52308,6 @@ entities: - type: Transform pos: -30.5,49.5 parent: 30 - - uid: 22805 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,-63.5 - parent: 30 - proto: ComputerSurveillanceCameraMonitor entities: - uid: 1073 @@ -53441,10 +52353,11 @@ entities: parent: 30 - proto: ComputerTechnologyDiskTerminal entities: - - uid: 12814 + - uid: 17885 components: - type: Transform - pos: 20.5,12.5 + rot: 3.141592653589793 rad + pos: 20.5,10.5 parent: 30 - proto: ComputerTelevision entities: @@ -53455,25 +52368,25 @@ entities: parent: 30 - proto: ContainmentFieldGenerator entities: - - uid: 9413 + - uid: 18859 components: - type: Transform - pos: -23.5,-49.5 + pos: -18.5,-35.5 parent: 30 - - uid: 9414 + - uid: 19414 components: - type: Transform - pos: -23.5,-50.5 + pos: -17.5,-34.5 parent: 30 - - uid: 9415 + - uid: 19417 components: - type: Transform - pos: -22.5,-50.5 + pos: -17.5,-35.5 parent: 30 - - uid: 9416 + - uid: 19418 components: - type: Transform - pos: -22.5,-49.5 + pos: -18.5,-34.5 parent: 30 - proto: ConveyorBelt entities: @@ -53585,55 +52498,58 @@ entities: - type: Transform pos: 35.5,-17.5 parent: 30 - - uid: 14522 + - uid: 12943 components: - type: Transform - pos: 48.5,25.5 + rot: -1.5707963267948966 rad + pos: 53.5,24.5 parent: 30 - - uid: 14523 + - uid: 12944 components: - type: Transform - pos: 48.5,24.5 + rot: -1.5707963267948966 rad + pos: 52.5,24.5 parent: 30 - - uid: 14524 + - uid: 12961 components: - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,24.5 + parent: 30 + - uid: 12973 + components: + - type: Transform + pos: 50.5,24.5 + parent: 30 + - uid: 12983 + components: + - type: Transform + rot: 3.141592653589793 rad pos: 48.5,23.5 parent: 30 - - uid: 14525 + - uid: 13034 components: - type: Transform - pos: 48.5,22.5 + rot: 3.141592653589793 rad + pos: 48.5,24.5 parent: 30 - - uid: 14526 + - uid: 13048 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,22.5 - parent: 30 - - uid: 14527 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 50.5,22.5 - parent: 30 - - uid: 14528 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 51.5,22.5 - parent: 30 - - uid: 14529 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 52.5,22.5 + rot: 3.141592653589793 rad + pos: 48.5,25.5 parent: 30 - uid: 16126 components: - type: Transform pos: 35.5,-15.5 parent: 30 + - uid: 18374 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,23.5 + parent: 30 - proto: CornSeeds entities: - uid: 2348 @@ -53650,6 +52566,11 @@ entities: parent: 30 - proto: CrateArtifactContainer entities: + - uid: 17790 + components: + - type: Transform + pos: 41.5,12.5 + parent: 30 - uid: 22272 components: - type: Transform @@ -53697,31 +52618,22 @@ entities: - type: Transform pos: 23.5,-3.5 parent: 30 -- proto: CrateEngineeringAMEShielding +- proto: CrateEngineeringAMEJar entities: - - uid: 9478 + - uid: 18993 components: - type: Transform - pos: -16.5,-32.5 + pos: -13.5,-48.5 + parent: 30 + - type: Lock + locked: False +- proto: CrateEngineeringAMEShielding + entities: + - uid: 19186 + components: + - type: Transform + pos: -13.5,-49.5 parent: 30 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 2.0214376 - - 7.6044564 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - proto: CrateEngineeringCableBulk entities: - uid: 3520 @@ -53756,33 +52668,11 @@ entities: - type: Transform pos: -37.5,-3.5 parent: 30 - - uid: 9578 + - uid: 10765 components: - type: Transform - pos: -22.5,-44.5 + pos: -25.5,-47.5 parent: 30 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: Construction - containers: - - EntityStorageComponent - - entity_storage - uid: 16813 components: - type: Transform @@ -53810,33 +52700,6 @@ entities: containers: - EntityStorageComponent - entity_storage - - uid: 20467 - components: - - type: Transform - pos: 3.5,-44.5 - parent: 30 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: Construction - containers: - - EntityStorageComponent - - entity_storage - uid: 22442 components: - type: Transform @@ -53862,10 +52725,10 @@ entities: - 0 - proto: CrateEngineeringCableHV entities: - - uid: 10219 + - uid: 10201 components: - type: Transform - pos: -10.5,-68.5 + pos: -5.5,-45.5 parent: 30 - proto: CrateEngineeringCableLV entities: @@ -53896,80 +52759,6 @@ entities: containers: - EntityStorageComponent - entity_storage -- proto: CrateEngineeringCableMV - entities: - - uid: 10220 - components: - - type: Transform - pos: -9.5,-68.5 - parent: 30 -- proto: CrateEngineeringSingularityCollector - entities: - - uid: 10216 - components: - - type: Transform - pos: -13.5,-68.5 - parent: 30 - - uid: 10217 - components: - - type: Transform - pos: -12.5,-68.5 - parent: 30 - - uid: 10218 - components: - - type: Transform - pos: -11.5,-68.5 - parent: 30 -- proto: CrateEngineeringSingularityContainment - entities: - - uid: 11299 - components: - - type: Transform - pos: -16.5,-48.5 - parent: 30 - - type: Construction - containers: - - EntityStorageComponent - - entity_storage - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 -- proto: CrateEngineeringTeslaCoil - entities: - - uid: 20617 - components: - - type: Transform - pos: -12.5,-69.5 - parent: 30 -- proto: CrateEngineeringTeslaGenerator - entities: - - uid: 9475 - components: - - type: Transform - pos: -13.5,-69.5 - parent: 30 -- proto: CrateEngineeringTeslaGroundingRod - entities: - - uid: 20618 - components: - - type: Transform - pos: -11.5,-69.5 - parent: 30 - proto: CrateFilledSpawner entities: - uid: 3505 @@ -54089,31 +52878,6 @@ entities: - type: Transform pos: 17.5,18.5 parent: 30 -- proto: CrateNPCCow - entities: - - uid: 494 - components: - - type: Transform - pos: -16.5,5.5 - parent: 30 - - type: EntityStorage - air: - volume: 800 - immutable: False - temperature: 293.14987 - moles: - - 13.772371 - - 51.81035 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - proto: CrateNPCHamlet entities: - uid: 4350 @@ -54308,10 +53072,10 @@ entities: available: False - proto: Crowbar entities: - - uid: 12836 + - uid: 18695 components: - type: Transform - pos: 16.474464,12.551813 + pos: 17.494757,13.487526 parent: 30 - proto: CrowbarRed entities: @@ -54335,11 +53099,6 @@ entities: - type: Transform pos: 11.455861,34.475574 parent: 30 - - uid: 11301 - components: - - type: Transform - pos: -18.417063,-48.52035 - parent: 30 - uid: 11738 components: - type: Transform @@ -54461,13 +53220,6 @@ entities: rot: 1.5707963267948966 rad pos: -74.382675,-63.392025 parent: 30 -- proto: DefaultStationBeaconAME - entities: - - uid: 20527 - components: - - type: Transform - pos: -11.5,-30.5 - parent: 30 - proto: DefaultStationBeaconAnomalyGenerator entities: - uid: 20529 @@ -54552,13 +53304,6 @@ entities: - type: Transform pos: 15.5,-4.5 parent: 30 -- proto: DefaultStationBeaconCERoom - entities: - - uid: 20538 - components: - - type: Transform - pos: -18.5,-36.5 - parent: 30 - proto: DefaultStationBeaconChapel entities: - uid: 20543 @@ -54671,13 +53416,6 @@ entities: - type: Transform pos: -51.5,31.5 parent: 30 -- proto: DefaultStationBeaconLibrary - entities: - - uid: 20544 - components: - - type: Transform - pos: -57.5,-66.5 - parent: 30 - proto: DefaultStationBeaconMedbay entities: - uid: 8026 @@ -54704,13 +53442,6 @@ entities: - type: Transform pos: -48.5,64.5 parent: 30 -- proto: DefaultStationBeaconPowerBank - entities: - - uid: 20562 - components: - - type: Transform - pos: -7.5,-36.5 - parent: 30 - proto: DefaultStationBeaconQMRoom entities: - uid: 20563 @@ -54791,20 +53522,6 @@ entities: - type: Transform pos: 4.5,22.5 parent: 30 -- proto: DefaultStationBeaconTEG - entities: - - uid: 20569 - components: - - type: Transform - pos: -7.5,-51.5 - parent: 30 -- proto: DefaultStationBeaconTelecoms - entities: - - uid: 20570 - components: - - type: Transform - pos: -35.5,-60.5 - parent: 30 - proto: DefaultStationBeaconToolRoom entities: - uid: 20574 @@ -54937,18 +53654,28 @@ entities: rot: 3.141592653589793 rad pos: 4.5,-5.5 parent: 30 - - uid: 8454 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,-58.5 - parent: 30 - uid: 11022 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-0.5 parent: 30 + - uid: 11283 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,-39.5 + parent: 30 + - uid: 11284 + components: + - type: Transform + pos: -23.5,-40.5 + parent: 30 + - uid: 12641 + components: + - type: Transform + pos: -24.5,13.5 + parent: 30 - uid: 12784 components: - type: Transform @@ -55028,41 +53755,6 @@ entities: - type: Transform pos: 1.5,-29.5 parent: 30 - - uid: 13958 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-41.5 - parent: 30 - - uid: 13959 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-41.5 - parent: 30 - - uid: 13960 - components: - - type: Transform - pos: 0.5,-40.5 - parent: 30 - - uid: 13977 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,-40.5 - parent: 30 - - uid: 13978 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,-42.5 - parent: 30 - - uid: 13979 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,-42.5 - parent: 30 - uid: 13991 components: - type: Transform @@ -55102,12 +53794,6 @@ entities: - type: Transform pos: -21.5,6.5 parent: 30 - - uid: 14051 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -25.5,6.5 - parent: 30 - uid: 14054 components: - type: Transform @@ -55246,40 +53932,12 @@ entities: rot: 3.141592653589793 rad pos: 13.5,15.5 parent: 30 - - uid: 14334 - components: - - type: Transform - pos: 23.5,15.5 - parent: 30 - - uid: 14335 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,14.5 - parent: 30 - - uid: 14336 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,14.5 - parent: 30 - uid: 14348 components: - type: Transform rot: 3.141592653589793 rad pos: 22.5,8.5 parent: 30 - - uid: 14357 - components: - - type: Transform - pos: 13.5,12.5 - parent: 30 - - uid: 14358 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,11.5 - parent: 30 - uid: 14379 components: - type: Transform @@ -55326,6 +53984,12 @@ entities: rot: -1.5707963267948966 rad pos: -7.5,-9.5 parent: 30 + - uid: 14456 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,6.5 + parent: 30 - uid: 14465 components: - type: Transform @@ -55380,6 +54044,18 @@ entities: rot: -1.5707963267948966 rad pos: 26.5,34.5 parent: 30 + - uid: 19429 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-39.5 + parent: 30 + - uid: 19505 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,-46.5 + parent: 30 - uid: 19701 components: - type: Transform @@ -55507,17 +54183,6 @@ entities: rot: 1.5707963267948966 rad pos: -0.5,64.5 parent: 30 - - uid: 22599 - components: - - type: Transform - pos: -17.5,-47.5 - parent: 30 - - uid: 22618 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,-58.5 - parent: 30 - proto: DisposalJunction entities: - uid: 6948 @@ -55531,6 +54196,12 @@ entities: rot: 1.5707963267948966 rad pos: -21.5,-9.5 parent: 30 + - uid: 9617 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-17.5 + parent: 30 - uid: 13878 components: - type: Transform @@ -55543,24 +54214,12 @@ entities: rot: 3.141592653589793 rad pos: 12.5,-6.5 parent: 30 - - uid: 13901 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-18.5 - parent: 30 - uid: 13910 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-19.5 parent: 30 - - uid: 13957 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-40.5 - parent: 30 - uid: 14018 components: - type: Transform @@ -55579,6 +54238,12 @@ entities: rot: 1.5707963267948966 rad pos: 5.5,2.5 parent: 30 + - uid: 14047 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,15.5 + parent: 30 - uid: 14053 components: - type: Transform @@ -55611,12 +54276,6 @@ entities: - type: Transform pos: -32.5,46.5 parent: 30 - - uid: 14333 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,15.5 - parent: 30 - proto: DisposalJunctionFlipped entities: - uid: 7252 @@ -55711,12 +54370,6 @@ entities: rot: -1.5707963267948966 rad pos: 12.5,16.5 parent: 30 - - uid: 14345 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,11.5 - parent: 30 - uid: 14375 components: - type: Transform @@ -55743,8 +54396,44 @@ entities: - type: Transform pos: -35.5,37.5 parent: 30 + - uid: 19427 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-42.5 + parent: 30 + - uid: 19765 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-39.5 + parent: 30 - proto: DisposalPipe entities: + - uid: 925 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-43.5 + parent: 30 + - uid: 1938 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,-42.5 + parent: 30 + - uid: 3118 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,-42.5 + parent: 30 + - uid: 3155 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,-42.5 + parent: 30 - uid: 5299 components: - type: Transform @@ -55975,6 +54664,18 @@ entities: rot: 1.5707963267948966 rad pos: -11.5,-9.5 parent: 30 + - uid: 9746 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-17.5 + parent: 30 + - uid: 9891 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-18.5 + parent: 30 - uid: 11018 components: - type: Transform @@ -55995,12 +54696,42 @@ entities: - type: Transform pos: 4.5,-3.5 parent: 30 + - uid: 11155 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,-45.5 + parent: 30 + - uid: 11162 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,-43.5 + parent: 30 + - uid: 11170 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,-44.5 + parent: 30 + - uid: 11349 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,-42.5 + parent: 30 - uid: 11447 components: - type: Transform rot: 1.5707963267948966 rad pos: -10.5,-9.5 parent: 30 + - uid: 12297 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,-42.5 + parent: 30 - uid: 12678 components: - type: Transform @@ -56037,11 +54768,28 @@ entities: rot: -1.5707963267948966 rad pos: 21.5,23.5 parent: 30 - - uid: 13083 + - uid: 12840 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,-40.5 + pos: 52.5,23.5 + parent: 30 + - uid: 13077 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,9.5 + parent: 30 + - uid: 13081 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,14.5 + parent: 30 + - uid: 13331 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,11.5 parent: 30 - uid: 13800 components: @@ -56525,12 +55273,6 @@ entities: rot: 3.141592653589793 rad pos: 12.5,-17.5 parent: 30 - - uid: 13903 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,-18.5 - parent: 30 - uid: 13905 components: - type: Transform @@ -56763,155 +55505,24 @@ entities: rot: 3.141592653589793 rad pos: 1.5,-36.5 parent: 30 - - uid: 13952 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-37.5 - parent: 30 - - uid: 13953 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-39.5 - parent: 30 - - uid: 13954 + - uid: 13961 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-38.5 parent: 30 - - uid: 13956 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-40.5 - parent: 30 - - uid: 13961 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-40.5 - parent: 30 - uid: 13962 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-40.5 + rot: 1.5707963267948966 rad + pos: 0.5,-39.5 parent: 30 - uid: 13963 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,-40.5 - parent: 30 - - uid: 13964 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-40.5 - parent: 30 - - uid: 13965 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-40.5 - parent: 30 - - uid: 13966 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-40.5 - parent: 30 - - uid: 13967 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,-40.5 - parent: 30 - - uid: 13968 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,-40.5 - parent: 30 - - uid: 13969 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,-40.5 - parent: 30 - - uid: 13970 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-40.5 - parent: 30 - - uid: 13971 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,-40.5 - parent: 30 - - uid: 13972 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-40.5 - parent: 30 - - uid: 13973 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,-40.5 - parent: 30 - - uid: 13974 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,-40.5 - parent: 30 - - uid: 13975 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,-40.5 - parent: 30 - - uid: 13976 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,-40.5 - parent: 30 - - uid: 13981 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,-43.5 - parent: 30 - - uid: 13982 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,-42.5 - parent: 30 - - uid: 13983 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,-42.5 - parent: 30 - - uid: 13984 components: - type: Transform rot: 1.5707963267948966 rad pos: -18.5,-42.5 parent: 30 - - uid: 13985 - components: - - type: Transform - pos: -17.5,-41.5 - parent: 30 - uid: 13993 components: - type: Transform @@ -57140,41 +55751,23 @@ entities: rot: 1.5707963267948966 rad pos: -19.5,6.5 parent: 30 - - uid: 14043 - components: - - type: Transform - pos: -25.5,12.5 - parent: 30 - uid: 14044 components: - type: Transform - pos: -25.5,11.5 + rot: 3.141592653589793 rad + pos: -24.5,8.5 parent: 30 - uid: 14045 components: - type: Transform - pos: -25.5,10.5 + rot: 3.141592653589793 rad + pos: -24.5,7.5 parent: 30 - uid: 14046 components: - type: Transform - pos: -25.5,9.5 - parent: 30 - - uid: 14047 - components: - - type: Transform - pos: -25.5,8.5 - parent: 30 - - uid: 14048 - components: - - type: Transform - pos: -25.5,7.5 - parent: 30 - - uid: 14049 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,6.5 + rot: 1.5707963267948966 rad + pos: 19.5,15.5 parent: 30 - uid: 14050 components: @@ -58431,18 +57024,6 @@ entities: rot: 1.5707963267948966 rad pos: 17.5,15.5 parent: 30 - - uid: 14329 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,15.5 - parent: 30 - - uid: 14330 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,15.5 - parent: 30 - uid: 14331 components: - type: Transform @@ -58503,54 +57084,6 @@ entities: rot: 1.5707963267948966 rad pos: 25.5,8.5 parent: 30 - - uid: 14359 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,11.5 - parent: 30 - - uid: 14360 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,11.5 - parent: 30 - - uid: 14361 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,11.5 - parent: 30 - - uid: 14362 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,11.5 - parent: 30 - - uid: 14363 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,11.5 - parent: 30 - - uid: 14364 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,11.5 - parent: 30 - - uid: 14365 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,11.5 - parent: 30 - - uid: 14366 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,11.5 - parent: 30 - uid: 14367 components: - type: Transform @@ -58834,6 +57367,12 @@ entities: - type: Transform pos: -11.5,-1.5 parent: 30 + - uid: 14436 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,10.5 + parent: 30 - uid: 14438 components: - type: Transform @@ -58876,6 +57415,18 @@ entities: rot: 3.141592653589793 rad pos: -12.5,-7.5 parent: 30 + - uid: 14458 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,11.5 + parent: 30 + - uid: 14459 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,12.5 + parent: 30 - uid: 14463 components: - type: Transform @@ -59029,6 +57580,100 @@ entities: rot: -1.5707963267948966 rad pos: -34.5,37.5 parent: 30 + - uid: 17808 + components: + - type: Transform + pos: 52.5,22.5 + parent: 30 + - uid: 19430 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-39.5 + parent: 30 + - uid: 19431 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-39.5 + parent: 30 + - uid: 19438 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-39.5 + parent: 30 + - uid: 19441 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-39.5 + parent: 30 + - uid: 19473 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-39.5 + parent: 30 + - uid: 19474 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-39.5 + parent: 30 + - uid: 19475 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-39.5 + parent: 30 + - uid: 19490 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-39.5 + parent: 30 + - uid: 19524 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-37.5 + parent: 30 + - uid: 19631 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-39.5 + parent: 30 + - uid: 19638 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-39.5 + parent: 30 + - uid: 19639 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-39.5 + parent: 30 + - uid: 19640 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,-39.5 + parent: 30 + - uid: 19687 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,-42.5 + parent: 30 + - uid: 19688 + components: + - type: Transform + pos: -23.5,-41.5 + parent: 30 - uid: 19703 components: - type: Transform @@ -59040,6 +57685,42 @@ entities: - type: Transform pos: -22.5,-35.5 parent: 30 + - uid: 19709 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,-42.5 + parent: 30 + - uid: 19710 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,-40.5 + parent: 30 + - uid: 19724 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-40.5 + parent: 30 + - uid: 19772 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-44.5 + parent: 30 + - uid: 19773 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,-42.5 + parent: 30 + - uid: 19774 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-41.5 + parent: 30 - uid: 22109 components: - type: Transform @@ -59627,104 +58308,6 @@ entities: rot: -1.5707963267948966 rad pos: 1.5,64.5 parent: 30 - - uid: 22600 - components: - - type: Transform - pos: -17.5,-48.5 - parent: 30 - - uid: 22601 - components: - - type: Transform - pos: -17.5,-49.5 - parent: 30 - - uid: 22602 - components: - - type: Transform - pos: -17.5,-50.5 - parent: 30 - - uid: 22603 - components: - - type: Transform - pos: -17.5,-51.5 - parent: 30 - - uid: 22604 - components: - - type: Transform - pos: -17.5,-52.5 - parent: 30 - - uid: 22605 - components: - - type: Transform - pos: -17.5,-53.5 - parent: 30 - - uid: 22606 - components: - - type: Transform - pos: -17.5,-54.5 - parent: 30 - - uid: 22607 - components: - - type: Transform - pos: -17.5,-55.5 - parent: 30 - - uid: 22608 - components: - - type: Transform - pos: -17.5,-56.5 - parent: 30 - - uid: 22609 - components: - - type: Transform - pos: -17.5,-57.5 - parent: 30 - - uid: 22610 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,-58.5 - parent: 30 - - uid: 22611 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,-58.5 - parent: 30 - - uid: 22612 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,-58.5 - parent: 30 - - uid: 22613 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,-58.5 - parent: 30 - - uid: 22614 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,-58.5 - parent: 30 - - uid: 22615 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,-58.5 - parent: 30 - - uid: 22616 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,-58.5 - parent: 30 - - uid: 22617 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,-58.5 - parent: 30 - proto: DisposalTrunk entities: - uid: 356 @@ -59768,6 +58351,18 @@ entities: - type: Transform pos: -19.5,-4.5 parent: 30 + - uid: 9753 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-17.5 + parent: 30 + - uid: 11171 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-45.5 + parent: 30 - uid: 11226 components: - type: Transform @@ -59786,30 +58381,12 @@ entities: rot: 1.5707963267948966 rad pos: 19.5,0.5 parent: 30 - - uid: 13902 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,-18.5 - parent: 30 - uid: 13911 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-29.5 parent: 30 - - uid: 13955 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-40.5 - parent: 30 - - uid: 13980 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,-44.5 - parent: 30 - uid: 13986 components: - type: Transform @@ -59833,11 +58410,6 @@ entities: rot: 3.141592653589793 rad pos: -13.5,5.5 parent: 30 - - uid: 13990 - components: - - type: Transform - pos: -25.5,13.5 - parent: 30 - uid: 14076 components: - type: Transform @@ -59912,12 +58484,6 @@ entities: rot: 3.141592653589793 rad pos: 12.5,14.5 parent: 30 - - uid: 14356 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,12.5 - parent: 30 - uid: 14377 components: - type: Transform @@ -59946,15 +58512,21 @@ entities: - type: Transform pos: -7.5,-8.5 parent: 30 + - uid: 14449 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,13.5 + parent: 30 - uid: 14453 components: - type: Transform pos: -21.5,-0.5 parent: 30 - - uid: 14534 + - uid: 14460 components: - type: Transform - pos: 52.5,22.5 + pos: 18.5,16.5 parent: 30 - uid: 16078 components: @@ -59967,6 +58539,23 @@ entities: rot: -1.5707963267948966 rad pos: -29.5,37.5 parent: 30 + - uid: 17794 + components: + - type: Transform + pos: 52.5,24.5 + parent: 30 + - uid: 19428 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,-40.5 + parent: 30 + - uid: 19523 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,-46.5 + parent: 30 - uid: 19700 components: - type: Transform @@ -59991,6 +58580,11 @@ entities: rot: -1.5707963267948966 rad pos: -21.5,-34.5 parent: 30 + - uid: 19781 + components: + - type: Transform + pos: -4.5,-38.5 + parent: 30 - uid: 22187 components: - type: Transform @@ -60009,17 +58603,6 @@ entities: rot: -1.5707963267948966 rad pos: 2.5,64.5 parent: 30 - - uid: 22598 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,-47.5 - parent: 30 - - uid: 22619 - components: - - type: Transform - pos: -26.5,-57.5 - parent: 30 - proto: DisposalUnit entities: - uid: 343 @@ -60102,13 +58685,6 @@ entities: - type: Transform pos: -24.5,53.5 parent: 30 - - uid: 5238 - components: - - type: MetaData - name: Telecomms Tube - - type: Transform - pos: -18.5,-47.5 - parent: 30 - uid: 5686 components: - type: Transform @@ -60174,6 +58750,21 @@ entities: - type: Transform pos: -18.5,-22.5 parent: 30 + - uid: 7229 + components: + - type: Transform + pos: -25.5,-40.5 + parent: 30 + - uid: 8296 + components: + - type: Transform + pos: -13.5,-45.5 + parent: 30 + - uid: 8300 + components: + - type: Transform + pos: -4.5,-38.5 + parent: 30 - uid: 8504 components: - type: Transform @@ -60184,21 +58775,6 @@ entities: - type: Transform pos: 7.5,-29.5 parent: 30 - - uid: 9234 - components: - - type: Transform - pos: 3.5,-40.5 - parent: 30 - - uid: 9316 - components: - - type: Transform - pos: 14.5,-18.5 - parent: 30 - - uid: 9428 - components: - - type: Transform - pos: -21.5,-44.5 - parent: 30 - uid: 10985 components: - type: Transform @@ -60209,11 +58785,6 @@ entities: - type: Transform pos: 19.5,0.5 parent: 30 - - uid: 12772 - components: - - type: Transform - pos: 12.5,12.5 - parent: 30 - uid: 12773 components: - type: Transform @@ -60224,6 +58795,11 @@ entities: - type: Transform pos: 20.5,23.5 parent: 30 + - uid: 13078 + components: + - type: Transform + pos: 18.5,16.5 + parent: 30 - uid: 14217 components: - type: Transform @@ -60239,6 +58815,11 @@ entities: - type: Transform pos: 32.5,39.5 parent: 30 + - uid: 19407 + components: + - type: Transform + pos: -25.5,-46.5 + parent: 30 - uid: 19699 components: - type: Transform @@ -60259,11 +58840,6 @@ entities: - type: Transform pos: 2.5,64.5 parent: 30 - - uid: 22620 - components: - - type: Transform - pos: -26.5,-57.5 - parent: 30 - proto: DisposalYJunction entities: - uid: 6965 @@ -60272,12 +58848,24 @@ entities: rot: 3.141592653589793 rad pos: -12.5,-9.5 parent: 30 + - uid: 13283 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,15.5 + parent: 30 - uid: 14077 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-0.5 parent: 30 + - uid: 19725 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,-42.5 + parent: 30 - proto: DogBed entities: - uid: 2007 @@ -60324,6 +58912,11 @@ entities: - type: Transform pos: -27.536026,33.455597 parent: 30 + - uid: 15074 + components: + - type: Transform + pos: 3.1450052,20.758205 + parent: 30 - uid: 15078 components: - type: Transform @@ -60334,6 +58927,11 @@ entities: - type: Transform pos: 19.593287,54.456036 parent: 30 + - uid: 15355 + components: + - type: Transform + pos: 3.6301537,20.758205 + parent: 30 - proto: DoorRemoteSecurity entities: - uid: 2429 @@ -60405,10 +59003,10 @@ entities: parent: 30 - proto: DresserChiefEngineerFilled entities: - - uid: 11614 + - uid: 10741 components: - type: Transform - pos: -15.5,-36.5 + pos: -5.5,-33.5 parent: 30 - proto: DresserChiefMedicalOfficerFilled entities: @@ -60717,32 +59315,6 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 19638 - components: - - type: Transform - pos: -16.5,-38.5 - parent: 30 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 19639 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,-28.5 - parent: 30 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 19640 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,-49.5 - parent: 30 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - uid: 19654 components: - type: Transform @@ -60918,15 +59490,6 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 21261 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-41.5 - parent: 30 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - uid: 21331 components: - type: Transform @@ -60953,14 +59516,6 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 21377 - components: - - type: Transform - pos: 18.5,12.5 - parent: 30 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - uid: 21378 components: - type: Transform @@ -61095,80 +59650,50 @@ entities: parent: 30 - proto: Emitter entities: - - uid: 9409 + - uid: 194 components: - type: Transform - pos: -25.5,-49.5 + rot: -1.5707963267948966 rad + pos: -10.5,-71.5 parent: 30 - - uid: 9412 + - uid: 9818 components: - type: Transform - pos: -25.5,-50.5 + rot: 3.141592653589793 rad + pos: -13.5,-74.5 parent: 30 -- proto: EncryptionKeyCargo - entities: - - uid: 22622 + - uid: 10654 components: - type: Transform - parent: 22621 - - type: Physics - canCollide: False -- proto: EncryptionKeyCommand - entities: - - uid: 22815 + pos: -13.5,-60.5 + parent: 30 + - uid: 11088 components: - type: Transform - parent: 22814 - - type: Physics - canCollide: False -- proto: EncryptionKeyCommon - entities: - - uid: 22817 + rot: 1.5707963267948966 rad + pos: -24.5,-63.5 + parent: 30 + - uid: 11272 components: - type: Transform - parent: 22816 - - type: Physics - canCollide: False -- proto: EncryptionKeyEngineering - entities: - - uid: 22823 + pos: -21.5,-60.5 + parent: 30 + - uid: 13319 components: - type: Transform - parent: 22822 - - type: Physics - canCollide: False -- proto: EncryptionKeyMedical - entities: - - uid: 22828 + rot: 3.141592653589793 rad + pos: -21.5,-74.5 + parent: 30 + - uid: 18861 components: - type: Transform - parent: 22827 - - type: Physics - canCollide: False -- proto: EncryptionKeyScience - entities: - - uid: 22826 + pos: -19.5,-34.5 + parent: 30 + - uid: 19416 components: - type: Transform - parent: 22825 - - type: Physics - canCollide: False -- proto: EncryptionKeySecurity - entities: - - uid: 22813 - components: - - type: Transform - parent: 22812 - - type: Physics - canCollide: False -- proto: EncryptionKeyService - entities: - - uid: 22830 - components: - - type: Transform - parent: 22829 - - type: Physics - canCollide: False + pos: -19.5,-35.5 + parent: 30 - proto: ExosuitFabricator entities: - uid: 12799 @@ -61285,36 +59810,11 @@ entities: - type: Transform pos: -26.5,-42.5 parent: 30 - - uid: 9613 - components: - - type: Transform - pos: -14.5,-35.5 - parent: 30 - uid: 9614 components: - type: Transform pos: -4.5,-27.5 parent: 30 - - uid: 9769 - components: - - type: Transform - pos: -15.5,-49.5 - parent: 30 - - uid: 10013 - components: - - type: Transform - pos: -0.5,-44.5 - parent: 30 - - uid: 10014 - components: - - type: Transform - pos: -14.5,-44.5 - parent: 30 - - uid: 12809 - components: - - type: Transform - pos: 20.5,13.5 - parent: 30 - uid: 15868 components: - type: Transform @@ -61335,6 +59835,11 @@ entities: - type: Transform pos: -51.5,22.5 parent: 30 + - uid: 17685 + components: + - type: Transform + pos: 19.5,16.5 + parent: 30 - uid: 21381 components: - type: Transform @@ -61377,6 +59882,21 @@ entities: parent: 30 - type: FaxMachine name: Law Office + - uid: 10199 + components: + - type: Transform + pos: -21.5,-39.5 + parent: 30 + - type: FaxMachine + destinationAddress: Engineering + name: Engineering + - uid: 14477 + components: + - type: Transform + pos: -62.5,-65.5 + parent: 30 + - type: FaxMachine + destinationAddress: Library - uid: 21701 components: - type: Transform @@ -61419,13 +59939,6 @@ entities: parent: 30 - type: FaxMachine name: Psych - - uid: 22435 - components: - - type: Transform - pos: -57.5,-63.5 - parent: 30 - - type: FaxMachine - name: Library - proto: FaxMachineCaptain entities: - uid: 22275 @@ -61488,6 +60001,11 @@ entities: - type: Transform pos: 2.5,34.5 parent: 30 + - uid: 9490 + components: + - type: Transform + pos: -9.5,-35.5 + parent: 30 - uid: 11017 components: - type: Transform @@ -61495,18 +60013,32 @@ entities: parent: 30 - proto: filingCabinetRandom entities: + - uid: 8234 + components: + - type: Transform + pos: -15.5,-31.5 + parent: 30 - uid: 21370 components: - type: Transform pos: -21.5,32.5 parent: 30 - - uid: 22833 - components: - - type: Transform - pos: -29.5,-63.5 - parent: 30 - proto: FireAlarm entities: + - uid: 829 + components: + - type: Transform + pos: 13.5,-21.5 + parent: 30 + - type: DeviceList + devices: + - 4353 + - 9301 + - 9300 + - 9769 + - 4241 + - 9782 + - 9618 - uid: 1980 components: - type: Transform @@ -61586,6 +60118,53 @@ entities: devices: - 7960 - 7116 + - uid: 13959 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-42.5 + parent: 30 + - type: DeviceList + devices: + - 19812 + - 19766 + - 19598 + - 10000 + - 11011 + - 19767 + - 19768 + - 9993 + - 11007 + - 19770 + - 19771 + - 11281 + - 11003 + - uid: 13964 + components: + - type: Transform + pos: -20.5,-38.5 + parent: 30 + - type: DeviceList + devices: + - 19562 + - 11280 + - 11005 + - 11009 + - 19767 + - 19768 + - 11007 + - 9993 + - uid: 13965 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-52.5 + parent: 30 + - type: DeviceList + devices: + - 11280 + - 9839 + - 9995 - uid: 17226 components: - type: Transform @@ -61598,57 +60177,21 @@ entities: - 15117 - 15116 - 13644 - - uid: 20334 + - uid: 19597 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-45.5 + rot: 1.5707963267948966 rad + pos: -0.5,-38.5 parent: 30 - type: DeviceList devices: - - 20354 - - 11262 - - 11263 - - 11264 - - uid: 20357 - components: - - type: Transform - pos: -4.5,-37.5 - parent: 30 - - type: DeviceList - devices: - - 11343 - - 11344 - - 11345 - - 11340 - - 11341 - - 11342 - - 20355 - - uid: 21739 - components: - - type: Transform - pos: -16.5,-37.5 - parent: 30 - - type: DeviceList - devices: - - 11340 - - 11341 - - 11342 - - 20358 - - uid: 21746 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-41.5 - parent: 30 - - type: DeviceList - devices: - - 21745 - - 11343 - - 11344 - - 11345 - - 9305 + - 9999 + - 19812 + - 19766 + - 19598 + - 19806 - 9304 + - 9305 - 9306 - uid: 21748 components: @@ -61664,34 +60207,6 @@ entities: - 8626 - 7731 - 21749 - - uid: 21752 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,-28.5 - parent: 30 - - type: DeviceList - devices: - - 21753 - - 9302 - - 9303 - - 9301 - - 9300 - - uid: 21758 - components: - - type: Transform - pos: 13.5,-21.5 - parent: 30 - - type: DeviceList - devices: - - 21759 - - 9303 - - 9302 - - 9301 - - 9300 - - 9307 - - 9308 - - 9309 - uid: 21769 components: - type: Transform @@ -62307,13 +60822,11 @@ entities: parent: 30 - type: DeviceList devices: - - 9161 - 12665 - 12664 - 12666 - 12858 - 13391 - - 22056 - uid: 22060 components: - type: Transform @@ -62460,10 +60973,10 @@ entities: - type: Transform pos: 23.339325,-11.410534 parent: 30 - - uid: 18795 + - uid: 12811 components: - type: Transform - pos: -62.63935,-64.45475 + pos: -52.242584,-60.55653 parent: 30 - uid: 20301 components: @@ -62670,24 +61183,6 @@ entities: rot: -1.5707963267948966 rad pos: 13.5,27.5 parent: 30 - - uid: 11262 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,-43.5 - parent: 30 - - uid: 11263 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-43.5 - parent: 30 - - uid: 11264 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,-43.5 - parent: 30 - uid: 20347 components: - type: Transform @@ -62722,18 +61217,6 @@ entities: rot: 3.141592653589793 rad pos: -55.5,-45.5 parent: 30 - - uid: 20361 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -59.5,-62.5 - parent: 30 - - uid: 20362 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -58.5,-62.5 - parent: 30 - uid: 20383 components: - type: Transform @@ -62773,12 +61256,18 @@ entities: rot: -1.5707963267948966 rad pos: 24.5,7.5 parent: 30 + - type: DeviceNetwork + deviceLists: + - 14365 - uid: 22440 components: - type: Transform rot: -1.5707963267948966 rad pos: 24.5,8.5 parent: 30 + - type: DeviceNetwork + deviceLists: + - 14365 - proto: FirelockElectronics entities: - uid: 1642 @@ -62791,6 +61280,11 @@ entities: - type: Transform pos: -28.192276,33.564972 parent: 30 + - uid: 14846 + components: + - type: Transform + pos: 2.6400542,20.579987 + parent: 30 - uid: 19627 components: - type: Transform @@ -63066,6 +61560,16 @@ entities: - type: Transform pos: -37.5,35.5 parent: 30 + - uid: 4241 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-24.5 + parent: 30 + - type: DeviceNetwork + deviceLists: + - 10010 + - 829 - uid: 4842 components: - type: Transform @@ -63376,11 +61880,6 @@ entities: - type: Transform pos: -3.5,-21.5 parent: 30 - - uid: 9161 - components: - - type: Transform - pos: 14.5,13.5 - parent: 30 - uid: 9202 components: - type: Transform @@ -63391,36 +61890,43 @@ entities: - type: Transform pos: 11.5,-30.5 parent: 30 + - type: DeviceNetwork + deviceLists: + - 10010 + - 829 - uid: 9301 components: - type: Transform pos: 10.5,-30.5 parent: 30 - - uid: 9302 - components: - - type: Transform - pos: 10.5,-26.5 - parent: 30 - - uid: 9303 - components: - - type: Transform - pos: 11.5,-26.5 - parent: 30 + - type: DeviceNetwork + deviceLists: + - 10010 + - 829 - uid: 9304 components: - type: Transform pos: 1.5,-35.5 parent: 30 + - type: DeviceNetwork + deviceLists: + - 19597 - uid: 9305 components: - type: Transform pos: 0.5,-35.5 parent: 30 + - type: DeviceNetwork + deviceLists: + - 19597 - uid: 9306 components: - type: Transform pos: 2.5,-35.5 parent: 30 + - type: DeviceNetwork + deviceLists: + - 19597 - uid: 9307 components: - type: Transform @@ -63446,11 +61952,50 @@ entities: - type: Transform pos: -0.5,-2.5 parent: 30 + - uid: 9618 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-24.5 + parent: 30 + - type: DeviceNetwork + deviceLists: + - 10010 + - 829 - uid: 9669 components: - type: Transform pos: -10.5,-8.5 parent: 30 + - uid: 9769 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-23.5 + parent: 30 + - type: DeviceNetwork + deviceLists: + - 10010 + - 829 + - uid: 9782 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-23.5 + parent: 30 + - type: DeviceNetwork + deviceLists: + - 10010 + - 829 + - uid: 9839 + components: + - type: Transform + pos: -17.5,-49.5 + parent: 30 + - type: DeviceNetwork + deviceLists: + - 19570 + - 13965 - uid: 9914 components: - type: Transform @@ -63461,6 +62006,17 @@ entities: - type: Transform pos: -35.5,-28.5 parent: 30 + - uid: 9993 + components: + - type: Transform + pos: -14.5,-42.5 + parent: 30 + - type: DeviceNetwork + deviceLists: + - 13958 + - 13964 + - 13957 + - 13959 - uid: 10394 components: - type: Transform @@ -63471,40 +62027,81 @@ entities: - type: Transform pos: -40.5,8.5 parent: 30 + - uid: 11003 + components: + - type: Transform + pos: -7.5,-37.5 + parent: 30 + - type: DeviceNetwork + deviceLists: + - 13957 + - 13959 + - uid: 11005 + components: + - type: Transform + pos: -23.5,-45.5 + parent: 30 + - type: DeviceNetwork + deviceLists: + - 13958 + - 13964 + - uid: 11007 + components: + - type: Transform + pos: -14.5,-43.5 + parent: 30 + - type: DeviceNetwork + deviceLists: + - 13958 + - 13964 + - 13957 + - 13959 + - uid: 11009 + components: + - type: Transform + pos: -26.5,-41.5 + parent: 30 + - type: DeviceNetwork + deviceLists: + - 13958 + - 13964 + - uid: 11011 + components: + - type: Transform + pos: -12.5,-36.5 + parent: 30 + - type: DeviceNetwork + deviceLists: + - 13966 + - 13959 - uid: 11275 components: - type: Transform pos: 18.5,24.5 parent: 30 - - uid: 11340 + - uid: 11280 components: - type: Transform - pos: -14.5,-41.5 + pos: -17.5,-45.5 parent: 30 - - uid: 11341 + - type: DeviceNetwork + deviceLists: + - 19570 + - 13965 + - 13958 + - 13964 + - uid: 11281 components: - type: Transform - pos: -14.5,-40.5 + pos: -9.5,-44.5 parent: 30 - - uid: 11342 + - type: DeviceNetwork + deviceLists: + - 13959 + - uid: 11282 components: - type: Transform - pos: -14.5,-39.5 - parent: 30 - - uid: 11343 - components: - - type: Transform - pos: -0.5,-41.5 - parent: 30 - - uid: 11344 - components: - - type: Transform - pos: -0.5,-40.5 - parent: 30 - - uid: 11345 - components: - - type: Transform - pos: -0.5,-39.5 + pos: -2.5,-36.5 parent: 30 - uid: 11705 components: @@ -63591,21 +62188,39 @@ entities: - type: Transform pos: 21.5,17.5 parent: 30 + - type: DeviceNetwork + deviceLists: + - 14365 - uid: 12665 components: - type: Transform pos: 22.5,17.5 parent: 30 + - type: DeviceNetwork + deviceLists: + - 14365 - uid: 12666 components: - type: Transform pos: 23.5,17.5 parent: 30 + - type: DeviceNetwork + deviceLists: + - 14365 - uid: 12858 components: - type: Transform pos: 30.5,7.5 parent: 30 + - uid: 13073 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,15.5 + parent: 30 + - type: DeviceNetwork + deviceLists: + - 14365 - uid: 13391 components: - type: Transform @@ -63701,6 +62316,24 @@ entities: - type: Transform pos: -52.5,11.5 parent: 30 + - uid: 17724 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,16.5 + parent: 30 + - type: DeviceNetwork + deviceLists: + - 14365 + - uid: 17912 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,13.5 + parent: 30 + - type: DeviceNetwork + deviceLists: + - 14365 - uid: 18069 components: - type: Transform @@ -63711,16 +62344,118 @@ entities: - type: Transform pos: -74.5,-55.5 parent: 30 + - uid: 18212 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,14.5 + parent: 30 + - type: DeviceNetwork + deviceLists: + - 14365 + - uid: 18601 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,11.5 + parent: 30 + - type: DeviceNetwork + deviceLists: + - 14365 - uid: 19590 components: - type: Transform pos: -29.5,-37.5 parent: 30 + - uid: 19598 + components: + - type: Transform + pos: -0.5,-41.5 + parent: 30 + - type: DeviceNetwork + deviceLists: + - 13957 + - 13959 + - 19597 + - uid: 19630 + components: + - type: Transform + pos: -0.5,-39.5 + parent: 30 - uid: 19741 components: - type: Transform pos: -20.5,-25.5 parent: 30 + - uid: 19766 + components: + - type: Transform + pos: -0.5,-40.5 + parent: 30 + - type: DeviceNetwork + deviceLists: + - 13957 + - 13959 + - 19597 + - uid: 19767 + components: + - type: Transform + pos: -14.5,-40.5 + parent: 30 + - type: DeviceNetwork + deviceLists: + - 13958 + - 13964 + - 13957 + - 13959 + - uid: 19768 + components: + - type: Transform + pos: -14.5,-41.5 + parent: 30 + - type: DeviceNetwork + deviceLists: + - 13958 + - 13964 + - 13957 + - 13959 + - uid: 19770 + components: + - type: Transform + pos: -12.5,-46.5 + parent: 30 + - type: DeviceNetwork + deviceLists: + - 13957 + - 13959 + - uid: 19771 + components: + - type: Transform + pos: -11.5,-46.5 + parent: 30 + - type: DeviceNetwork + deviceLists: + - 13957 + - 13959 + - uid: 19806 + components: + - type: Transform + pos: 0.5,-42.5 + parent: 30 + - type: DeviceNetwork + deviceLists: + - 19597 + - 9996 + - uid: 19812 + components: + - type: Transform + pos: -0.5,-39.5 + parent: 30 + - type: DeviceNetwork + deviceLists: + - 13957 + - 13959 + - 19597 - uid: 20051 components: - type: Transform @@ -63857,10 +62592,10 @@ entities: - type: Transform pos: -32.45644,29.55175 parent: 30 - - uid: 9445 + - uid: 14828 components: - type: Transform - pos: -23.99604,-39.42414 + pos: -21.50836,-48.326485 parent: 30 - uid: 15978 components: @@ -63922,11 +62657,6 @@ entities: - type: Transform pos: -39.51754,18.309746 parent: 30 - - uid: 22433 - components: - - type: Transform - pos: 0.84980106,-44.601856 - parent: 30 - uid: 22434 components: - type: Transform @@ -63964,6 +62694,22 @@ entities: parent: 30 - type: Fixtures fixtures: {} + - uid: 10592 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,-47.5 + parent: 30 + - type: Fixtures + fixtures: {} + - uid: 14330 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,10.5 + parent: 30 + - type: Fixtures + fixtures: {} - uid: 20458 components: - type: Transform @@ -63992,13 +62738,6 @@ entities: parent: 30 - type: Fixtures fixtures: {} - - uid: 22542 - components: - - type: Transform - pos: 18.5,14.5 - parent: 30 - - type: Fixtures - fixtures: {} - proto: FloorTileItemEighties entities: - uid: 15081 @@ -64203,11 +62942,6 @@ entities: - type: Transform pos: 46.4532,20.604744 parent: 30 - - uid: 16163 - components: - - type: Transform - pos: 52.484413,22.604744 - parent: 30 - proto: FoodBoxDonut entities: - uid: 2168 @@ -64554,20 +63288,20 @@ entities: - uid: 491 components: - type: Transform - pos: -14.547203,7.8102264 + pos: -15.331403,8.303028 parent: 30 - proto: GasAnalyzer entities: + - uid: 9369 + components: + - type: Transform + pos: -2.4162815,-45.696774 + parent: 30 - uid: 9443 components: - type: Transform pos: 5.410018,-23.577772 parent: 30 - - uid: 10011 - components: - - type: Transform - pos: -13.400943,-44.52121 - parent: 30 - uid: 13344 components: - type: Transform @@ -64589,7 +63323,7 @@ entities: pos: -32.5,-11.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - proto: GasMinerCarbonDioxide entities: - uid: 8691 @@ -64684,36 +63418,6 @@ entities: rot: -1.5707963267948966 rad pos: -15.5,16.5 parent: 30 - - uid: 3125 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-57.5 - parent: 30 - - uid: 3126 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-58.5 - parent: 30 - - uid: 3221 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-59.5 - parent: 30 - - uid: 7099 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,-57.5 - parent: 30 - - uid: 7100 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,-58.5 - parent: 30 - uid: 8566 components: - type: Transform @@ -64769,12 +63473,6 @@ entities: parent: 30 - type: AtmosPipeColor color: '#947507FF' - - uid: 9622 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,-59.5 - parent: 30 - uid: 12869 components: - type: Transform @@ -64793,29 +63491,11 @@ entities: parent: 30 - proto: GasPipeBend entities: - - uid: 866 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-59.5 - parent: 30 - - uid: 867 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,-59.5 - parent: 30 - - uid: 906 + - uid: 64 components: - type: Transform rot: 1.5707963267948966 rad - pos: -12.5,-56.5 - parent: 30 - - uid: 916 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-59.5 + pos: -53.5,-62.5 parent: 30 - uid: 939 components: @@ -64824,7 +63504,7 @@ entities: pos: -48.5,7.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 941 components: - type: Transform @@ -64832,21 +63512,21 @@ entities: pos: -53.5,10.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 943 components: - type: Transform pos: -47.5,10.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 946 components: - type: Transform pos: -48.5,9.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2474 components: - type: Transform @@ -64854,7 +63534,7 @@ entities: pos: -50.5,37.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2475 components: - type: Transform @@ -64862,14 +63542,14 @@ entities: pos: -49.5,35.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2576 components: - type: Transform pos: -33.5,53.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2577 components: - type: Transform @@ -64877,7 +63557,7 @@ entities: pos: -31.5,53.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2578 components: - type: Transform @@ -64885,7 +63565,7 @@ entities: pos: -29.5,53.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2579 components: - type: Transform @@ -64893,7 +63573,7 @@ entities: pos: -35.5,53.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2580 components: - type: Transform @@ -64901,14 +63581,14 @@ entities: pos: -35.5,57.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2581 components: - type: Transform pos: -29.5,57.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2681 components: - type: Transform @@ -64916,7 +63596,7 @@ entities: pos: -50.5,57.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2700 components: - type: Transform @@ -64924,14 +63604,14 @@ entities: pos: -50.5,67.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2701 components: - type: Transform pos: -46.5,67.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2711 components: - type: Transform @@ -64939,7 +63619,7 @@ entities: pos: -47.5,58.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2712 components: - type: Transform @@ -64947,7 +63627,7 @@ entities: pos: -51.5,58.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2725 components: - type: Transform @@ -64955,21 +63635,21 @@ entities: pos: -51.5,64.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2726 components: - type: Transform pos: -47.5,64.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2741 components: - type: Transform pos: -28.5,44.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2774 components: - type: Transform @@ -64977,7 +63657,7 @@ entities: pos: -36.5,3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3039 components: - type: Transform @@ -64985,14 +63665,14 @@ entities: pos: -31.5,31.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3040 components: - type: Transform pos: -25.5,31.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3078 components: - type: Transform @@ -65000,7 +63680,7 @@ entities: pos: -40.5,9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3114 components: - type: Transform @@ -65008,19 +63688,14 @@ entities: pos: -47.5,8.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3116 components: - type: Transform pos: -44.5,8.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3152 - components: - - type: Transform - pos: -2.5,-56.5 - parent: 30 + color: '#0000FFFF' - uid: 3271 components: - type: Transform @@ -65028,7 +63703,7 @@ entities: pos: -49.5,12.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3272 components: - type: Transform @@ -65036,21 +63711,21 @@ entities: pos: -51.5,12.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3286 components: - type: Transform pos: -57.5,23.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3307 components: - type: Transform pos: -49.5,20.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3336 components: - type: Transform @@ -65058,15 +63733,7 @@ entities: pos: -16.5,6.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3344 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -27.5,6.5 - parent: 30 - - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3356 components: - type: Transform @@ -65074,29 +63741,21 @@ entities: pos: -23.5,7.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 3360 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,12.5 - parent: 30 - - type: AtmosPipeColor - color: '#0335FCFF' + color: '#FF0000FF' - uid: 3368 components: - type: Transform pos: -24.5,15.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3372 components: - type: Transform pos: -23.5,16.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3373 components: - type: Transform @@ -65104,7 +63763,7 @@ entities: pos: -26.5,15.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3375 components: - type: Transform @@ -65112,7 +63771,22 @@ entities: pos: -24.5,12.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' + - uid: 4141 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -63.5,-62.5 + parent: 30 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 4424 + components: + - type: Transform + pos: -24.5,7.5 + parent: 30 + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 6148 components: - type: Transform @@ -65120,28 +63794,28 @@ entities: pos: -14.5,40.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6158 components: - type: Transform pos: -4.5,40.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6198 components: - type: Transform pos: -3.5,41.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6200 components: - type: Transform pos: -7.5,42.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6201 components: - type: Transform @@ -65149,7 +63823,7 @@ entities: pos: -11.5,42.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6202 components: - type: Transform @@ -65157,7 +63831,7 @@ entities: pos: -11.5,41.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6203 components: - type: Transform @@ -65165,7 +63839,7 @@ entities: pos: -15.5,41.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6250 components: - type: Transform @@ -65173,7 +63847,7 @@ entities: pos: -18.5,36.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6251 components: - type: Transform @@ -65181,14 +63855,14 @@ entities: pos: -18.5,35.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6255 components: - type: Transform pos: -21.5,36.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6260 components: - type: Transform @@ -65196,22 +63870,14 @@ entities: pos: -26.5,36.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6262 components: - type: Transform pos: -26.5,39.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6468 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,-49.5 - parent: 30 - - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6789 components: - type: Transform @@ -65223,14 +63889,14 @@ entities: pos: -17.5,-0.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6936 components: - type: Transform pos: -18.5,-4.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6961 components: - type: Transform @@ -65238,7 +63904,7 @@ entities: pos: -18.5,-0.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 7001 components: - type: Transform @@ -65257,12 +63923,6 @@ entities: rot: -1.5707963267948966 rad pos: -30.5,-11.5 parent: 30 - - uid: 7098 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-59.5 - parent: 30 - uid: 7113 components: - type: Transform @@ -65270,33 +63930,14 @@ entities: pos: -30.5,-21.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7123 - components: - - type: Transform - pos: 1.5,-51.5 - parent: 30 - - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 7146 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,-59.5 - parent: 30 - - uid: 7148 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-59.5 - parent: 30 + color: '#0000FFFF' - uid: 7154 components: - type: Transform pos: -30.5,-6.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 7204 components: - type: Transform @@ -65304,29 +63945,7 @@ entities: pos: -34.5,-6.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7221 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-48.5 - parent: 30 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7224 - components: - - type: Transform - pos: -3.5,-48.5 - parent: 30 - - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 7230 - components: - - type: Transform - pos: -9.5,-53.5 - parent: 30 - - type: AtmosPipeColor - color: '#FF1212FF' + color: '#0000FFFF' - uid: 7353 components: - type: Transform @@ -65334,14 +63953,14 @@ entities: pos: -19.5,-4.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 7376 components: - type: Transform pos: -5.5,-10.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 7408 components: - type: Transform @@ -65349,29 +63968,13 @@ entities: pos: -19.5,-1.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 7564 components: - type: Transform rot: 1.5707963267948966 rad pos: -34.5,-12.5 parent: 30 - - uid: 7667 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,-52.5 - parent: 30 - - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 7672 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,-53.5 - parent: 30 - - type: AtmosPipeColor - color: '#FF1212FF' - uid: 7762 components: - type: Transform @@ -65379,7 +63982,7 @@ entities: pos: -29.5,-22.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 7887 components: - type: Transform @@ -65393,7 +63996,7 @@ entities: pos: -32.5,-12.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8063 components: - type: Transform @@ -65401,7 +64004,7 @@ entities: pos: -28.5,-12.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8076 components: - type: Transform @@ -65409,7 +64012,7 @@ entities: pos: -20.5,-22.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8219 components: - type: Transform @@ -65417,7 +64020,7 @@ entities: pos: -24.5,-5.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8220 components: - type: Transform @@ -65425,23 +64028,7 @@ entities: pos: -22.5,-5.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8236 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,-49.5 - parent: 30 - - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 8264 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,-52.5 - parent: 30 - - type: AtmosPipeColor - color: '#FF1212FF' + color: '#0000FFFF' - uid: 8576 components: - type: Transform @@ -65497,7 +64084,7 @@ entities: pos: 16.5,-23.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8786 components: - type: Transform @@ -65505,14 +64092,14 @@ entities: pos: 16.5,-21.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8868 components: - type: Transform pos: 7.5,-3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8869 components: - type: Transform @@ -65520,7 +64107,7 @@ entities: pos: 7.5,-11.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8871 components: - type: Transform @@ -65528,14 +64115,14 @@ entities: pos: 11.5,-18.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8911 components: - type: Transform pos: 11.5,3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8944 components: - type: Transform @@ -65543,21 +64130,21 @@ entities: pos: 13.5,-20.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8966 components: - type: Transform pos: 13.5,1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8978 components: - type: Transform pos: 9.5,-2.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 9023 components: - type: Transform @@ -65572,45 +64159,52 @@ entities: pos: -13.5,-15.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 9067 + color: '#0000FFFF' + - uid: 9063 components: - type: Transform rot: -1.5707963267948966 rad - pos: -8.5,-52.5 + pos: 6.5,-48.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#EB9834FF' - uid: 9262 components: - type: Transform pos: 21.5,-16.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 9620 + color: '#FF0000FF' + - uid: 9428 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-39.5 + pos: -11.5,-44.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 9675 - components: - - type: Transform - pos: -2.5,-51.5 - parent: 30 - - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 9683 + color: '#FF0000FF' + - uid: 9436 components: - type: Transform rot: 3.141592653589793 rad - pos: -2.5,-53.5 + pos: -13.5,-44.5 parent: 30 - type: AtmosPipeColor - color: '#03FCD3FF' + color: '#FF0000FF' + - uid: 9653 + components: + - type: Transform + pos: 8.5,-42.5 + parent: 30 + - type: AtmosPipeColor + color: '#EB9834FF' + - uid: 9681 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-42.5 + parent: 30 + - type: AtmosPipeColor + color: '#EB9834FF' - uid: 9750 components: - type: Transform @@ -65618,7 +64212,7 @@ entities: pos: -3.5,-30.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 9751 components: - type: Transform @@ -65626,7 +64220,7 @@ entities: pos: -3.5,-18.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 9752 components: - type: Transform @@ -65634,69 +64228,53 @@ entities: pos: -1.5,-20.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 9770 components: - type: Transform pos: 0.5,-30.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 9869 + color: '#FF0000FF' + - uid: 9783 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-53.5 - parent: 30 - - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 9870 - components: - - type: Transform - pos: 3.5,-49.5 - parent: 30 - - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 9883 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-54.5 + rot: 1.5707963267948966 rad + pos: 6.5,-46.5 parent: 30 - type: AtmosPipeColor color: '#EB9834FF' + - uid: 9813 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-46.5 + parent: 30 + - type: AtmosPipeColor + color: '#EB9834FF' + - uid: 9892 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,-43.5 + parent: 30 + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 9898 components: - type: Transform rot: 1.5707963267948966 rad - pos: 4.5,-46.5 + pos: -22.5,-41.5 parent: 30 - type: AtmosPipeColor - color: '#EB9834FF' - - uid: 9899 + color: '#FF0000FF' + - uid: 9919 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-46.5 + pos: -11.5,-29.5 parent: 30 - type: AtmosPipeColor - color: '#EB9834FF' - - uid: 9900 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,-38.5 - parent: 30 - - type: AtmosPipeColor - color: '#EB9834FF' - - uid: 9901 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-38.5 - parent: 30 - - type: AtmosPipeColor - color: '#EB9834FF' + color: '#0000FFFF' - uid: 9983 components: - type: Transform @@ -65704,55 +64282,31 @@ entities: pos: 7.5,-27.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11088 + color: '#0000FFFF' + - uid: 10604 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-27.5 + parent: 30 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 10606 components: - type: Transform rot: 1.5707963267948966 rad - pos: -18.5,-39.5 + pos: -12.5,-39.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11090 + color: '#0000FFFF' + - uid: 10636 components: - type: Transform rot: -1.5707963267948966 rad - pos: -18.5,-41.5 + pos: 0.5,-40.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11101 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-29.5 - parent: 30 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11102 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-30.5 - parent: 30 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11117 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-41.5 - parent: 30 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11137 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,-41.5 - parent: 30 - - type: AtmosPipeColor - color: '#0335FCFF' + color: '#FF0000FF' - uid: 11167 components: - type: Transform @@ -65768,21 +64322,21 @@ entities: pos: 11.5,-22.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11191 components: - type: Transform pos: 12.5,-22.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11668 components: - type: Transform pos: 34.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11778 components: - type: Transform @@ -65790,14 +64344,14 @@ entities: pos: 30.5,-6.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11873 components: - type: Transform pos: 33.5,-2.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11874 components: - type: Transform @@ -65805,14 +64359,14 @@ entities: pos: 5.5,-23.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11982 components: - type: Transform pos: 21.5,1.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12002 components: - type: Transform @@ -65820,7 +64374,7 @@ entities: pos: 33.5,-5.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12493 components: - type: Transform @@ -65828,7 +64382,7 @@ entities: pos: 9.5,39.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12514 components: - type: Transform @@ -65836,7 +64390,7 @@ entities: pos: 21.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12515 components: - type: Transform @@ -65844,14 +64398,14 @@ entities: pos: 23.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12588 components: - type: Transform pos: 26.5,40.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12589 components: - type: Transform @@ -65859,7 +64413,7 @@ entities: pos: 26.5,37.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12610 components: - type: Transform @@ -65867,7 +64421,7 @@ entities: pos: 27.5,26.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12618 components: - type: Transform @@ -65875,7 +64429,22 @@ entities: pos: 26.5,29.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' + - uid: 12639 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,6.5 + parent: 30 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 12659 + components: + - type: Transform + pos: -52.5,-60.5 + parent: 30 + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 12750 components: - type: Transform @@ -65888,6 +64457,14 @@ entities: rot: -1.5707963267948966 rad pos: 32.5,11.5 parent: 30 + - uid: 12831 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -62.5,-62.5 + parent: 30 + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 12883 components: - type: Transform @@ -65895,7 +64472,7 @@ entities: pos: 21.5,20.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12903 components: - type: Transform @@ -65903,7 +64480,7 @@ entities: pos: 43.5,10.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12909 components: - type: Transform @@ -65911,7 +64488,7 @@ entities: pos: 42.5,10.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12926 components: - type: Transform @@ -65925,14 +64502,14 @@ entities: pos: 23.5,8.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12995 components: - type: Transform pos: 18.5,20.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12996 components: - type: Transform @@ -65940,7 +64517,7 @@ entities: pos: 18.5,19.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13016 components: - type: Transform @@ -65948,7 +64525,7 @@ entities: pos: 12.5,22.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13024 components: - type: Transform @@ -65956,7 +64533,7 @@ entities: pos: 12.5,14.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13036 components: - type: Transform @@ -65964,7 +64541,7 @@ entities: pos: 21.5,7.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13038 components: - type: Transform @@ -65972,14 +64549,14 @@ entities: pos: 17.5,18.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13039 components: - type: Transform pos: 17.5,22.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13341 components: - type: Transform @@ -65987,14 +64564,14 @@ entities: pos: 40.5,7.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13752 components: - type: Transform pos: 31.5,36.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13767 components: - type: Transform @@ -66002,7 +64579,7 @@ entities: pos: 31.5,37.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13791 components: - type: Transform @@ -66010,7 +64587,23 @@ entities: pos: 29.5,35.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' + - uid: 14450 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,7.5 + parent: 30 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 14451 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,12.5 + parent: 30 + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 14978 components: - type: Transform @@ -66018,7 +64611,7 @@ entities: pos: 16.5,43.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15452 components: - type: Transform @@ -66026,7 +64619,7 @@ entities: pos: 52.5,19.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15888 components: - type: Transform @@ -66034,7 +64627,7 @@ entities: pos: 42.5,19.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15890 components: - type: Transform @@ -66042,7 +64635,7 @@ entities: pos: 32.5,5.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15963 components: - type: Transform @@ -66050,7 +64643,7 @@ entities: pos: 42.5,5.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 16099 components: - type: Transform @@ -66058,7 +64651,34 @@ entities: pos: 32.5,-11.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' + - uid: 17723 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -52.5,-62.5 + parent: 30 + - uid: 17729 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -53.5,-65.5 + parent: 30 + - uid: 18071 + components: + - type: Transform + pos: 16.5,12.5 + parent: 30 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 18075 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,10.5 + parent: 30 + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 18385 components: - type: Transform @@ -66066,7 +64686,7 @@ entities: pos: -45.5,-22.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18386 components: - type: Transform @@ -66074,7 +64694,7 @@ entities: pos: -62.5,-22.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18415 components: - type: Transform @@ -66082,7 +64702,7 @@ entities: pos: -44.5,-24.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18447 components: - type: Transform @@ -66090,7 +64710,7 @@ entities: pos: -63.5,-24.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18478 components: - type: Transform @@ -66098,7 +64718,7 @@ entities: pos: -62.5,-38.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18479 components: - type: Transform @@ -66106,7 +64726,7 @@ entities: pos: -61.5,-38.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18484 components: - type: Transform @@ -66114,21 +64734,21 @@ entities: pos: -65.5,-38.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18485 components: - type: Transform pos: -58.5,-38.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18498 components: - type: Transform pos: -62.5,-45.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18513 components: - type: Transform @@ -66136,7 +64756,7 @@ entities: pos: -78.5,-45.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18608 components: - type: Transform @@ -66144,15 +64764,7 @@ entities: pos: -56.5,-59.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 18609 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -55.5,-60.5 - parent: 30 - - type: AtmosPipeColor - color: '#0335FCFF' + color: '#FF0000FF' - uid: 18612 components: - type: Transform @@ -66160,7 +64772,7 @@ entities: pos: -68.5,-48.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18613 components: - type: Transform @@ -66168,7 +64780,7 @@ entities: pos: -67.5,-49.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18621 components: - type: Transform @@ -66176,7 +64788,7 @@ entities: pos: -58.5,-46.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18648 components: - type: Transform @@ -66184,7 +64796,7 @@ entities: pos: -79.5,-46.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18661 components: - type: Transform @@ -66192,7 +64804,7 @@ entities: pos: -77.5,-43.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18743 components: - type: Transform @@ -66200,21 +64812,7 @@ entities: pos: -76.5,-54.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 18763 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -58.5,-65.5 - parent: 30 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 18779 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -66.5,-64.5 - parent: 30 + color: '#FF0000FF' - uid: 21262 components: - type: Transform @@ -66222,14 +64820,14 @@ entities: pos: 21.5,-19.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 21269 components: - type: Transform pos: 27.5,-18.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 21270 components: - type: Transform @@ -66237,7 +64835,7 @@ entities: pos: 27.5,-20.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 21986 components: - type: Transform @@ -66245,7 +64843,7 @@ entities: pos: -0.5,37.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 22264 components: - type: Transform @@ -66253,30 +64851,14 @@ entities: pos: 42.5,16.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 22266 components: - type: Transform pos: 43.5,16.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 22795 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,-60.5 - parent: 30 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 22855 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,-58.5 - parent: 30 - - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - proto: GasPipeFourway entities: - uid: 2101 @@ -66285,91 +64867,91 @@ entities: pos: 32.5,8.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2430 components: - type: Transform pos: -36.5,37.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2702 components: - type: Transform pos: -48.5,67.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2770 components: - type: Transform pos: -36.5,7.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2805 components: - type: Transform pos: -10.5,1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2807 components: - type: Transform pos: -3.5,3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2843 components: - type: Transform pos: 8.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2883 components: - type: Transform pos: -31.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2909 components: - type: Transform pos: -36.5,10.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2910 components: - type: Transform pos: -34.5,8.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2950 components: - type: Transform pos: -1.5,1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2957 components: - type: Transform pos: 5.5,1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2986 components: - type: Transform pos: 10.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 7002 components: - type: Transform @@ -66381,14 +64963,14 @@ entities: pos: -29.5,-12.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 7086 components: - type: Transform pos: -34.5,-1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 7603 components: - type: Transform @@ -66400,105 +64982,105 @@ entities: pos: -28.5,-5.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8779 components: - type: Transform pos: 10.5,-24.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8845 components: - type: Transform pos: 11.5,-23.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8866 components: - type: Transform pos: 5.5,-2.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8870 components: - type: Transform pos: 13.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8955 components: - type: Transform pos: 11.5,-11.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11078 + color: '#FF0000FF' + - uid: 10136 components: - type: Transform - pos: -8.5,-39.5 + pos: -12.5,-43.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11126 + color: '#0000FFFF' + - uid: 10439 components: - type: Transform - pos: -6.5,-41.5 + pos: -6.5,-39.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11876 components: - type: Transform pos: 21.5,-6.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11937 components: - type: Transform pos: 20.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12001 components: - type: Transform pos: 30.5,-2.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12541 components: - type: Transform pos: 21.5,36.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12872 components: - type: Transform pos: 23.5,15.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12886 components: - type: Transform pos: 21.5,18.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 13034 + color: '#FF0000FF' + - uid: 14462 components: - type: Transform pos: 21.5,11.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - proto: GasPipeStraight entities: - uid: 239 @@ -66508,7 +65090,7 @@ entities: pos: -50.5,-8.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 475 components: - type: Transform @@ -66516,12 +65098,7 @@ entities: pos: -16.5,13.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 845 - components: - - type: Transform - pos: -9.5,-56.5 - parent: 30 + color: '#FF0000FF' - uid: 874 components: - type: Transform @@ -66529,7 +65106,7 @@ entities: pos: -52.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 875 components: - type: Transform @@ -66537,7 +65114,7 @@ entities: pos: -50.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 877 components: - type: Transform @@ -66545,12 +65122,7 @@ entities: pos: -51.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 908 - components: - - type: Transform - pos: -12.5,-58.5 - parent: 30 + color: '#FF0000FF' - uid: 909 components: - type: Transform @@ -66558,12 +65130,7 @@ entities: pos: -48.5,-8.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 915 - components: - - type: Transform - pos: -12.5,-57.5 - parent: 30 + color: '#0000FFFF' - uid: 935 components: - type: Transform @@ -66571,7 +65138,7 @@ entities: pos: -47.5,7.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 940 components: - type: Transform @@ -66579,7 +65146,7 @@ entities: pos: -46.5,8.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 942 components: - type: Transform @@ -66587,28 +65154,28 @@ entities: pos: -49.5,10.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 944 components: - type: Transform pos: -48.5,8.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 947 components: - type: Transform pos: -45.5,-3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 964 components: - type: Transform pos: -44.5,-4.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 1076 components: - type: Transform @@ -66616,7 +65183,7 @@ entities: pos: -47.5,-8.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 1307 components: - type: Transform @@ -66624,7 +65191,7 @@ entities: pos: -52.5,-8.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 1308 components: - type: Transform @@ -66632,14 +65199,14 @@ entities: pos: -51.5,-8.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 1415 components: - type: Transform pos: -47.5,9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 1929 components: - type: Transform @@ -66647,14 +65214,14 @@ entities: pos: -31.5,-18.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2100 components: - type: Transform pos: 32.5,7.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2432 components: - type: Transform @@ -66662,7 +65229,7 @@ entities: pos: -36.5,36.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2433 components: - type: Transform @@ -66670,7 +65237,7 @@ entities: pos: -36.5,35.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2434 components: - type: Transform @@ -66678,7 +65245,7 @@ entities: pos: -36.5,34.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2435 components: - type: Transform @@ -66686,7 +65253,7 @@ entities: pos: -36.5,33.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2436 components: - type: Transform @@ -66694,7 +65261,7 @@ entities: pos: -34.5,34.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2437 components: - type: Transform @@ -66702,7 +65269,7 @@ entities: pos: -34.5,33.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2438 components: - type: Transform @@ -66710,7 +65277,7 @@ entities: pos: -36.5,31.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2439 components: - type: Transform @@ -66718,7 +65285,7 @@ entities: pos: -34.5,32.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2443 components: - type: Transform @@ -66726,7 +65293,7 @@ entities: pos: -35.5,35.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2444 components: - type: Transform @@ -66734,7 +65301,7 @@ entities: pos: -36.5,35.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2445 components: - type: Transform @@ -66742,7 +65309,7 @@ entities: pos: -37.5,35.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2446 components: - type: Transform @@ -66750,7 +65317,7 @@ entities: pos: -38.5,35.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2447 components: - type: Transform @@ -66758,7 +65325,7 @@ entities: pos: -39.5,35.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2448 components: - type: Transform @@ -66766,7 +65333,7 @@ entities: pos: -37.5,37.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2449 components: - type: Transform @@ -66774,7 +65341,7 @@ entities: pos: -38.5,37.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2450 components: - type: Transform @@ -66782,7 +65349,7 @@ entities: pos: -39.5,37.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2455 components: - type: Transform @@ -66790,7 +65357,7 @@ entities: pos: -40.5,35.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2457 components: - type: Transform @@ -66798,7 +65365,7 @@ entities: pos: -40.5,37.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2460 components: - type: Transform @@ -66806,7 +65373,7 @@ entities: pos: -42.5,35.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2461 components: - type: Transform @@ -66814,7 +65381,7 @@ entities: pos: -44.5,35.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2462 components: - type: Transform @@ -66822,7 +65389,7 @@ entities: pos: -43.5,35.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2464 components: - type: Transform @@ -66830,7 +65397,7 @@ entities: pos: -46.5,35.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2465 components: - type: Transform @@ -66838,7 +65405,7 @@ entities: pos: -47.5,35.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2466 components: - type: Transform @@ -66846,7 +65413,7 @@ entities: pos: -48.5,35.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2467 components: - type: Transform @@ -66854,7 +65421,7 @@ entities: pos: -43.5,37.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2468 components: - type: Transform @@ -66862,7 +65429,7 @@ entities: pos: -44.5,37.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2469 components: - type: Transform @@ -66870,7 +65437,7 @@ entities: pos: -45.5,37.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2470 components: - type: Transform @@ -66878,7 +65445,7 @@ entities: pos: -46.5,37.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2471 components: - type: Transform @@ -66886,7 +65453,7 @@ entities: pos: -47.5,37.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2472 components: - type: Transform @@ -66894,7 +65461,7 @@ entities: pos: -48.5,37.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2473 components: - type: Transform @@ -66902,105 +65469,105 @@ entities: pos: -49.5,37.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2476 components: - type: Transform pos: -49.5,34.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2477 components: - type: Transform pos: -49.5,33.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2478 components: - type: Transform pos: -50.5,36.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2479 components: - type: Transform pos: -50.5,35.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2480 components: - type: Transform pos: -50.5,34.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2481 components: - type: Transform pos: -50.5,33.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2484 components: - type: Transform pos: -41.5,34.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2485 components: - type: Transform pos: -41.5,33.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2486 components: - type: Transform pos: -42.5,36.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2487 components: - type: Transform pos: -42.5,35.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2488 components: - type: Transform pos: -42.5,34.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2489 components: - type: Transform pos: -42.5,33.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2494 components: - type: Transform pos: -36.5,38.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2495 components: - type: Transform pos: -36.5,39.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2498 components: - type: Transform @@ -67008,7 +65575,7 @@ entities: pos: -34.5,37.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2499 components: - type: Transform @@ -67016,7 +65583,7 @@ entities: pos: -34.5,38.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2500 components: - type: Transform @@ -67024,7 +65591,7 @@ entities: pos: -34.5,40.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2501 components: - type: Transform @@ -67032,7 +65599,7 @@ entities: pos: -34.5,41.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2502 components: - type: Transform @@ -67040,7 +65607,7 @@ entities: pos: -36.5,41.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2505 components: - type: Transform @@ -67048,7 +65615,7 @@ entities: pos: -36.5,42.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2506 components: - type: Transform @@ -67056,7 +65623,7 @@ entities: pos: -36.5,43.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2511 components: - type: Transform @@ -67064,7 +65631,7 @@ entities: pos: -34.5,44.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2514 components: - type: Transform @@ -67072,7 +65639,7 @@ entities: pos: -32.5,42.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2515 components: - type: Transform @@ -67080,7 +65647,7 @@ entities: pos: -31.5,43.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2516 components: - type: Transform @@ -67088,7 +65655,7 @@ entities: pos: -31.5,44.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2517 components: - type: Transform @@ -67096,7 +65663,7 @@ entities: pos: -31.5,45.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2518 components: - type: Transform @@ -67104,7 +65671,7 @@ entities: pos: -33.5,45.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2522 components: - type: Transform @@ -67112,7 +65679,7 @@ entities: pos: -31.5,47.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2528 components: - type: Transform @@ -67120,7 +65687,7 @@ entities: pos: -34.5,47.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2529 components: - type: Transform @@ -67128,7 +65695,7 @@ entities: pos: -35.5,47.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2530 components: - type: Transform @@ -67136,7 +65703,7 @@ entities: pos: -36.5,47.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2531 components: - type: Transform @@ -67144,7 +65711,7 @@ entities: pos: -37.5,47.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2533 components: - type: Transform @@ -67152,7 +65719,7 @@ entities: pos: -39.5,47.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2534 components: - type: Transform @@ -67160,7 +65727,7 @@ entities: pos: -32.5,48.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2535 components: - type: Transform @@ -67168,7 +65735,7 @@ entities: pos: -33.5,48.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2536 components: - type: Transform @@ -67176,7 +65743,7 @@ entities: pos: -34.5,48.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2537 components: - type: Transform @@ -67184,7 +65751,7 @@ entities: pos: -35.5,48.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2538 components: - type: Transform @@ -67192,7 +65759,7 @@ entities: pos: -36.5,48.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2539 components: - type: Transform @@ -67200,7 +65767,7 @@ entities: pos: -37.5,48.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2540 components: - type: Transform @@ -67208,7 +65775,7 @@ entities: pos: -38.5,48.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2541 components: - type: Transform @@ -67216,7 +65783,7 @@ entities: pos: -39.5,48.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2543 components: - type: Transform @@ -67224,7 +65791,7 @@ entities: pos: -40.5,47.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2546 components: - type: Transform @@ -67232,7 +65799,7 @@ entities: pos: -38.5,48.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2547 components: - type: Transform @@ -67240,7 +65807,7 @@ entities: pos: -40.5,49.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2548 components: - type: Transform @@ -67248,7 +65815,7 @@ entities: pos: -38.5,49.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2549 components: - type: Transform @@ -67256,7 +65823,7 @@ entities: pos: -38.5,50.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2550 components: - type: Transform @@ -67264,49 +65831,49 @@ entities: pos: -40.5,50.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2555 components: - type: Transform pos: -33.5,48.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2556 components: - type: Transform pos: -33.5,49.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2557 components: - type: Transform pos: -33.5,50.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2558 components: - type: Transform pos: -31.5,50.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2559 components: - type: Transform pos: -31.5,51.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2560 components: - type: Transform pos: -31.5,52.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2561 components: - type: Transform @@ -67314,7 +65881,7 @@ entities: pos: -32.5,51.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2562 components: - type: Transform @@ -67322,7 +65889,7 @@ entities: pos: -31.5,51.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2563 components: - type: Transform @@ -67330,7 +65897,7 @@ entities: pos: -30.5,51.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2564 components: - type: Transform @@ -67338,7 +65905,7 @@ entities: pos: -29.5,51.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2565 components: - type: Transform @@ -67346,7 +65913,7 @@ entities: pos: -28.5,51.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2566 components: - type: Transform @@ -67354,7 +65921,7 @@ entities: pos: -27.5,51.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2567 components: - type: Transform @@ -67362,7 +65929,7 @@ entities: pos: -26.5,51.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2568 components: - type: Transform @@ -67370,7 +65937,7 @@ entities: pos: -30.5,49.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2569 components: - type: Transform @@ -67378,7 +65945,7 @@ entities: pos: -29.5,49.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2570 components: - type: Transform @@ -67386,7 +65953,7 @@ entities: pos: -28.5,49.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2571 components: - type: Transform @@ -67394,7 +65961,7 @@ entities: pos: -27.5,49.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2572 components: - type: Transform @@ -67402,7 +65969,7 @@ entities: pos: -26.5,49.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2575 components: - type: Transform @@ -67410,7 +65977,7 @@ entities: pos: -33.5,52.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2584 components: - type: Transform @@ -67418,7 +65985,7 @@ entities: pos: -29.5,54.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2585 components: - type: Transform @@ -67426,7 +65993,7 @@ entities: pos: -35.5,54.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2586 components: - type: Transform @@ -67434,7 +66001,7 @@ entities: pos: -35.5,55.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2587 components: - type: Transform @@ -67442,7 +66009,7 @@ entities: pos: -35.5,56.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2588 components: - type: Transform @@ -67450,7 +66017,7 @@ entities: pos: -29.5,56.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2589 components: - type: Transform @@ -67458,7 +66025,7 @@ entities: pos: -29.5,55.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2590 components: - type: Transform @@ -67466,7 +66033,7 @@ entities: pos: -30.5,57.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2591 components: - type: Transform @@ -67474,91 +66041,91 @@ entities: pos: -34.5,57.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2602 components: - type: Transform pos: -46.5,41.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2603 components: - type: Transform pos: -48.5,43.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2604 components: - type: Transform pos: -48.5,42.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2605 components: - type: Transform pos: -48.5,41.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2606 components: - type: Transform pos: -44.5,43.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2607 components: - type: Transform pos: -44.5,42.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2608 components: - type: Transform pos: -44.5,41.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2609 components: - type: Transform pos: -42.5,41.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2610 components: - type: Transform pos: -40.5,43.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2611 components: - type: Transform pos: -40.5,42.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2612 components: - type: Transform pos: -40.5,41.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2613 components: - type: Transform pos: -38.5,41.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2614 components: - type: Transform @@ -67566,7 +66133,7 @@ entities: pos: -35.5,42.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2615 components: - type: Transform @@ -67574,7 +66141,7 @@ entities: pos: -36.5,42.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2616 components: - type: Transform @@ -67582,7 +66149,7 @@ entities: pos: -37.5,42.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2617 components: - type: Transform @@ -67590,7 +66157,7 @@ entities: pos: -39.5,42.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2618 components: - type: Transform @@ -67598,7 +66165,7 @@ entities: pos: -40.5,42.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2620 components: - type: Transform @@ -67606,7 +66173,7 @@ entities: pos: -43.5,42.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2621 components: - type: Transform @@ -67614,7 +66181,7 @@ entities: pos: -44.5,42.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2622 components: - type: Transform @@ -67622,7 +66189,7 @@ entities: pos: -45.5,42.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2623 components: - type: Transform @@ -67630,7 +66197,7 @@ entities: pos: -37.5,44.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2624 components: - type: Transform @@ -67638,7 +66205,7 @@ entities: pos: -38.5,44.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2625 components: - type: Transform @@ -67646,7 +66213,7 @@ entities: pos: -39.5,44.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2626 components: - type: Transform @@ -67654,7 +66221,7 @@ entities: pos: -41.5,44.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2627 components: - type: Transform @@ -67662,7 +66229,7 @@ entities: pos: -42.5,44.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2629 components: - type: Transform @@ -67670,7 +66237,7 @@ entities: pos: -45.5,44.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2630 components: - type: Transform @@ -67678,7 +66245,7 @@ entities: pos: -46.5,44.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2631 components: - type: Transform @@ -67686,7 +66253,7 @@ entities: pos: -47.5,44.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2632 components: - type: Transform @@ -67694,7 +66261,7 @@ entities: pos: -46.5,43.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2633 components: - type: Transform @@ -67702,7 +66269,7 @@ entities: pos: -46.5,44.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2634 components: - type: Transform @@ -67710,7 +66277,7 @@ entities: pos: -46.5,45.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2635 components: - type: Transform @@ -67718,7 +66285,7 @@ entities: pos: -46.5,46.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2636 components: - type: Transform @@ -67726,7 +66293,7 @@ entities: pos: -48.5,45.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2637 components: - type: Transform @@ -67734,7 +66301,7 @@ entities: pos: -48.5,46.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2649 components: - type: Transform @@ -67742,7 +66309,7 @@ entities: pos: -48.5,47.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2650 components: - type: Transform @@ -67750,7 +66317,7 @@ entities: pos: -48.5,48.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2651 components: - type: Transform @@ -67758,7 +66325,7 @@ entities: pos: -46.5,48.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2652 components: - type: Transform @@ -67766,7 +66333,7 @@ entities: pos: -46.5,47.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2653 components: - type: Transform @@ -67774,7 +66341,7 @@ entities: pos: -48.5,49.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2655 components: - type: Transform @@ -67782,7 +66349,7 @@ entities: pos: -46.5,53.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2656 components: - type: Transform @@ -67790,7 +66357,7 @@ entities: pos: -46.5,50.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2657 components: - type: Transform @@ -67798,7 +66365,7 @@ entities: pos: -46.5,51.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2660 components: - type: Transform @@ -67806,7 +66373,7 @@ entities: pos: -48.5,52.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2661 components: - type: Transform @@ -67814,7 +66381,7 @@ entities: pos: -48.5,53.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2663 components: - type: Transform @@ -67822,7 +66389,7 @@ entities: pos: -48.5,54.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2664 components: - type: Transform @@ -67830,7 +66397,7 @@ entities: pos: -46.5,54.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2665 components: - type: Transform @@ -67838,7 +66405,7 @@ entities: pos: -46.5,55.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2666 components: - type: Transform @@ -67846,7 +66413,7 @@ entities: pos: -48.5,55.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2671 components: - type: Transform @@ -67854,7 +66421,7 @@ entities: pos: -49.5,51.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2672 components: - type: Transform @@ -67862,7 +66429,7 @@ entities: pos: -47.5,52.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2673 components: - type: Transform @@ -67870,7 +66437,7 @@ entities: pos: -48.5,52.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2674 components: - type: Transform @@ -67878,7 +66445,7 @@ entities: pos: -49.5,52.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2678 components: - type: Transform @@ -67886,7 +66453,7 @@ entities: pos: -47.5,57.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2679 components: - type: Transform @@ -67894,7 +66461,7 @@ entities: pos: -48.5,57.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2680 components: - type: Transform @@ -67902,7 +66469,7 @@ entities: pos: -49.5,57.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2682 components: - type: Transform @@ -67910,7 +66477,7 @@ entities: pos: -50.5,58.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2683 components: - type: Transform @@ -67918,7 +66485,7 @@ entities: pos: -46.5,58.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2684 components: - type: Transform @@ -67926,7 +66493,7 @@ entities: pos: -46.5,59.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2685 components: - type: Transform @@ -67934,7 +66501,7 @@ entities: pos: -46.5,60.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2686 components: - type: Transform @@ -67942,7 +66509,7 @@ entities: pos: -50.5,60.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2687 components: - type: Transform @@ -67950,77 +66517,77 @@ entities: pos: -50.5,59.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2690 components: - type: Transform pos: -50.5,62.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2691 components: - type: Transform pos: -46.5,62.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2692 components: - type: Transform pos: -46.5,63.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2693 components: - type: Transform pos: -46.5,64.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2694 components: - type: Transform pos: -46.5,65.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2695 components: - type: Transform pos: -46.5,66.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2696 components: - type: Transform pos: -50.5,63.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2697 components: - type: Transform pos: -50.5,64.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2698 components: - type: Transform pos: -50.5,65.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2699 components: - type: Transform pos: -50.5,66.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2703 components: - type: Transform @@ -68028,7 +66595,7 @@ entities: pos: -49.5,67.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2704 components: - type: Transform @@ -68036,7 +66603,7 @@ entities: pos: -47.5,67.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2710 components: - type: Transform @@ -68044,7 +66611,7 @@ entities: pos: -48.5,57.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2713 components: - type: Transform @@ -68052,7 +66619,7 @@ entities: pos: -49.5,58.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2714 components: - type: Transform @@ -68060,63 +66627,63 @@ entities: pos: -50.5,58.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2715 components: - type: Transform pos: -47.5,59.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2716 components: - type: Transform pos: -51.5,59.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2719 components: - type: Transform pos: -47.5,61.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2720 components: - type: Transform pos: -51.5,61.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2721 components: - type: Transform pos: -51.5,62.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2722 components: - type: Transform pos: -51.5,63.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2723 components: - type: Transform pos: -47.5,62.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2724 components: - type: Transform pos: -47.5,63.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2727 components: - type: Transform @@ -68124,7 +66691,7 @@ entities: pos: -50.5,64.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2728 components: - type: Transform @@ -68132,7 +66699,7 @@ entities: pos: -49.5,64.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2735 components: - type: Transform @@ -68140,7 +66707,7 @@ entities: pos: -32.5,44.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2736 components: - type: Transform @@ -68148,7 +66715,7 @@ entities: pos: -31.5,44.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2737 components: - type: Transform @@ -68156,7 +66723,7 @@ entities: pos: -30.5,44.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2738 components: - type: Transform @@ -68164,7 +66731,7 @@ entities: pos: -29.5,44.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2739 components: - type: Transform @@ -68172,7 +66739,7 @@ entities: pos: -30.5,42.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2740 components: - type: Transform @@ -68180,154 +66747,154 @@ entities: pos: -29.5,42.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2747 components: - type: Transform pos: -36.5,30.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2748 components: - type: Transform pos: -36.5,29.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2749 components: - type: Transform pos: -36.5,28.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2751 components: - type: Transform pos: -36.5,26.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2752 components: - type: Transform pos: -36.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2754 components: - type: Transform pos: -36.5,23.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2755 components: - type: Transform pos: -36.5,22.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2756 components: - type: Transform pos: -36.5,21.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2757 components: - type: Transform pos: -36.5,20.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2758 components: - type: Transform pos: -36.5,19.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2759 components: - type: Transform pos: -36.5,18.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2761 components: - type: Transform pos: -36.5,16.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2763 components: - type: Transform pos: -36.5,14.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2764 components: - type: Transform pos: -36.5,13.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2765 components: - type: Transform pos: -36.5,12.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2766 components: - type: Transform pos: -36.5,11.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2768 components: - type: Transform pos: -36.5,9.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2769 components: - type: Transform pos: -36.5,8.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2771 components: - type: Transform pos: -36.5,6.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2772 components: - type: Transform pos: -36.5,4.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2773 components: - type: Transform pos: -36.5,5.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2775 components: - type: Transform @@ -68335,7 +66902,7 @@ entities: pos: -35.5,3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2776 components: - type: Transform @@ -68343,7 +66910,7 @@ entities: pos: -34.5,3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2778 components: - type: Transform @@ -68351,7 +66918,7 @@ entities: pos: -32.5,3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2780 components: - type: Transform @@ -68359,7 +66926,7 @@ entities: pos: -30.5,3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2781 components: - type: Transform @@ -68367,7 +66934,7 @@ entities: pos: -29.5,3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2782 components: - type: Transform @@ -68375,7 +66942,7 @@ entities: pos: -28.5,3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2783 components: - type: Transform @@ -68383,7 +66950,7 @@ entities: pos: -27.5,3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2784 components: - type: Transform @@ -68391,7 +66958,7 @@ entities: pos: -26.5,3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2785 components: - type: Transform @@ -68399,7 +66966,7 @@ entities: pos: -25.5,3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2787 components: - type: Transform @@ -68407,7 +66974,7 @@ entities: pos: -23.5,3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2789 components: - type: Transform @@ -68415,7 +66982,7 @@ entities: pos: -22.5,3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2790 components: - type: Transform @@ -68423,7 +66990,7 @@ entities: pos: -20.5,3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2791 components: - type: Transform @@ -68431,7 +66998,7 @@ entities: pos: -19.5,3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2792 components: - type: Transform @@ -68439,7 +67006,7 @@ entities: pos: -18.5,3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2793 components: - type: Transform @@ -68447,7 +67014,7 @@ entities: pos: -17.5,3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2794 components: - type: Transform @@ -68455,7 +67022,7 @@ entities: pos: -16.5,3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2795 components: - type: Transform @@ -68463,7 +67030,7 @@ entities: pos: -15.5,3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2797 components: - type: Transform @@ -68471,7 +67038,7 @@ entities: pos: -13.5,3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2798 components: - type: Transform @@ -68479,7 +67046,7 @@ entities: pos: -12.5,3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2799 components: - type: Transform @@ -68487,7 +67054,7 @@ entities: pos: -11.5,3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2800 components: - type: Transform @@ -68495,7 +67062,7 @@ entities: pos: -10.5,3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2801 components: - type: Transform @@ -68503,7 +67070,7 @@ entities: pos: -9.5,3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2803 components: - type: Transform @@ -68511,7 +67078,7 @@ entities: pos: -7.5,3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2804 components: - type: Transform @@ -68519,7 +67086,7 @@ entities: pos: -5.5,3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2806 components: - type: Transform @@ -68527,7 +67094,7 @@ entities: pos: -4.5,3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2808 components: - type: Transform @@ -68535,7 +67102,7 @@ entities: pos: -1.5,3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2809 components: - type: Transform @@ -68543,7 +67110,7 @@ entities: pos: -2.5,3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2810 components: - type: Transform @@ -68551,7 +67118,7 @@ entities: pos: -0.5,3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2811 components: - type: Transform @@ -68559,7 +67126,7 @@ entities: pos: 0.5,3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2813 components: - type: Transform @@ -68567,7 +67134,7 @@ entities: pos: 2.5,3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2815 components: - type: Transform @@ -68575,7 +67142,7 @@ entities: pos: 4.5,3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2816 components: - type: Transform @@ -68583,7 +67150,7 @@ entities: pos: 5.5,3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2817 components: - type: Transform @@ -68591,7 +67158,7 @@ entities: pos: 6.5,3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2818 components: - type: Transform @@ -68599,7 +67166,7 @@ entities: pos: 7.5,3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2820 components: - type: Transform @@ -68607,7 +67174,7 @@ entities: pos: 8.5,4.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2821 components: - type: Transform @@ -68615,7 +67182,7 @@ entities: pos: 8.5,5.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2822 components: - type: Transform @@ -68623,7 +67190,7 @@ entities: pos: 8.5,6.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2823 components: - type: Transform @@ -68631,7 +67198,7 @@ entities: pos: 8.5,7.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2824 components: - type: Transform @@ -68639,7 +67206,7 @@ entities: pos: 8.5,8.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2825 components: - type: Transform @@ -68647,7 +67214,7 @@ entities: pos: 8.5,9.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2826 components: - type: Transform @@ -68655,7 +67222,7 @@ entities: pos: 8.5,10.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2827 components: - type: Transform @@ -68663,7 +67230,7 @@ entities: pos: 8.5,11.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2828 components: - type: Transform @@ -68671,7 +67238,7 @@ entities: pos: 8.5,12.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2829 components: - type: Transform @@ -68679,7 +67246,7 @@ entities: pos: 8.5,14.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2830 components: - type: Transform @@ -68687,7 +67254,7 @@ entities: pos: 8.5,13.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2832 components: - type: Transform @@ -68695,7 +67262,7 @@ entities: pos: 8.5,16.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2834 components: - type: Transform @@ -68703,7 +67270,7 @@ entities: pos: 8.5,18.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2835 components: - type: Transform @@ -68711,7 +67278,7 @@ entities: pos: 8.5,19.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2836 components: - type: Transform @@ -68719,7 +67286,7 @@ entities: pos: 8.5,20.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2837 components: - type: Transform @@ -68727,7 +67294,7 @@ entities: pos: 8.5,21.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2838 components: - type: Transform @@ -68735,7 +67302,7 @@ entities: pos: 8.5,22.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2839 components: - type: Transform @@ -68743,7 +67310,7 @@ entities: pos: 8.5,23.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2840 components: - type: Transform @@ -68751,7 +67318,7 @@ entities: pos: 8.5,24.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2841 components: - type: Transform @@ -68759,7 +67326,7 @@ entities: pos: 8.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2844 components: - type: Transform @@ -68767,7 +67334,7 @@ entities: pos: 7.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2845 components: - type: Transform @@ -68775,7 +67342,7 @@ entities: pos: 6.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2846 components: - type: Transform @@ -68783,7 +67350,7 @@ entities: pos: 5.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2847 components: - type: Transform @@ -68791,7 +67358,7 @@ entities: pos: 4.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2848 components: - type: Transform @@ -68799,7 +67366,7 @@ entities: pos: 3.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2849 components: - type: Transform @@ -68807,7 +67374,7 @@ entities: pos: 2.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2850 components: - type: Transform @@ -68815,7 +67382,7 @@ entities: pos: 1.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2852 components: - type: Transform @@ -68823,7 +67390,7 @@ entities: pos: -0.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2853 components: - type: Transform @@ -68831,7 +67398,7 @@ entities: pos: -1.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2855 components: - type: Transform @@ -68839,7 +67406,7 @@ entities: pos: -3.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2856 components: - type: Transform @@ -68847,7 +67414,7 @@ entities: pos: -5.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2858 components: - type: Transform @@ -68855,7 +67422,7 @@ entities: pos: -6.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2859 components: - type: Transform @@ -68863,7 +67430,7 @@ entities: pos: -7.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2860 components: - type: Transform @@ -68871,7 +67438,7 @@ entities: pos: -8.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2861 components: - type: Transform @@ -68879,7 +67446,7 @@ entities: pos: -9.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2863 components: - type: Transform @@ -68887,7 +67454,7 @@ entities: pos: -12.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2864 components: - type: Transform @@ -68895,7 +67462,7 @@ entities: pos: -11.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2865 components: - type: Transform @@ -68903,7 +67470,7 @@ entities: pos: -13.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2867 components: - type: Transform @@ -68911,7 +67478,7 @@ entities: pos: -15.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2868 components: - type: Transform @@ -68919,7 +67486,7 @@ entities: pos: -16.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2869 components: - type: Transform @@ -68927,7 +67494,7 @@ entities: pos: -17.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2870 components: - type: Transform @@ -68935,7 +67502,7 @@ entities: pos: -18.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2872 components: - type: Transform @@ -68943,7 +67510,7 @@ entities: pos: -20.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2874 components: - type: Transform @@ -68951,7 +67518,7 @@ entities: pos: -22.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2875 components: - type: Transform @@ -68959,7 +67526,7 @@ entities: pos: -23.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2876 components: - type: Transform @@ -68967,7 +67534,7 @@ entities: pos: -24.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2877 components: - type: Transform @@ -68975,7 +67542,7 @@ entities: pos: -25.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2878 components: - type: Transform @@ -68983,7 +67550,7 @@ entities: pos: -26.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2880 components: - type: Transform @@ -68991,7 +67558,7 @@ entities: pos: -28.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2881 components: - type: Transform @@ -68999,7 +67566,7 @@ entities: pos: -29.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2882 components: - type: Transform @@ -69007,7 +67574,7 @@ entities: pos: -30.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2884 components: - type: Transform @@ -69015,7 +67582,7 @@ entities: pos: -33.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2885 components: - type: Transform @@ -69023,7 +67590,7 @@ entities: pos: -32.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2886 components: - type: Transform @@ -69031,7 +67598,7 @@ entities: pos: -34.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2887 components: - type: Transform @@ -69039,161 +67606,161 @@ entities: pos: -35.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2889 components: - type: Transform pos: -34.5,30.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2890 components: - type: Transform pos: -34.5,29.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2891 components: - type: Transform pos: -34.5,28.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2892 components: - type: Transform pos: -34.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2894 components: - type: Transform pos: -34.5,24.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2895 components: - type: Transform pos: -34.5,23.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2896 components: - type: Transform pos: -34.5,22.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2897 components: - type: Transform pos: -34.5,21.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2898 components: - type: Transform pos: -34.5,20.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2900 components: - type: Transform pos: -34.5,18.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2901 components: - type: Transform pos: -34.5,17.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2902 components: - type: Transform pos: -34.5,16.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2903 components: - type: Transform pos: -34.5,15.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2904 components: - type: Transform pos: -34.5,14.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2906 components: - type: Transform pos: -34.5,12.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2907 components: - type: Transform pos: -34.5,11.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2908 components: - type: Transform pos: -34.5,10.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2911 components: - type: Transform pos: -34.5,7.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2912 components: - type: Transform pos: -34.5,6.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2914 components: - type: Transform pos: -34.5,4.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2915 components: - type: Transform pos: -34.5,3.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2916 components: - type: Transform pos: -34.5,2.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2918 components: - type: Transform @@ -69201,7 +67768,7 @@ entities: pos: -33.5,1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2920 components: - type: Transform @@ -69209,7 +67776,7 @@ entities: pos: -31.5,1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2921 components: - type: Transform @@ -69217,7 +67784,7 @@ entities: pos: -30.5,1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2922 components: - type: Transform @@ -69225,7 +67792,7 @@ entities: pos: -29.5,1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2923 components: - type: Transform @@ -69233,7 +67800,7 @@ entities: pos: -28.5,1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2925 components: - type: Transform @@ -69241,7 +67808,7 @@ entities: pos: -26.5,1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2926 components: - type: Transform @@ -69249,7 +67816,7 @@ entities: pos: -25.5,1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2927 components: - type: Transform @@ -69257,7 +67824,7 @@ entities: pos: -24.5,1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2928 components: - type: Transform @@ -69265,7 +67832,7 @@ entities: pos: -23.5,1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2929 components: - type: Transform @@ -69273,7 +67840,7 @@ entities: pos: -22.5,1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2930 components: - type: Transform @@ -69281,7 +67848,7 @@ entities: pos: -21.5,1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2931 components: - type: Transform @@ -69289,7 +67856,7 @@ entities: pos: -20.5,1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2934 components: - type: Transform @@ -69297,7 +67864,7 @@ entities: pos: -16.5,1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2936 components: - type: Transform @@ -69305,7 +67872,7 @@ entities: pos: -15.5,1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2937 components: - type: Transform @@ -69313,7 +67880,7 @@ entities: pos: -14.5,1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2938 components: - type: Transform @@ -69321,7 +67888,7 @@ entities: pos: -13.5,1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2939 components: - type: Transform @@ -69329,7 +67896,7 @@ entities: pos: -12.5,1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2940 components: - type: Transform @@ -69337,7 +67904,7 @@ entities: pos: -11.5,1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2942 components: - type: Transform @@ -69345,7 +67912,7 @@ entities: pos: -9.5,1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2943 components: - type: Transform @@ -69353,7 +67920,7 @@ entities: pos: -8.5,1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2944 components: - type: Transform @@ -69361,7 +67928,7 @@ entities: pos: -7.5,1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2945 components: - type: Transform @@ -69369,7 +67936,7 @@ entities: pos: -6.5,1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2946 components: - type: Transform @@ -69377,7 +67944,7 @@ entities: pos: -5.5,1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2947 components: - type: Transform @@ -69385,7 +67952,7 @@ entities: pos: -4.5,1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2948 components: - type: Transform @@ -69393,7 +67960,7 @@ entities: pos: -3.5,1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2949 components: - type: Transform @@ -69401,7 +67968,7 @@ entities: pos: -2.5,1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2951 components: - type: Transform @@ -69409,7 +67976,7 @@ entities: pos: -0.5,1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2952 components: - type: Transform @@ -69417,7 +67984,7 @@ entities: pos: 0.5,1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2953 components: - type: Transform @@ -69425,7 +67992,7 @@ entities: pos: 2.5,1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2954 components: - type: Transform @@ -69433,7 +68000,7 @@ entities: pos: 1.5,1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2955 components: - type: Transform @@ -69441,7 +68008,7 @@ entities: pos: 3.5,1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2956 components: - type: Transform @@ -69449,7 +68016,7 @@ entities: pos: 4.5,1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2958 components: - type: Transform @@ -69457,7 +68024,7 @@ entities: pos: 6.5,1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2959 components: - type: Transform @@ -69465,7 +68032,7 @@ entities: pos: 7.5,1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2960 components: - type: Transform @@ -69473,7 +68040,7 @@ entities: pos: 9.5,1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2961 components: - type: Transform @@ -69481,7 +68048,7 @@ entities: pos: 8.5,1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2963 components: - type: Transform @@ -69489,7 +68056,7 @@ entities: pos: 10.5,2.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2964 components: - type: Transform @@ -69497,7 +68064,7 @@ entities: pos: 10.5,3.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2965 components: - type: Transform @@ -69505,7 +68072,7 @@ entities: pos: 10.5,4.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2966 components: - type: Transform @@ -69513,7 +68080,7 @@ entities: pos: 10.5,5.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2967 components: - type: Transform @@ -69521,7 +68088,7 @@ entities: pos: 10.5,6.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2968 components: - type: Transform @@ -69529,7 +68096,7 @@ entities: pos: 10.5,7.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2969 components: - type: Transform @@ -69537,7 +68104,7 @@ entities: pos: 10.5,8.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2970 components: - type: Transform @@ -69545,7 +68112,7 @@ entities: pos: 10.5,9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2971 components: - type: Transform @@ -69553,7 +68120,7 @@ entities: pos: 10.5,10.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2972 components: - type: Transform @@ -69561,7 +68128,7 @@ entities: pos: 10.5,11.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2973 components: - type: Transform @@ -69569,7 +68136,7 @@ entities: pos: 10.5,12.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2974 components: - type: Transform @@ -69577,7 +68144,7 @@ entities: pos: 10.5,13.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2976 components: - type: Transform @@ -69585,7 +68152,7 @@ entities: pos: 11.5,15.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2977 components: - type: Transform @@ -69593,7 +68160,7 @@ entities: pos: 10.5,16.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2978 components: - type: Transform @@ -69601,7 +68168,7 @@ entities: pos: 10.5,17.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2979 components: - type: Transform @@ -69609,7 +68176,7 @@ entities: pos: 10.5,18.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2980 components: - type: Transform @@ -69617,7 +68184,7 @@ entities: pos: 10.5,20.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2981 components: - type: Transform @@ -69625,7 +68192,7 @@ entities: pos: 10.5,19.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2982 components: - type: Transform @@ -69633,7 +68200,7 @@ entities: pos: 10.5,21.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2983 components: - type: Transform @@ -69641,7 +68208,7 @@ entities: pos: 10.5,22.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2984 components: - type: Transform @@ -69649,7 +68216,7 @@ entities: pos: 10.5,23.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2987 components: - type: Transform @@ -69657,7 +68224,7 @@ entities: pos: 9.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2988 components: - type: Transform @@ -69665,7 +68232,7 @@ entities: pos: 8.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2989 components: - type: Transform @@ -69673,7 +68240,7 @@ entities: pos: 7.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2990 components: - type: Transform @@ -69681,7 +68248,7 @@ entities: pos: 6.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2991 components: - type: Transform @@ -69689,7 +68256,7 @@ entities: pos: 5.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2992 components: - type: Transform @@ -69697,7 +68264,7 @@ entities: pos: 4.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2993 components: - type: Transform @@ -69705,7 +68272,7 @@ entities: pos: 2.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2995 components: - type: Transform @@ -69713,7 +68280,7 @@ entities: pos: 0.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2996 components: - type: Transform @@ -69721,7 +68288,7 @@ entities: pos: 1.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2998 components: - type: Transform @@ -69729,7 +68296,7 @@ entities: pos: -2.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2999 components: - type: Transform @@ -69737,7 +68304,7 @@ entities: pos: -1.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3001 components: - type: Transform @@ -69745,7 +68312,7 @@ entities: pos: -4.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3002 components: - type: Transform @@ -69753,7 +68320,7 @@ entities: pos: -5.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3003 components: - type: Transform @@ -69761,7 +68328,7 @@ entities: pos: -6.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3004 components: - type: Transform @@ -69769,7 +68336,7 @@ entities: pos: -7.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3005 components: - type: Transform @@ -69777,7 +68344,7 @@ entities: pos: -9.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3007 components: - type: Transform @@ -69785,7 +68352,7 @@ entities: pos: -10.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3008 components: - type: Transform @@ -69793,7 +68360,7 @@ entities: pos: -11.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3009 components: - type: Transform @@ -69801,7 +68368,7 @@ entities: pos: -12.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3010 components: - type: Transform @@ -69809,7 +68376,7 @@ entities: pos: -13.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3011 components: - type: Transform @@ -69817,7 +68384,7 @@ entities: pos: -14.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3013 components: - type: Transform @@ -69825,7 +68392,7 @@ entities: pos: -16.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3014 components: - type: Transform @@ -69833,7 +68400,7 @@ entities: pos: -17.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3015 components: - type: Transform @@ -69841,7 +68408,7 @@ entities: pos: -18.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3016 components: - type: Transform @@ -69849,7 +68416,7 @@ entities: pos: -19.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3017 components: - type: Transform @@ -69857,7 +68424,7 @@ entities: pos: -20.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3018 components: - type: Transform @@ -69865,7 +68432,7 @@ entities: pos: -21.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3021 components: - type: Transform @@ -69873,7 +68440,7 @@ entities: pos: -24.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3024 components: - type: Transform @@ -69881,7 +68448,7 @@ entities: pos: -27.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3025 components: - type: Transform @@ -69889,7 +68456,7 @@ entities: pos: -29.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3026 components: - type: Transform @@ -69897,7 +68464,7 @@ entities: pos: -28.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3028 components: - type: Transform @@ -69905,7 +68472,7 @@ entities: pos: -31.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3029 components: - type: Transform @@ -69913,7 +68480,7 @@ entities: pos: -32.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3030 components: - type: Transform @@ -69921,7 +68488,7 @@ entities: pos: -33.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3031 components: - type: Transform @@ -69929,7 +68496,7 @@ entities: pos: -31.5,28.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3032 components: - type: Transform @@ -69937,7 +68504,7 @@ entities: pos: -31.5,29.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3033 components: - type: Transform @@ -69945,7 +68512,7 @@ entities: pos: -31.5,30.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3034 components: - type: Transform @@ -69953,7 +68520,7 @@ entities: pos: -25.5,26.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3035 components: - type: Transform @@ -69961,7 +68528,7 @@ entities: pos: -25.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3036 components: - type: Transform @@ -69969,7 +68536,7 @@ entities: pos: -25.5,28.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3037 components: - type: Transform @@ -69977,7 +68544,7 @@ entities: pos: -25.5,29.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3038 components: - type: Transform @@ -69985,112 +68552,112 @@ entities: pos: -25.5,30.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3043 components: - type: Transform pos: -30.5,24.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3044 components: - type: Transform pos: -30.5,23.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3045 components: - type: Transform pos: -31.5,26.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3046 components: - type: Transform pos: -31.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3047 components: - type: Transform pos: -31.5,24.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3048 components: - type: Transform pos: -31.5,23.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3051 components: - type: Transform pos: -26.5,24.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3052 components: - type: Transform pos: -27.5,26.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3053 components: - type: Transform pos: -27.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3054 components: - type: Transform pos: -27.5,24.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3057 components: - type: Transform pos: -22.5,24.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3058 components: - type: Transform pos: -21.5,26.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3059 components: - type: Transform pos: -21.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3060 components: - type: Transform pos: -21.5,24.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3061 components: - type: Transform pos: -21.5,23.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3070 components: - type: Transform @@ -70098,7 +68665,7 @@ entities: pos: -35.5,9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3071 components: - type: Transform @@ -70106,7 +68673,7 @@ entities: pos: -36.5,9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3072 components: - type: Transform @@ -70114,7 +68681,7 @@ entities: pos: -37.5,9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3073 components: - type: Transform @@ -70122,7 +68689,7 @@ entities: pos: -38.5,9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3074 components: - type: Transform @@ -70130,7 +68697,7 @@ entities: pos: -37.5,10.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3075 components: - type: Transform @@ -70138,7 +68705,7 @@ entities: pos: -38.5,10.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3079 components: - type: Transform @@ -70146,7 +68713,7 @@ entities: pos: -39.5,9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3080 components: - type: Transform @@ -70154,7 +68721,7 @@ entities: pos: -35.5,5.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3081 components: - type: Transform @@ -70162,7 +68729,7 @@ entities: pos: -36.5,5.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3082 components: - type: Transform @@ -70170,7 +68737,7 @@ entities: pos: -37.5,5.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3083 components: - type: Transform @@ -70178,7 +68745,7 @@ entities: pos: -38.5,5.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3085 components: - type: Transform @@ -70186,7 +68753,7 @@ entities: pos: -40.5,5.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3086 components: - type: Transform @@ -70194,7 +68761,7 @@ entities: pos: -41.5,5.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3088 components: - type: Transform @@ -70202,7 +68769,7 @@ entities: pos: -43.5,5.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3089 components: - type: Transform @@ -70210,7 +68777,7 @@ entities: pos: -37.5,7.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3090 components: - type: Transform @@ -70218,7 +68785,7 @@ entities: pos: -38.5,7.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3092 components: - type: Transform @@ -70226,7 +68793,7 @@ entities: pos: -40.5,7.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3094 components: - type: Transform @@ -70234,7 +68801,7 @@ entities: pos: -42.5,7.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3095 components: - type: Transform @@ -70242,7 +68809,7 @@ entities: pos: -43.5,7.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3096 components: - type: Transform @@ -70250,7 +68817,7 @@ entities: pos: -44.5,7.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3101 components: - type: Transform @@ -70258,7 +68825,7 @@ entities: pos: -41.5,6.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3102 components: - type: Transform @@ -70266,7 +68833,7 @@ entities: pos: -41.5,5.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3103 components: - type: Transform @@ -70274,7 +68841,7 @@ entities: pos: -41.5,4.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3104 components: - type: Transform @@ -70282,7 +68849,7 @@ entities: pos: -41.5,3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3105 components: - type: Transform @@ -70290,7 +68857,7 @@ entities: pos: -41.5,2.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3106 components: - type: Transform @@ -70298,7 +68865,7 @@ entities: pos: -41.5,1.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3107 components: - type: Transform @@ -70306,7 +68873,7 @@ entities: pos: -39.5,4.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3108 components: - type: Transform @@ -70314,7 +68881,7 @@ entities: pos: -39.5,3.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3109 components: - type: Transform @@ -70322,7 +68889,7 @@ entities: pos: -39.5,2.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3110 components: - type: Transform @@ -70330,7 +68897,7 @@ entities: pos: -39.5,1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3113 components: - type: Transform @@ -70338,7 +68905,7 @@ entities: pos: -46.5,7.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3121 components: - type: Transform @@ -70346,7 +68913,7 @@ entities: pos: -51.5,10.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3122 components: - type: Transform @@ -70354,7 +68921,7 @@ entities: pos: -50.5,10.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3124 components: - type: Transform @@ -70362,7 +68929,7 @@ entities: pos: -48.5,10.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3127 components: - type: Transform @@ -70370,7 +68937,7 @@ entities: pos: -45.5,8.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3128 components: - type: Transform @@ -70378,7 +68945,7 @@ entities: pos: -44.5,7.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3129 components: - type: Transform @@ -70386,7 +68953,7 @@ entities: pos: -44.5,6.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3132 components: - type: Transform @@ -70394,7 +68961,7 @@ entities: pos: -49.5,9.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3133 components: - type: Transform @@ -70402,124 +68969,119 @@ entities: pos: -50.5,9.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3139 components: - type: Transform pos: -45.5,5.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3140 components: - type: Transform pos: -45.5,4.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3141 components: - type: Transform pos: -45.5,3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3142 components: - type: Transform pos: -45.5,2.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3143 components: - type: Transform pos: -44.5,3.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3144 components: - type: Transform pos: -44.5,2.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3145 components: - type: Transform pos: -44.5,1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3146 components: - type: Transform pos: -45.5,1.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3149 components: - type: Transform pos: -45.5,0.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3150 components: - type: Transform pos: -45.5,-0.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3151 components: - type: Transform pos: -45.5,-1.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 3153 - components: - - type: Transform - pos: -5.5,-56.5 - parent: 30 + color: '#FF0000FF' - uid: 3156 components: - type: Transform pos: -44.5,-5.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3157 components: - type: Transform pos: -44.5,-3.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3158 components: - type: Transform pos: -44.5,-1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3159 components: - type: Transform pos: -44.5,-0.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3160 components: - type: Transform pos: -44.5,0.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3164 components: - type: Transform @@ -70527,7 +69089,7 @@ entities: pos: -45.5,-4.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3165 components: - type: Transform @@ -70535,7 +69097,7 @@ entities: pos: -45.5,-2.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3178 components: - type: Transform @@ -70543,7 +69105,7 @@ entities: pos: -49.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3179 components: - type: Transform @@ -70551,28 +69113,28 @@ entities: pos: -48.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3190 components: - type: Transform pos: -51.5,10.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3191 components: - type: Transform pos: -51.5,11.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3192 components: - type: Transform pos: -52.5,11.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3205 components: - type: Transform @@ -70580,7 +69142,7 @@ entities: pos: -45.5,-6.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3206 components: - type: Transform @@ -70588,7 +69150,7 @@ entities: pos: -45.5,-7.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3207 components: - type: Transform @@ -70596,7 +69158,7 @@ entities: pos: -45.5,-8.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3209 components: - type: Transform @@ -70604,7 +69166,7 @@ entities: pos: -45.5,-10.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3210 components: - type: Transform @@ -70612,7 +69174,7 @@ entities: pos: -45.5,-11.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3211 components: - type: Transform @@ -70620,7 +69182,7 @@ entities: pos: -44.5,-6.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3212 components: - type: Transform @@ -70628,7 +69190,7 @@ entities: pos: -44.5,-7.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3214 components: - type: Transform @@ -70636,7 +69198,7 @@ entities: pos: -44.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3215 components: - type: Transform @@ -70644,7 +69206,7 @@ entities: pos: -44.5,-10.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3216 components: - type: Transform @@ -70652,21 +69214,21 @@ entities: pos: -44.5,-11.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3217 components: - type: Transform pos: -45.5,-12.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3218 components: - type: Transform pos: -45.5,-13.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3219 components: - type: Transform @@ -70674,7 +69236,7 @@ entities: pos: -45.5,-8.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3220 components: - type: Transform @@ -70682,7 +69244,7 @@ entities: pos: -46.5,-8.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3222 components: - type: Transform @@ -70690,7 +69252,7 @@ entities: pos: -33.5,8.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3223 components: - type: Transform @@ -70698,7 +69260,7 @@ entities: pos: -32.5,8.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3224 components: - type: Transform @@ -70706,7 +69268,7 @@ entities: pos: -35.5,7.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3225 components: - type: Transform @@ -70714,7 +69276,7 @@ entities: pos: -34.5,7.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3226 components: - type: Transform @@ -70722,7 +69284,7 @@ entities: pos: -33.5,7.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3227 components: - type: Transform @@ -70730,7 +69292,7 @@ entities: pos: -32.5,7.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3232 components: - type: Transform @@ -70738,7 +69300,7 @@ entities: pos: -35.5,13.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3233 components: - type: Transform @@ -70746,7 +69308,7 @@ entities: pos: -36.5,13.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3234 components: - type: Transform @@ -70754,7 +69316,7 @@ entities: pos: -37.5,13.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3235 components: - type: Transform @@ -70762,7 +69324,7 @@ entities: pos: -38.5,13.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3236 components: - type: Transform @@ -70770,7 +69332,7 @@ entities: pos: -39.5,13.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3237 components: - type: Transform @@ -70778,7 +69340,7 @@ entities: pos: -37.5,15.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3238 components: - type: Transform @@ -70786,7 +69348,7 @@ entities: pos: -38.5,15.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3239 components: - type: Transform @@ -70794,7 +69356,7 @@ entities: pos: -39.5,15.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3240 components: - type: Transform @@ -70802,7 +69364,7 @@ entities: pos: -40.5,15.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3242 components: - type: Transform @@ -70810,7 +69372,7 @@ entities: pos: -40.5,13.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3243 components: - type: Transform @@ -70818,7 +69380,7 @@ entities: pos: -41.5,13.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3244 components: - type: Transform @@ -70826,7 +69388,7 @@ entities: pos: -42.5,13.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3247 components: - type: Transform @@ -70834,7 +69396,7 @@ entities: pos: -43.5,14.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3248 components: - type: Transform @@ -70842,7 +69404,7 @@ entities: pos: -43.5,15.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3249 components: - type: Transform @@ -70850,7 +69412,7 @@ entities: pos: -42.5,16.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3250 components: - type: Transform @@ -70858,7 +69420,7 @@ entities: pos: -43.5,16.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3251 components: - type: Transform @@ -70866,7 +69428,7 @@ entities: pos: -43.5,17.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3252 components: - type: Transform @@ -70874,7 +69436,7 @@ entities: pos: -42.5,17.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3256 components: - type: Transform @@ -70882,7 +69444,7 @@ entities: pos: -43.5,15.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3257 components: - type: Transform @@ -70890,7 +69452,7 @@ entities: pos: -44.5,15.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3258 components: - type: Transform @@ -70898,7 +69460,7 @@ entities: pos: -45.5,15.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3259 components: - type: Transform @@ -70906,7 +69468,7 @@ entities: pos: -46.5,15.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3260 components: - type: Transform @@ -70914,7 +69476,7 @@ entities: pos: -47.5,15.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3261 components: - type: Transform @@ -70922,7 +69484,7 @@ entities: pos: -45.5,13.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3262 components: - type: Transform @@ -70930,7 +69492,7 @@ entities: pos: -46.5,13.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3263 components: - type: Transform @@ -70938,7 +69500,7 @@ entities: pos: -47.5,13.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3264 components: - type: Transform @@ -70946,7 +69508,7 @@ entities: pos: -48.5,13.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3265 components: - type: Transform @@ -70954,21 +69516,21 @@ entities: pos: -48.5,15.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3269 components: - type: Transform pos: -49.5,14.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3270 components: - type: Transform pos: -49.5,13.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3273 components: - type: Transform @@ -70976,7 +69538,7 @@ entities: pos: -50.5,12.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3274 components: - type: Transform @@ -70984,7 +69546,7 @@ entities: pos: -49.5,13.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3276 components: - type: Transform @@ -70992,14 +69554,14 @@ entities: pos: -51.5,13.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3277 components: - type: Transform pos: -52.5,12.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3279 components: - type: Transform @@ -71007,7 +69569,7 @@ entities: pos: -53.5,13.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3280 components: - type: Transform @@ -71015,7 +69577,7 @@ entities: pos: -54.5,13.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3281 components: - type: Transform @@ -71023,7 +69585,7 @@ entities: pos: -55.5,13.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3282 components: - type: Transform @@ -71031,7 +69593,7 @@ entities: pos: -56.5,13.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3287 components: - type: Transform @@ -71039,7 +69601,7 @@ entities: pos: -58.5,13.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3288 components: - type: Transform @@ -71047,7 +69609,7 @@ entities: pos: -59.5,13.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3289 components: - type: Transform @@ -71055,7 +69617,7 @@ entities: pos: -58.5,15.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3290 components: - type: Transform @@ -71063,7 +69625,7 @@ entities: pos: -59.5,15.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3291 components: - type: Transform @@ -71071,7 +69633,7 @@ entities: pos: -57.5,14.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3292 components: - type: Transform @@ -71079,7 +69641,7 @@ entities: pos: -57.5,16.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3293 components: - type: Transform @@ -71087,7 +69649,7 @@ entities: pos: -57.5,17.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3295 components: - type: Transform @@ -71095,7 +69657,7 @@ entities: pos: -57.5,19.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3296 components: - type: Transform @@ -71103,7 +69665,7 @@ entities: pos: -57.5,20.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3297 components: - type: Transform @@ -71111,7 +69673,7 @@ entities: pos: -58.5,21.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3298 components: - type: Transform @@ -71119,7 +69681,7 @@ entities: pos: -59.5,21.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3299 components: - type: Transform @@ -71127,7 +69689,7 @@ entities: pos: -58.5,23.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3300 components: - type: Transform @@ -71135,35 +69697,35 @@ entities: pos: -59.5,23.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3301 components: - type: Transform pos: -57.5,22.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3308 components: - type: Transform pos: -49.5,17.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3309 components: - type: Transform pos: -49.5,18.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3310 components: - type: Transform pos: -49.5,19.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3311 components: - type: Transform @@ -71171,7 +69733,7 @@ entities: pos: -50.5,20.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3312 components: - type: Transform @@ -71179,7 +69741,7 @@ entities: pos: -51.5,20.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3313 components: - type: Transform @@ -71187,7 +69749,7 @@ entities: pos: -52.5,20.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3314 components: - type: Transform @@ -71195,7 +69757,7 @@ entities: pos: -50.5,16.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3315 components: - type: Transform @@ -71203,7 +69765,7 @@ entities: pos: -51.5,16.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3316 components: - type: Transform @@ -71211,7 +69773,7 @@ entities: pos: -52.5,16.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3319 components: - type: Transform @@ -71219,7 +69781,7 @@ entities: pos: -50.5,14.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3320 components: - type: Transform @@ -71227,7 +69789,7 @@ entities: pos: -50.5,15.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3321 components: - type: Transform @@ -71235,7 +69797,7 @@ entities: pos: -50.5,16.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3322 components: - type: Transform @@ -71243,7 +69805,7 @@ entities: pos: -50.5,17.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3329 components: - type: Transform @@ -71251,7 +69813,7 @@ entities: pos: -19.5,2.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3330 components: - type: Transform @@ -71259,7 +69821,7 @@ entities: pos: -19.5,3.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3331 components: - type: Transform @@ -71267,7 +69829,7 @@ entities: pos: -19.5,4.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3332 components: - type: Transform @@ -71275,7 +69837,7 @@ entities: pos: -19.5,5.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3334 components: - type: Transform @@ -71283,7 +69845,7 @@ entities: pos: -18.5,6.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3335 components: - type: Transform @@ -71291,7 +69853,7 @@ entities: pos: -17.5,6.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3337 components: - type: Transform @@ -71299,7 +69861,7 @@ entities: pos: -20.5,6.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3338 components: - type: Transform @@ -71307,7 +69869,7 @@ entities: pos: -21.5,6.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3339 components: - type: Transform @@ -71315,7 +69877,7 @@ entities: pos: -22.5,6.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3340 components: - type: Transform @@ -71323,55 +69885,7 @@ entities: pos: -23.5,6.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3341 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,6.5 - parent: 30 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3342 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,6.5 - parent: 30 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3343 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,6.5 - parent: 30 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3345 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -27.5,7.5 - parent: 30 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3346 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -27.5,8.5 - parent: 30 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3347 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -27.5,9.5 - parent: 30 - - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3350 components: - type: Transform @@ -71379,7 +69893,7 @@ entities: pos: -21.5,4.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3351 components: - type: Transform @@ -71387,7 +69901,7 @@ entities: pos: -21.5,5.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3352 components: - type: Transform @@ -71395,7 +69909,7 @@ entities: pos: -21.5,6.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3354 components: - type: Transform @@ -71403,7 +69917,7 @@ entities: pos: -22.5,7.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3355 components: - type: Transform @@ -71411,51 +69925,36 @@ entities: pos: -23.5,8.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 3359 - components: - - type: Transform - pos: -27.5,11.5 - parent: 30 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3361 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,12.5 - parent: 30 - - type: AtmosPipeColor - color: '#0335FCFF' + color: '#FF0000FF' - uid: 3362 components: - type: Transform pos: -23.5,10.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3363 components: - type: Transform pos: -23.5,11.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3364 components: - type: Transform pos: -23.5,12.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3365 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,12.5 + rot: 3.141592653589793 rad + pos: -62.5,-61.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3366 components: - type: Transform @@ -71463,7 +69962,7 @@ entities: pos: -24.5,13.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3367 components: - type: Transform @@ -71471,7 +69970,7 @@ entities: pos: -24.5,14.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3369 components: - type: Transform @@ -71479,7 +69978,7 @@ entities: pos: -23.5,14.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3370 components: - type: Transform @@ -71487,7 +69986,7 @@ entities: pos: -23.5,15.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3371 components: - type: Transform @@ -71495,7 +69994,7 @@ entities: pos: -23.5,13.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3374 components: - type: Transform @@ -71503,7 +70002,7 @@ entities: pos: -25.5,15.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3378 components: - type: Transform @@ -71511,7 +70010,7 @@ entities: pos: -20.5,7.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3379 components: - type: Transform @@ -71519,7 +70018,7 @@ entities: pos: -19.5,7.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3380 components: - type: Transform @@ -71527,7 +70026,7 @@ entities: pos: -18.5,7.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3382 components: - type: Transform @@ -71535,7 +70034,7 @@ entities: pos: -16.5,7.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3383 components: - type: Transform @@ -71543,7 +70042,7 @@ entities: pos: -15.5,7.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3384 components: - type: Transform @@ -71551,84 +70050,84 @@ entities: pos: -14.5,7.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3385 components: - type: Transform pos: -16.5,7.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3386 components: - type: Transform pos: -16.5,8.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3387 components: - type: Transform pos: -16.5,9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3389 components: - type: Transform pos: -17.5,8.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3390 components: - type: Transform pos: -17.5,9.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3391 components: - type: Transform pos: -17.5,10.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3392 components: - type: Transform pos: -17.5,11.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3393 components: - type: Transform pos: -16.5,11.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3394 components: - type: Transform pos: -16.5,12.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3395 components: - type: Transform pos: -16.5,13.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3396 components: - type: Transform pos: -17.5,12.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3402 components: - type: Transform @@ -71636,7 +70135,7 @@ entities: pos: -14.5,10.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3403 components: - type: Transform @@ -71644,63 +70143,63 @@ entities: pos: -15.5,10.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3411 components: - type: Transform pos: -1.5,2.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3412 components: - type: Transform pos: -1.5,3.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3413 components: - type: Transform pos: -1.5,4.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3414 components: - type: Transform pos: -1.5,5.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3415 components: - type: Transform pos: -1.5,6.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3416 components: - type: Transform pos: -3.5,4.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3417 components: - type: Transform pos: -3.5,5.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3418 components: - type: Transform pos: -3.5,6.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3425 components: - type: Transform @@ -71708,7 +70207,7 @@ entities: pos: -3.5,8.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3426 components: - type: Transform @@ -71716,7 +70215,7 @@ entities: pos: -3.5,9.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3427 components: - type: Transform @@ -71724,7 +70223,7 @@ entities: pos: -3.5,10.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3428 components: - type: Transform @@ -71732,7 +70231,7 @@ entities: pos: -3.5,11.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3429 components: - type: Transform @@ -71740,7 +70239,7 @@ entities: pos: -3.5,12.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3430 components: - type: Transform @@ -71748,7 +70247,7 @@ entities: pos: -1.5,8.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3431 components: - type: Transform @@ -71756,7 +70255,7 @@ entities: pos: -1.5,9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3432 components: - type: Transform @@ -71764,7 +70263,7 @@ entities: pos: -1.5,10.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3433 components: - type: Transform @@ -71772,7 +70271,7 @@ entities: pos: -1.5,11.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3434 components: - type: Transform @@ -71780,7 +70279,7 @@ entities: pos: -1.5,12.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3435 components: - type: Transform @@ -71788,7 +70287,7 @@ entities: pos: -1.5,13.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3436 components: - type: Transform @@ -71796,7 +70295,7 @@ entities: pos: -2.5,13.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3437 components: - type: Transform @@ -71804,7 +70303,7 @@ entities: pos: -1.5,13.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3438 components: - type: Transform @@ -71812,7 +70311,7 @@ entities: pos: -0.5,13.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3439 components: - type: Transform @@ -71820,7 +70319,7 @@ entities: pos: 0.5,13.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3440 components: - type: Transform @@ -71828,7 +70327,7 @@ entities: pos: 1.5,13.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3441 components: - type: Transform @@ -71836,7 +70335,7 @@ entities: pos: 2.5,13.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3443 components: - type: Transform @@ -71844,7 +70343,7 @@ entities: pos: 0.5,14.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3444 components: - type: Transform @@ -71852,7 +70351,7 @@ entities: pos: 1.5,14.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3445 components: - type: Transform @@ -71860,7 +70359,7 @@ entities: pos: 2.5,14.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3446 components: - type: Transform @@ -71868,7 +70367,7 @@ entities: pos: -2.5,14.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3447 components: - type: Transform @@ -71876,7 +70375,7 @@ entities: pos: -3.5,14.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3448 components: - type: Transform @@ -71884,7 +70383,7 @@ entities: pos: -4.5,14.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3449 components: - type: Transform @@ -71892,7 +70391,7 @@ entities: pos: -5.5,14.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3450 components: - type: Transform @@ -71900,7 +70399,7 @@ entities: pos: -6.5,14.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3451 components: - type: Transform @@ -71908,7 +70407,7 @@ entities: pos: -7.5,14.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3453 components: - type: Transform @@ -71916,7 +70415,7 @@ entities: pos: -5.5,13.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3454 components: - type: Transform @@ -71924,7 +70423,7 @@ entities: pos: -6.5,13.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3455 components: - type: Transform @@ -71932,7 +70431,7 @@ entities: pos: -7.5,13.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3456 components: - type: Transform @@ -71940,7 +70439,7 @@ entities: pos: -8.5,13.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3457 components: - type: Transform @@ -71948,7 +70447,7 @@ entities: pos: -9.5,13.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3462 components: - type: Transform @@ -71956,7 +70455,7 @@ entities: pos: -11.5,13.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3463 components: - type: Transform @@ -71964,7 +70463,7 @@ entities: pos: -10.5,14.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3464 components: - type: Transform @@ -71972,7 +70471,7 @@ entities: pos: -11.5,14.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3465 components: - type: Transform @@ -71980,7 +70479,7 @@ entities: pos: -12.5,14.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3466 components: - type: Transform @@ -71988,7 +70487,7 @@ entities: pos: -13.5,14.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3467 components: - type: Transform @@ -71996,7 +70495,7 @@ entities: pos: -14.5,14.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3468 components: - type: Transform @@ -72004,7 +70503,7 @@ entities: pos: -15.5,14.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3470 components: - type: Transform @@ -72012,7 +70511,7 @@ entities: pos: -15.5,13.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3471 components: - type: Transform @@ -72020,7 +70519,7 @@ entities: pos: -14.5,13.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3472 components: - type: Transform @@ -72028,113 +70527,141 @@ entities: pos: -13.5,13.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3473 components: - type: Transform pos: -10.5,14.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3474 components: - type: Transform pos: -10.5,15.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3475 components: - type: Transform pos: -10.5,16.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3476 components: - type: Transform pos: -9.5,15.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3477 components: - type: Transform pos: -9.5,16.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3478 components: - type: Transform pos: -9.5,17.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3487 components: - type: Transform pos: -3.5,2.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3488 components: - type: Transform pos: -3.5,1.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3489 components: - type: Transform pos: -3.5,0.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3490 components: - type: Transform pos: -1.5,0.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3491 components: - type: Transform pos: -8.5,2.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3492 components: - type: Transform pos: -8.5,1.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3493 components: - type: Transform pos: 3.5,1.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3494 components: - type: Transform pos: 3.5,2.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 4353 + color: '#FF0000FF' + - uid: 3531 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-48.5 + pos: -13.5,-33.5 parent: 30 - type: AtmosPipeColor - color: '#03FCD3FF' + color: '#FF0000FF' + - uid: 3583 + components: + - type: Transform + pos: -13.5,-35.5 + parent: 30 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 3598 + components: + - type: Transform + pos: -18.5,-47.5 + parent: 30 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 4371 + components: + - type: Transform + pos: -25.5,9.5 + parent: 30 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 4894 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-42.5 + parent: 30 + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 4908 components: - type: Transform @@ -72142,21 +70669,21 @@ entities: pos: -26.5,-17.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 5006 components: - type: Transform pos: -19.5,33.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 5014 components: - type: Transform pos: -19.5,34.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 5418 components: - type: Transform @@ -72164,7 +70691,7 @@ entities: pos: -47.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 5427 components: - type: Transform @@ -72172,7 +70699,7 @@ entities: pos: -53.5,-8.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 5428 components: - type: Transform @@ -72180,7 +70707,7 @@ entities: pos: -46.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 5494 components: - type: Transform @@ -72188,7 +70715,7 @@ entities: pos: -53.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 5625 components: - type: Transform @@ -72196,7 +70723,7 @@ entities: pos: -27.5,-17.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 5668 components: - type: Transform @@ -72204,7 +70731,7 @@ entities: pos: -30.5,-20.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 5841 components: - type: Transform @@ -72218,63 +70745,63 @@ entities: pos: -2.5,37.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6114 components: - type: Transform pos: -2.5,26.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6115 components: - type: Transform pos: -2.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6116 components: - type: Transform pos: -2.5,24.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6117 components: - type: Transform pos: -2.5,23.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6118 components: - type: Transform pos: -2.5,22.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6119 components: - type: Transform pos: -0.5,24.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6120 components: - type: Transform pos: -0.5,23.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6121 components: - type: Transform pos: -0.5,22.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6124 components: - type: Transform @@ -72282,7 +70809,7 @@ entities: pos: -14.5,28.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6125 components: - type: Transform @@ -72290,7 +70817,7 @@ entities: pos: -14.5,29.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6126 components: - type: Transform @@ -72298,7 +70825,7 @@ entities: pos: -14.5,30.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6127 components: - type: Transform @@ -72306,7 +70833,7 @@ entities: pos: -14.5,31.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6128 components: - type: Transform @@ -72314,7 +70841,7 @@ entities: pos: -14.5,32.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6129 components: - type: Transform @@ -72322,7 +70849,7 @@ entities: pos: -14.5,33.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6130 components: - type: Transform @@ -72330,7 +70857,7 @@ entities: pos: -14.5,34.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6131 components: - type: Transform @@ -72338,7 +70865,7 @@ entities: pos: -14.5,35.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6133 components: - type: Transform @@ -72346,7 +70873,7 @@ entities: pos: -14.5,37.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6134 components: - type: Transform @@ -72354,7 +70881,7 @@ entities: pos: -14.5,38.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6135 components: - type: Transform @@ -72362,7 +70889,7 @@ entities: pos: -14.5,39.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6136 components: - type: Transform @@ -72370,7 +70897,7 @@ entities: pos: -4.5,28.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6137 components: - type: Transform @@ -72378,7 +70905,7 @@ entities: pos: -4.5,29.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6138 components: - type: Transform @@ -72386,7 +70913,7 @@ entities: pos: -4.5,30.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6139 components: - type: Transform @@ -72394,7 +70921,7 @@ entities: pos: -4.5,31.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6141 components: - type: Transform @@ -72402,7 +70929,7 @@ entities: pos: -4.5,33.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6142 components: - type: Transform @@ -72410,7 +70937,7 @@ entities: pos: -4.5,34.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6143 components: - type: Transform @@ -72418,7 +70945,7 @@ entities: pos: -4.5,35.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6144 components: - type: Transform @@ -72426,7 +70953,7 @@ entities: pos: -4.5,36.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6145 components: - type: Transform @@ -72434,7 +70961,7 @@ entities: pos: -4.5,37.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6146 components: - type: Transform @@ -72442,7 +70969,7 @@ entities: pos: -4.5,38.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6147 components: - type: Transform @@ -72450,7 +70977,7 @@ entities: pos: -4.5,39.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6149 components: - type: Transform @@ -72458,7 +70985,7 @@ entities: pos: -13.5,40.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6150 components: - type: Transform @@ -72466,7 +70993,7 @@ entities: pos: -12.5,40.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6152 components: - type: Transform @@ -72474,7 +71001,7 @@ entities: pos: -10.5,40.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6154 components: - type: Transform @@ -72482,7 +71009,7 @@ entities: pos: -8.5,40.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6155 components: - type: Transform @@ -72490,7 +71017,7 @@ entities: pos: -7.5,40.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6156 components: - type: Transform @@ -72498,7 +71025,7 @@ entities: pos: -6.5,40.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6157 components: - type: Transform @@ -72506,189 +71033,189 @@ entities: pos: -5.5,40.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6159 components: - type: Transform pos: -15.5,26.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6160 components: - type: Transform pos: -15.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6161 components: - type: Transform pos: -15.5,28.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6162 components: - type: Transform pos: -15.5,29.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6163 components: - type: Transform pos: -15.5,30.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6164 components: - type: Transform pos: -15.5,31.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6165 components: - type: Transform pos: -15.5,32.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6166 components: - type: Transform pos: -15.5,33.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6167 components: - type: Transform pos: -15.5,34.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6168 components: - type: Transform pos: -15.5,35.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6169 components: - type: Transform pos: -15.5,36.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6171 components: - type: Transform pos: -15.5,38.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6173 components: - type: Transform pos: -15.5,40.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6174 components: - type: Transform pos: -3.5,26.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6175 components: - type: Transform pos: -3.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6176 components: - type: Transform pos: -3.5,28.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6177 components: - type: Transform pos: -3.5,29.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6178 components: - type: Transform pos: -3.5,30.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6180 components: - type: Transform pos: -3.5,32.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6181 components: - type: Transform pos: -3.5,33.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6182 components: - type: Transform pos: -3.5,34.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6183 components: - type: Transform pos: -3.5,35.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6184 components: - type: Transform pos: -3.5,36.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6186 components: - type: Transform pos: -3.5,38.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6187 components: - type: Transform pos: -3.5,39.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6188 components: - type: Transform pos: -3.5,40.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6189 components: - type: Transform @@ -72696,7 +71223,7 @@ entities: pos: -4.5,41.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6190 components: - type: Transform @@ -72704,7 +71231,7 @@ entities: pos: -5.5,41.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6191 components: - type: Transform @@ -72712,7 +71239,7 @@ entities: pos: -6.5,41.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6192 components: - type: Transform @@ -72720,7 +71247,7 @@ entities: pos: -8.5,42.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6194 components: - type: Transform @@ -72728,7 +71255,7 @@ entities: pos: -10.5,42.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6195 components: - type: Transform @@ -72736,7 +71263,7 @@ entities: pos: -14.5,41.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6196 components: - type: Transform @@ -72744,7 +71271,7 @@ entities: pos: -13.5,41.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6197 components: - type: Transform @@ -72752,56 +71279,56 @@ entities: pos: -12.5,41.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6206 components: - type: Transform pos: -11.5,39.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6207 components: - type: Transform pos: -11.5,38.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6208 components: - type: Transform pos: -11.5,37.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6209 components: - type: Transform pos: -7.5,40.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6210 components: - type: Transform pos: -7.5,39.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6211 components: - type: Transform pos: -7.5,38.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6212 components: - type: Transform pos: -7.5,37.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6215 components: - type: Transform @@ -72809,7 +71336,7 @@ entities: pos: -3.5,32.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6216 components: - type: Transform @@ -72817,7 +71344,7 @@ entities: pos: -2.5,32.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6217 components: - type: Transform @@ -72825,7 +71352,7 @@ entities: pos: -1.5,32.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6218 components: - type: Transform @@ -72833,7 +71360,7 @@ entities: pos: -0.5,32.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6219 components: - type: Transform @@ -72841,7 +71368,7 @@ entities: pos: -2.5,31.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6220 components: - type: Transform @@ -72849,7 +71376,7 @@ entities: pos: -1.5,31.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6221 components: - type: Transform @@ -72857,7 +71384,7 @@ entities: pos: -0.5,31.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6226 components: - type: Transform @@ -72865,7 +71392,7 @@ entities: pos: -16.5,39.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6227 components: - type: Transform @@ -72873,7 +71400,7 @@ entities: pos: -17.5,39.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6228 components: - type: Transform @@ -72881,7 +71408,7 @@ entities: pos: -18.5,39.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6230 components: - type: Transform @@ -72889,7 +71416,7 @@ entities: pos: -16.5,37.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6231 components: - type: Transform @@ -72897,7 +71424,7 @@ entities: pos: -17.5,37.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6232 components: - type: Transform @@ -72905,7 +71432,7 @@ entities: pos: -18.5,37.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6233 components: - type: Transform @@ -72913,7 +71440,7 @@ entities: pos: -19.5,37.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6235 components: - type: Transform @@ -72921,7 +71448,7 @@ entities: pos: -21.5,37.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6236 components: - type: Transform @@ -72929,7 +71456,7 @@ entities: pos: -22.5,37.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6237 components: - type: Transform @@ -72937,7 +71464,7 @@ entities: pos: -23.5,37.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6238 components: - type: Transform @@ -72945,35 +71472,35 @@ entities: pos: -24.5,37.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6241 components: - type: Transform pos: -20.5,35.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6242 components: - type: Transform pos: -20.5,34.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6243 components: - type: Transform pos: -20.5,33.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6244 components: - type: Transform pos: -20.5,32.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6247 components: - type: Transform @@ -72981,7 +71508,7 @@ entities: pos: -15.5,36.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6248 components: - type: Transform @@ -72989,7 +71516,7 @@ entities: pos: -16.5,36.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6249 components: - type: Transform @@ -72997,7 +71524,7 @@ entities: pos: -17.5,36.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6253 components: - type: Transform @@ -73005,7 +71532,7 @@ entities: pos: -20.5,35.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6256 components: - type: Transform @@ -73013,7 +71540,7 @@ entities: pos: -22.5,36.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6257 components: - type: Transform @@ -73021,7 +71548,7 @@ entities: pos: -23.5,36.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6258 components: - type: Transform @@ -73029,7 +71556,7 @@ entities: pos: -24.5,36.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6259 components: - type: Transform @@ -73037,14 +71564,14 @@ entities: pos: -25.5,36.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6263 components: - type: Transform pos: -26.5,38.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6264 components: - type: Transform @@ -73052,14 +71579,14 @@ entities: pos: -27.5,39.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6267 components: - type: Transform pos: -19.5,32.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6681 components: - type: Transform @@ -73067,7 +71594,7 @@ entities: pos: -11.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6685 components: - type: Transform @@ -73075,7 +71602,7 @@ entities: pos: -17.5,-6.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6686 components: - type: Transform @@ -73083,14 +71610,14 @@ entities: pos: -14.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6724 components: - type: Transform pos: -12.5,-8.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6729 components: - type: Transform @@ -73098,7 +71625,7 @@ entities: pos: -15.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6812 components: - type: Transform @@ -73106,7 +71633,7 @@ entities: pos: -16.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6813 components: - type: Transform @@ -73114,7 +71641,7 @@ entities: pos: -17.5,-8.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6814 components: - type: Transform @@ -73122,7 +71649,7 @@ entities: pos: -17.5,-7.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6816 components: - type: Transform @@ -73130,7 +71657,7 @@ entities: pos: -30.5,-8.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6819 components: - type: Transform @@ -73138,7 +71665,7 @@ entities: pos: -14.5,-10.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6820 components: - type: Transform @@ -73146,7 +71673,7 @@ entities: pos: -15.5,-10.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6822 components: - type: Transform @@ -73154,7 +71681,7 @@ entities: pos: -16.5,-10.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6825 components: - type: Transform @@ -73162,7 +71689,7 @@ entities: pos: -17.5,-10.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6893 components: - type: Transform @@ -73170,7 +71697,7 @@ entities: pos: -17.5,-1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6896 components: - type: Transform @@ -73178,7 +71705,7 @@ entities: pos: -33.5,-1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6897 components: - type: Transform @@ -73186,7 +71713,7 @@ entities: pos: -18.5,0.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6898 components: - type: Transform @@ -73194,7 +71721,7 @@ entities: pos: -32.5,-1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6901 components: - type: Transform @@ -73202,7 +71729,7 @@ entities: pos: -29.5,-1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6902 components: - type: Transform @@ -73210,7 +71737,7 @@ entities: pos: -31.5,-1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6909 components: - type: Transform @@ -73218,14 +71745,14 @@ entities: pos: -30.5,-1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6910 components: - type: Transform pos: -28.5,-4.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6922 components: - type: Transform @@ -73233,7 +71760,7 @@ entities: pos: -31.5,-16.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6925 components: - type: Transform @@ -73241,7 +71768,7 @@ entities: pos: -32.5,-16.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6930 components: - type: Transform @@ -73249,42 +71776,42 @@ entities: pos: -32.5,-18.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6931 components: - type: Transform pos: -18.5,-8.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6932 components: - type: Transform pos: -18.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6937 components: - type: Transform pos: -18.5,-5.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6938 components: - type: Transform pos: -18.5,-6.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6957 components: - type: Transform pos: -18.5,-7.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 7004 components: - type: Transform @@ -73298,7 +71825,7 @@ entities: pos: -22.5,-10.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 7059 components: - type: Transform @@ -73306,7 +71833,7 @@ entities: pos: -28.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 7060 components: - type: Transform @@ -73314,7 +71841,7 @@ entities: pos: -26.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 7069 components: - type: Transform @@ -73322,7 +71849,7 @@ entities: pos: -25.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 7070 components: - type: Transform @@ -73330,7 +71857,7 @@ entities: pos: -27.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 7073 components: - type: Transform @@ -73338,7 +71865,7 @@ entities: pos: -24.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 7091 components: - type: Transform @@ -73346,25 +71873,15 @@ entities: pos: -12.5,-10.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7101 + color: '#FF0000FF' + - uid: 7095 components: - type: Transform - pos: -11.5,-54.5 + rot: -1.5707963267948966 rad + pos: -15.5,-41.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7103 - components: - - type: Transform - pos: -11.5,-56.5 - parent: 30 - - uid: 7105 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,-58.5 - parent: 30 + color: '#FF0000FF' - uid: 7117 components: - type: Transform @@ -73372,7 +71889,7 @@ entities: pos: -26.5,-22.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 7118 components: - type: Transform @@ -73380,7 +71897,7 @@ entities: pos: -27.5,-10.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 7150 components: - type: Transform @@ -73388,7 +71905,7 @@ entities: pos: -31.5,-12.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 7152 components: - type: Transform @@ -73396,7 +71913,7 @@ entities: pos: -30.5,-12.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 7153 components: - type: Transform @@ -73404,7 +71921,7 @@ entities: pos: -33.5,-6.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 7157 components: - type: Transform @@ -73412,21 +71929,21 @@ entities: pos: -27.5,-22.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 7203 components: - type: Transform pos: -34.5,-3.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 7205 components: - type: Transform pos: -34.5,-4.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 7212 components: - type: Transform @@ -73434,7 +71951,7 @@ entities: pos: -30.5,-18.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 7213 components: - type: Transform @@ -73442,38 +71959,21 @@ entities: pos: -29.5,-16.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 7216 components: - type: Transform pos: -11.5,-8.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7226 + color: '#FF0000FF' + - uid: 7223 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-48.5 + pos: -22.5,-43.5 parent: 30 - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 7227 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,-48.5 - parent: 30 - - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 7229 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,-49.5 - parent: 30 - - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 7257 components: - type: Transform @@ -73481,7 +71981,7 @@ entities: pos: -18.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 7303 components: - type: Transform @@ -73489,35 +71989,35 @@ entities: pos: -21.5,-10.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 7306 components: - type: Transform pos: -8.5,0.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 7307 components: - type: Transform pos: -8.5,-0.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 7308 components: - type: Transform pos: -8.5,-1.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 7309 components: - type: Transform pos: -8.5,-2.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 7312 components: - type: Transform @@ -73525,7 +72025,7 @@ entities: pos: -7.5,-3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 7313 components: - type: Transform @@ -73533,7 +72033,7 @@ entities: pos: -6.5,-3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 7314 components: - type: Transform @@ -73541,7 +72041,7 @@ entities: pos: -5.5,-3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 7315 components: - type: Transform @@ -73549,42 +72049,42 @@ entities: pos: -4.5,-3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 7316 components: - type: Transform pos: -3.5,-2.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 7317 components: - type: Transform pos: -3.5,-1.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 7318 components: - type: Transform pos: -3.5,-0.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 7319 components: - type: Transform pos: -1.5,-0.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 7320 components: - type: Transform pos: -1.5,-1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 7324 components: - type: Transform @@ -73592,7 +72092,7 @@ entities: pos: -3.5,-2.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 7325 components: - type: Transform @@ -73600,7 +72100,7 @@ entities: pos: -4.5,-2.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 7326 components: - type: Transform @@ -73608,7 +72108,7 @@ entities: pos: -5.5,-2.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 7327 components: - type: Transform @@ -73616,7 +72116,7 @@ entities: pos: -6.5,-2.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 7328 components: - type: Transform @@ -73624,7 +72124,7 @@ entities: pos: -7.5,-2.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 7329 components: - type: Transform @@ -73632,7 +72132,7 @@ entities: pos: -8.5,-2.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 7330 components: - type: Transform @@ -73640,28 +72140,28 @@ entities: pos: -9.5,-2.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 7331 components: - type: Transform pos: -10.5,-1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 7332 components: - type: Transform pos: -10.5,-0.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 7333 components: - type: Transform pos: -10.5,0.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 7334 components: - type: Transform @@ -73669,7 +72169,7 @@ entities: pos: -11.5,-2.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 7335 components: - type: Transform @@ -73677,7 +72177,7 @@ entities: pos: -9.5,-3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 7336 components: - type: Transform @@ -73685,70 +72185,70 @@ entities: pos: -10.5,-3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 7341 components: - type: Transform pos: -12.5,-3.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 7342 components: - type: Transform pos: -12.5,-4.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 7343 components: - type: Transform pos: -12.5,-5.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 7344 components: - type: Transform pos: -12.5,-6.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 7345 components: - type: Transform pos: -12.5,-7.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 7347 components: - type: Transform pos: -11.5,-4.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 7348 components: - type: Transform pos: -11.5,-6.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 7349 components: - type: Transform pos: -11.5,-5.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 7350 components: - type: Transform pos: -11.5,-7.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 7357 components: - type: Transform @@ -73756,7 +72256,7 @@ entities: pos: -10.5,-10.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 7358 components: - type: Transform @@ -73764,7 +72264,7 @@ entities: pos: -9.5,-10.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 7359 components: - type: Transform @@ -73772,7 +72272,7 @@ entities: pos: -8.5,-10.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 7361 components: - type: Transform @@ -73780,7 +72280,7 @@ entities: pos: -10.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 7362 components: - type: Transform @@ -73788,7 +72288,7 @@ entities: pos: -8.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 7363 components: - type: Transform @@ -73796,7 +72296,7 @@ entities: pos: -9.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 7375 components: - type: Transform @@ -73804,28 +72304,28 @@ entities: pos: -6.5,-10.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 7400 components: - type: Transform pos: -19.5,-3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 7401 components: - type: Transform pos: -19.5,-2.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 7405 components: - type: Transform pos: -17.5,-3.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 7406 components: - type: Transform @@ -73833,21 +72333,21 @@ entities: pos: -24.5,-10.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 7409 components: - type: Transform pos: -34.5,0.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 7410 components: - type: Transform pos: -34.5,-0.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 7480 components: - type: Transform @@ -73861,7 +72361,7 @@ entities: pos: -20.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 7495 components: - type: Transform @@ -73869,7 +72369,7 @@ entities: pos: -21.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 7505 components: - type: Transform @@ -73877,14 +72377,14 @@ entities: pos: -25.5,-10.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 7526 components: - type: Transform pos: -34.5,-2.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 7531 components: - type: Transform @@ -73892,7 +72392,7 @@ entities: pos: -16.5,-15.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 7551 components: - type: Transform @@ -73900,7 +72400,7 @@ entities: pos: -26.5,-10.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 7566 components: - type: Transform @@ -73908,7 +72408,7 @@ entities: pos: -19.5,-15.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 7568 components: - type: Transform @@ -73916,7 +72416,7 @@ entities: pos: -21.5,-15.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 7570 components: - type: Transform @@ -73924,7 +72424,7 @@ entities: pos: -20.5,-18.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 7573 components: - type: Transform @@ -73932,7 +72432,7 @@ entities: pos: -22.5,-12.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 7599 components: - type: Transform @@ -73940,7 +72440,7 @@ entities: pos: -22.5,-17.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 7604 components: - type: Transform @@ -73948,7 +72448,7 @@ entities: pos: -27.5,-16.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 7661 components: - type: Transform @@ -73956,7 +72456,7 @@ entities: pos: -19.5,-5.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 7662 components: - type: Transform @@ -73964,7 +72464,7 @@ entities: pos: -30.5,-18.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 7664 components: - type: Transform @@ -73972,7 +72472,7 @@ entities: pos: -30.5,-19.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 7665 components: - type: Transform @@ -73980,7 +72480,7 @@ entities: pos: -28.5,-22.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 7668 components: - type: Transform @@ -73988,31 +72488,7 @@ entities: pos: -30.5,-17.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7669 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-49.5 - parent: 30 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7670 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,-50.5 - parent: 30 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7671 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,-52.5 - parent: 30 - - type: AtmosPipeColor - color: '#FF1212FF' + color: '#0000FFFF' - uid: 7755 components: - type: Transform @@ -74020,7 +72496,7 @@ entities: pos: -29.5,-21.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 7756 components: - type: Transform @@ -74028,7 +72504,7 @@ entities: pos: -29.5,-19.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 7761 components: - type: Transform @@ -74036,7 +72512,7 @@ entities: pos: -26.5,-21.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 7763 components: - type: Transform @@ -74044,7 +72520,7 @@ entities: pos: -29.5,-20.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 7764 components: - type: Transform @@ -74052,7 +72528,7 @@ entities: pos: -28.5,-16.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 7816 components: - type: Transform @@ -74060,7 +72536,7 @@ entities: pos: -29.5,-21.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 7817 components: - type: Transform @@ -74068,7 +72544,7 @@ entities: pos: -26.5,-16.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 7818 components: - type: Transform @@ -74076,7 +72552,7 @@ entities: pos: -27.5,-21.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 7821 components: - type: Transform @@ -74084,7 +72560,7 @@ entities: pos: -32.5,-6.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 7832 components: - type: Transform @@ -74092,7 +72568,7 @@ entities: pos: -17.5,-4.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 7884 components: - type: Transform @@ -74100,15 +72576,7 @@ entities: pos: -31.5,-6.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7914 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,-51.5 - parent: 30 - - type: AtmosPipeColor - color: '#FF1212FF' + color: '#0000FFFF' - uid: 7925 components: - type: Transform @@ -74116,7 +72584,7 @@ entities: pos: -18.5,-20.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 7928 components: - type: Transform @@ -74124,7 +72592,7 @@ entities: pos: -19.5,-20.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 7929 components: - type: Transform @@ -74132,21 +72600,21 @@ entities: pos: -13.5,-11.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 7950 components: - type: Transform pos: -28.5,-11.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 7951 components: - type: Transform pos: -28.5,-8.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 7958 components: - type: Transform @@ -74154,7 +72622,7 @@ entities: pos: -22.5,-18.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 7999 components: - type: Transform @@ -74162,7 +72630,7 @@ entities: pos: -20.5,-16.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8029 components: - type: Transform @@ -74170,7 +72638,7 @@ entities: pos: -22.5,-10.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8030 components: - type: Transform @@ -74178,7 +72646,7 @@ entities: pos: -22.5,-13.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8031 components: - type: Transform @@ -74186,7 +72654,7 @@ entities: pos: -22.5,-11.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8032 components: - type: Transform @@ -74194,7 +72662,7 @@ entities: pos: -22.5,-14.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8037 components: - type: Transform @@ -74202,7 +72670,7 @@ entities: pos: -22.5,-19.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8041 components: - type: Transform @@ -74210,7 +72678,7 @@ entities: pos: -20.5,-15.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8042 components: - type: Transform @@ -74218,7 +72686,7 @@ entities: pos: -17.5,-15.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8049 components: - type: Transform @@ -74226,7 +72694,7 @@ entities: pos: -27.5,-5.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8050 components: - type: Transform @@ -74234,7 +72702,7 @@ entities: pos: -29.5,-13.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8057 components: - type: Transform @@ -74242,28 +72710,28 @@ entities: pos: -20.5,-12.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8060 components: - type: Transform pos: -28.5,-6.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8061 components: - type: Transform pos: -11.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8065 components: - type: Transform pos: -28.5,-7.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8066 components: - type: Transform @@ -74271,7 +72739,7 @@ entities: pos: -20.5,-21.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8067 components: - type: Transform @@ -74279,7 +72747,7 @@ entities: pos: -18.5,-15.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8068 components: - type: Transform @@ -74287,7 +72755,7 @@ entities: pos: -20.5,-19.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8072 components: - type: Transform @@ -74295,14 +72763,14 @@ entities: pos: -22.5,-17.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8077 components: - type: Transform pos: -28.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8088 components: - type: Transform @@ -74310,7 +72778,7 @@ entities: pos: -20.5,-14.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8091 components: - type: Transform @@ -74318,14 +72786,14 @@ entities: pos: -22.5,-20.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8094 components: - type: Transform pos: -13.5,-18.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8095 components: - type: Transform @@ -74333,7 +72801,7 @@ entities: pos: -15.5,-15.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8097 components: - type: Transform @@ -74341,14 +72809,14 @@ entities: pos: -24.5,-16.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8098 components: - type: Transform pos: -13.5,-19.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8099 components: - type: Transform @@ -74356,7 +72824,7 @@ entities: pos: -21.5,-22.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8105 components: - type: Transform @@ -74364,7 +72832,7 @@ entities: pos: -23.5,-17.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8106 components: - type: Transform @@ -74372,7 +72840,7 @@ entities: pos: -20.5,-15.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8141 components: - type: Transform @@ -74380,7 +72848,7 @@ entities: pos: -20.5,-11.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8142 components: - type: Transform @@ -74388,7 +72856,7 @@ entities: pos: -20.5,-13.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8213 components: - type: Transform @@ -74396,7 +72864,7 @@ entities: pos: -26.5,-5.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8214 components: - type: Transform @@ -74404,7 +72872,7 @@ entities: pos: -25.5,-5.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8217 components: - type: Transform @@ -74412,7 +72880,7 @@ entities: pos: -20.5,-5.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8218 components: - type: Transform @@ -74420,7 +72888,7 @@ entities: pos: -21.5,-5.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8221 components: - type: Transform @@ -74428,7 +72896,7 @@ entities: pos: -24.5,-4.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8222 components: - type: Transform @@ -74436,7 +72904,61 @@ entities: pos: -22.5,-4.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' + - uid: 8264 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,-41.5 + parent: 30 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8269 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-41.5 + parent: 30 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8359 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,-41.5 + parent: 30 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8361 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,-40.5 + parent: 30 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8384 + components: + - type: Transform + pos: -13.5,-43.5 + parent: 30 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8393 + components: + - type: Transform + pos: -13.5,-42.5 + parent: 30 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8422 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-40.5 + parent: 30 + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 8543 components: - type: Transform @@ -74450,7 +72972,7 @@ entities: pos: -33.5,3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8575 components: - type: Transform @@ -74800,7 +73322,7 @@ entities: pos: 9.5,-23.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8778 components: - type: Transform @@ -74808,7 +73330,7 @@ entities: pos: 11.5,-24.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8780 components: - type: Transform @@ -74816,7 +73338,7 @@ entities: pos: 12.5,-23.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8782 components: - type: Transform @@ -74824,7 +73346,7 @@ entities: pos: 14.5,-23.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8783 components: - type: Transform @@ -74832,7 +73354,7 @@ entities: pos: 15.5,-23.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8785 components: - type: Transform @@ -74840,7 +73362,7 @@ entities: pos: 16.5,-22.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8787 components: - type: Transform @@ -74848,7 +73370,7 @@ entities: pos: 17.5,-21.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8788 components: - type: Transform @@ -74856,7 +73378,7 @@ entities: pos: 18.5,-21.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8789 components: - type: Transform @@ -74864,46 +73386,7 @@ entities: pos: 19.5,-21.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8794 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-39.5 - parent: 30 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8795 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-53.5 - parent: 30 - - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 8798 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-53.5 - parent: 30 - - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 8799 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-49.5 - parent: 30 - - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 8807 - components: - - type: Transform - pos: -9.5,-54.5 - parent: 30 - - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8839 components: - type: Transform @@ -74911,7 +73394,7 @@ entities: pos: 14.5,-24.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8840 components: - type: Transform @@ -74919,7 +73402,7 @@ entities: pos: 13.5,-24.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8841 components: - type: Transform @@ -74927,7 +73410,7 @@ entities: pos: 13.5,-23.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8842 components: - type: Transform @@ -74935,7 +73418,7 @@ entities: pos: 15.5,-24.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8843 components: - type: Transform @@ -74943,7 +73426,7 @@ entities: pos: 12.5,-24.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8844 components: - type: Transform @@ -74951,7 +73434,7 @@ entities: pos: 10.5,-23.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8846 components: - type: Transform @@ -74959,7 +73442,7 @@ entities: pos: 9.5,-24.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8854 components: - type: Transform @@ -74967,7 +73450,7 @@ entities: pos: -1.5,-3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8855 components: - type: Transform @@ -74975,7 +73458,7 @@ entities: pos: -0.5,-3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8856 components: - type: Transform @@ -74983,7 +73466,7 @@ entities: pos: 0.5,-3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8857 components: - type: Transform @@ -74991,7 +73474,7 @@ entities: pos: 1.5,-3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8858 components: - type: Transform @@ -74999,7 +73482,7 @@ entities: pos: 2.5,-3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8859 components: - type: Transform @@ -75007,7 +73490,7 @@ entities: pos: 3.5,-2.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8860 components: - type: Transform @@ -75015,7 +73498,7 @@ entities: pos: 3.5,-1.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8861 components: - type: Transform @@ -75023,7 +73506,7 @@ entities: pos: 3.5,-0.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8862 components: - type: Transform @@ -75031,7 +73514,7 @@ entities: pos: 3.5,0.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8864 components: - type: Transform @@ -75039,7 +73522,7 @@ entities: pos: 4.5,-3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8865 components: - type: Transform @@ -75047,21 +73530,21 @@ entities: pos: 5.5,-3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8867 components: - type: Transform pos: 7.5,-4.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8873 components: - type: Transform pos: 7.5,-25.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8874 components: - type: Transform @@ -75069,14 +73552,14 @@ entities: pos: 8.5,-23.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8875 components: - type: Transform pos: 7.5,-22.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8878 components: - type: Transform @@ -75084,7 +73567,7 @@ entities: pos: 5.5,-20.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8879 components: - type: Transform @@ -75092,7 +73575,7 @@ entities: pos: 8.5,-18.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8880 components: - type: Transform @@ -75100,7 +73583,7 @@ entities: pos: 9.5,-18.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8881 components: - type: Transform @@ -75108,7 +73591,7 @@ entities: pos: 10.5,-18.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8882 components: - type: Transform @@ -75116,7 +73599,7 @@ entities: pos: 11.5,-17.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8883 components: - type: Transform @@ -75124,7 +73607,7 @@ entities: pos: 11.5,-16.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8885 components: - type: Transform @@ -75132,7 +73615,7 @@ entities: pos: 11.5,-14.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8886 components: - type: Transform @@ -75140,7 +73623,7 @@ entities: pos: 11.5,-13.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8887 components: - type: Transform @@ -75148,7 +73631,7 @@ entities: pos: 11.5,-12.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8888 components: - type: Transform @@ -75156,7 +73639,7 @@ entities: pos: 10.5,-11.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8889 components: - type: Transform @@ -75164,7 +73647,7 @@ entities: pos: 9.5,-11.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8890 components: - type: Transform @@ -75172,42 +73655,42 @@ entities: pos: 8.5,-11.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8891 components: - type: Transform pos: 7.5,-10.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8892 components: - type: Transform pos: 7.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8894 components: - type: Transform pos: 7.5,-7.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8895 components: - type: Transform pos: 7.5,-6.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8896 components: - type: Transform pos: 7.5,-5.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8897 components: - type: Transform @@ -75215,7 +73698,7 @@ entities: pos: 11.5,-10.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8898 components: - type: Transform @@ -75223,7 +73706,7 @@ entities: pos: 11.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8899 components: - type: Transform @@ -75231,7 +73714,7 @@ entities: pos: 11.5,-8.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8900 components: - type: Transform @@ -75239,7 +73722,7 @@ entities: pos: 11.5,-7.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8902 components: - type: Transform @@ -75247,7 +73730,7 @@ entities: pos: 11.5,-5.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8904 components: - type: Transform @@ -75255,7 +73738,7 @@ entities: pos: 11.5,-3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8905 components: - type: Transform @@ -75263,7 +73746,7 @@ entities: pos: 11.5,-2.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8906 components: - type: Transform @@ -75271,7 +73754,7 @@ entities: pos: 11.5,-1.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8907 components: - type: Transform @@ -75279,7 +73762,7 @@ entities: pos: 11.5,-0.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8908 components: - type: Transform @@ -75287,7 +73770,7 @@ entities: pos: 11.5,0.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8909 components: - type: Transform @@ -75295,7 +73778,7 @@ entities: pos: 11.5,1.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8910 components: - type: Transform @@ -75303,7 +73786,7 @@ entities: pos: 11.5,2.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8913 components: - type: Transform @@ -75311,7 +73794,7 @@ entities: pos: 10.5,3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8914 components: - type: Transform @@ -75319,7 +73802,7 @@ entities: pos: -0.5,-2.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8915 components: - type: Transform @@ -75327,7 +73810,7 @@ entities: pos: 0.5,-2.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8916 components: - type: Transform @@ -75335,7 +73818,7 @@ entities: pos: 1.5,-2.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8917 components: - type: Transform @@ -75343,7 +73826,7 @@ entities: pos: 2.5,-2.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8918 components: - type: Transform @@ -75351,7 +73834,7 @@ entities: pos: 3.5,-2.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8921 components: - type: Transform @@ -75359,7 +73842,7 @@ entities: pos: 6.5,-2.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8922 components: - type: Transform @@ -75367,7 +73850,7 @@ entities: pos: 7.5,-2.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8923 components: - type: Transform @@ -75375,7 +73858,7 @@ entities: pos: 8.5,-2.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8924 components: - type: Transform @@ -75383,7 +73866,7 @@ entities: pos: 5.5,-1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8925 components: - type: Transform @@ -75391,7 +73874,7 @@ entities: pos: 5.5,-0.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8926 components: - type: Transform @@ -75399,7 +73882,7 @@ entities: pos: 5.5,0.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8927 components: - type: Transform @@ -75407,7 +73890,7 @@ entities: pos: 8.5,-24.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8928 components: - type: Transform @@ -75415,7 +73898,7 @@ entities: pos: 5.5,-27.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8929 components: - type: Transform @@ -75423,14 +73906,14 @@ entities: pos: 4.5,-27.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8930 components: - type: Transform pos: 7.5,-26.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8931 components: - type: Transform @@ -75438,7 +73921,7 @@ entities: pos: 3.5,-27.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8932 components: - type: Transform @@ -75446,7 +73929,7 @@ entities: pos: 5.5,-22.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8933 components: - type: Transform @@ -75464,7 +73947,7 @@ entities: pos: 7.5,-23.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8935 components: - type: Transform @@ -75472,7 +73955,7 @@ entities: pos: 6.5,-18.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8937 components: - type: Transform @@ -75480,7 +73963,7 @@ entities: pos: 6.5,-20.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8938 components: - type: Transform @@ -75488,7 +73971,7 @@ entities: pos: 8.5,-20.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8941 components: - type: Transform @@ -75496,7 +73979,7 @@ entities: pos: 10.5,-20.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8942 components: - type: Transform @@ -75504,7 +73987,7 @@ entities: pos: 11.5,-20.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8943 components: - type: Transform @@ -75512,7 +73995,7 @@ entities: pos: 12.5,-20.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8945 components: - type: Transform @@ -75520,7 +74003,7 @@ entities: pos: 13.5,-19.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8946 components: - type: Transform @@ -75528,7 +74011,7 @@ entities: pos: 13.5,-18.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8948 components: - type: Transform @@ -75536,7 +74019,7 @@ entities: pos: 13.5,-16.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8949 components: - type: Transform @@ -75544,7 +74027,7 @@ entities: pos: 13.5,-15.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8950 components: - type: Transform @@ -75552,7 +74035,7 @@ entities: pos: 13.5,-14.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8951 components: - type: Transform @@ -75560,7 +74043,7 @@ entities: pos: 13.5,-13.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8952 components: - type: Transform @@ -75568,7 +74051,7 @@ entities: pos: 13.5,-12.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8953 components: - type: Transform @@ -75576,7 +74059,7 @@ entities: pos: 13.5,-11.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8954 components: - type: Transform @@ -75584,7 +74067,7 @@ entities: pos: 13.5,-10.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8956 components: - type: Transform @@ -75592,7 +74075,7 @@ entities: pos: 13.5,-8.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8958 components: - type: Transform @@ -75600,7 +74083,7 @@ entities: pos: 13.5,-6.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8959 components: - type: Transform @@ -75608,7 +74091,7 @@ entities: pos: 13.5,-5.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8961 components: - type: Transform @@ -75616,7 +74099,7 @@ entities: pos: 13.5,-2.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8962 components: - type: Transform @@ -75624,7 +74107,7 @@ entities: pos: 13.5,-3.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8963 components: - type: Transform @@ -75632,7 +74115,7 @@ entities: pos: 13.5,-1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8964 components: - type: Transform @@ -75640,7 +74123,7 @@ entities: pos: 13.5,-0.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8965 components: - type: Transform @@ -75648,7 +74131,7 @@ entities: pos: 13.5,0.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8967 components: - type: Transform @@ -75656,7 +74139,7 @@ entities: pos: 11.5,1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8969 components: - type: Transform @@ -75664,7 +74147,7 @@ entities: pos: 12.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8970 components: - type: Transform @@ -75672,7 +74155,7 @@ entities: pos: 11.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8971 components: - type: Transform @@ -75680,7 +74163,7 @@ entities: pos: 10.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8972 components: - type: Transform @@ -75688,7 +74171,7 @@ entities: pos: 9.5,-8.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8973 components: - type: Transform @@ -75696,7 +74179,7 @@ entities: pos: 9.5,-7.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8974 components: - type: Transform @@ -75704,7 +74187,7 @@ entities: pos: 9.5,-6.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8975 components: - type: Transform @@ -75712,7 +74195,7 @@ entities: pos: 9.5,-5.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8976 components: - type: Transform @@ -75720,7 +74203,7 @@ entities: pos: 9.5,-4.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8977 components: - type: Transform @@ -75728,7 +74211,7 @@ entities: pos: 9.5,-3.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 9015 components: - type: Transform @@ -75778,7 +74261,7 @@ entities: pos: -22.5,-22.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 9036 components: - type: Transform @@ -75786,7 +74269,7 @@ entities: pos: -29.5,-14.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 9039 components: - type: Transform @@ -75794,21 +74277,21 @@ entities: pos: -29.5,-15.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 9050 components: - type: Transform pos: -13.5,-16.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 9052 components: - type: Transform pos: -13.5,-17.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 9053 components: - type: Transform @@ -75816,23 +74299,7 @@ entities: pos: -14.5,-15.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 9062 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,-49.5 - parent: 30 - - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 9065 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,-53.5 - parent: 30 - - type: AtmosPipeColor - color: '#FF1212FF' + color: '#0000FFFF' - uid: 9075 components: - type: Transform @@ -75840,13 +74307,71 @@ entities: parent: 30 - type: AtmosPipeColor color: '#EB9834FF' + - uid: 9174 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-48.5 + parent: 30 + - type: AtmosPipeColor + color: '#EB9834FF' + - uid: 9182 + components: + - type: Transform + pos: 1.5,-54.5 + parent: 30 + - uid: 9213 + components: + - type: Transform + pos: -3.5,-54.5 + parent: 30 + - uid: 9216 + components: + - type: Transform + pos: -4.5,-54.5 + parent: 30 + - uid: 9217 + components: + - type: Transform + pos: 2.5,-54.5 + parent: 30 + - uid: 9218 + components: + - type: Transform + pos: 3.5,-54.5 + parent: 30 - uid: 9261 components: - type: Transform pos: 7.5,-21.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' + - uid: 9293 + components: + - type: Transform + pos: -2.5,-54.5 + parent: 30 + - uid: 9294 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-49.5 + parent: 30 + - uid: 9295 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-50.5 + parent: 30 + - uid: 9320 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-48.5 + parent: 30 + - type: AtmosPipeColor + color: '#EB9834FF' - uid: 9341 components: - type: Transform @@ -75854,31 +74379,175 @@ entities: pos: -49.5,-8.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 9623 + color: '#0000FFFF' + - uid: 9416 + components: + - type: Transform + pos: -24.5,-44.5 + parent: 30 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9417 + components: + - type: Transform + pos: -24.5,-45.5 + parent: 30 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9424 + components: + - type: Transform + pos: -18.5,-49.5 + parent: 30 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9425 + components: + - type: Transform + pos: -18.5,-45.5 + parent: 30 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9426 + components: + - type: Transform + pos: -18.5,-46.5 + parent: 30 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9431 + components: + - type: Transform + pos: -12.5,-42.5 + parent: 30 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9432 + components: + - type: Transform + pos: -24.5,-46.5 + parent: 30 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9433 + components: + - type: Transform + pos: -22.5,-42.5 + parent: 30 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9435 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-45.5 + parent: 30 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9445 components: - type: Transform rot: -1.5707963267948966 rad - pos: -0.5,-39.5 + pos: -14.5,-30.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 9659 + color: '#FF0000FF' + - uid: 9447 + components: + - type: Transform + pos: -13.5,-36.5 + parent: 30 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9449 + components: + - type: Transform + pos: -13.5,-37.5 + parent: 30 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9450 + components: + - type: Transform + pos: -13.5,-38.5 + parent: 30 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9564 + components: + - type: Transform + pos: -22.5,-44.5 + parent: 30 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9565 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,-41.5 + parent: 30 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9566 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-41.5 + parent: 30 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9589 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-38.5 + parent: 30 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9590 components: - type: Transform rot: 1.5707963267948966 rad - pos: -4.5,-52.5 + pos: -7.5,-39.5 parent: 30 - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 9660 + color: '#0000FFFF' + - uid: 9608 components: - type: Transform rot: 1.5707963267948966 rad - pos: -3.5,-52.5 + pos: -8.5,-39.5 parent: 30 - type: AtmosPipeColor - color: '#03FCD3FF' + color: '#0000FFFF' + - uid: 9638 + components: + - type: Transform + pos: 2.5,-37.5 + parent: 30 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9639 + components: + - type: Transform + pos: 2.5,-38.5 + parent: 30 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9640 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-39.5 + parent: 30 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9651 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-51.5 + parent: 30 - uid: 9670 components: - type: Transform @@ -75886,7 +74555,15 @@ entities: pos: -29.5,-16.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' + - uid: 9683 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-47.5 + parent: 30 + - type: AtmosPipeColor + color: '#EB9834FF' - uid: 9685 components: - type: Transform @@ -75894,7 +74571,7 @@ entities: pos: -23.5,-16.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 9687 components: - type: Transform @@ -75902,7 +74579,7 @@ entities: pos: -24.5,-17.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 9688 components: - type: Transform @@ -75910,15 +74587,15 @@ entities: pos: -24.5,-21.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 9702 + color: '#0000FFFF' + - uid: 9701 components: - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-51.5 + rot: 1.5707963267948966 rad + pos: 7.5,-42.5 parent: 30 - type: AtmosPipeColor - color: '#03FCD3FF' + color: '#EB9834FF' - uid: 9729 components: - type: Transform @@ -75926,7 +74603,7 @@ entities: pos: 3.5,-18.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 9730 components: - type: Transform @@ -75934,7 +74611,7 @@ entities: pos: 2.5,-18.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 9731 components: - type: Transform @@ -75942,7 +74619,7 @@ entities: pos: 1.5,-18.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 9732 components: - type: Transform @@ -75950,7 +74627,7 @@ entities: pos: 0.5,-18.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 9733 components: - type: Transform @@ -75958,7 +74635,7 @@ entities: pos: -0.5,-18.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 9734 components: - type: Transform @@ -75966,7 +74643,7 @@ entities: pos: -1.5,-18.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 9735 components: - type: Transform @@ -75974,70 +74651,70 @@ entities: pos: -2.5,-18.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 9736 components: - type: Transform pos: -3.5,-19.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 9737 components: - type: Transform pos: -3.5,-20.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 9738 components: - type: Transform pos: -3.5,-21.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 9739 components: - type: Transform pos: -3.5,-22.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 9740 components: - type: Transform pos: -3.5,-23.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 9741 components: - type: Transform pos: -3.5,-24.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 9742 components: - type: Transform pos: -3.5,-25.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 9743 components: - type: Transform pos: -3.5,-26.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 9745 components: - type: Transform pos: -3.5,-28.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 9747 components: - type: Transform @@ -76045,7 +74722,7 @@ entities: pos: -2.5,-30.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 9748 components: - type: Transform @@ -76053,7 +74730,7 @@ entities: pos: -1.5,-30.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 9749 components: - type: Transform @@ -76061,7 +74738,7 @@ entities: pos: -0.5,-30.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 9755 components: - type: Transform @@ -76069,7 +74746,7 @@ entities: pos: -1.5,-25.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 9756 components: - type: Transform @@ -76077,7 +74754,7 @@ entities: pos: -1.5,-24.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 9757 components: - type: Transform @@ -76085,7 +74762,7 @@ entities: pos: -1.5,-23.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 9758 components: - type: Transform @@ -76093,7 +74770,7 @@ entities: pos: -1.5,-22.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 9759 components: - type: Transform @@ -76101,7 +74778,7 @@ entities: pos: -1.5,-21.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 9760 components: - type: Transform @@ -76109,7 +74786,7 @@ entities: pos: -0.5,-20.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 9761 components: - type: Transform @@ -76117,7 +74794,7 @@ entities: pos: 0.5,-20.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 9762 components: - type: Transform @@ -76125,7 +74802,7 @@ entities: pos: 1.5,-20.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 9764 components: - type: Transform @@ -76133,7 +74810,7 @@ entities: pos: 3.5,-20.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 9765 components: - type: Transform @@ -76141,7 +74818,7 @@ entities: pos: 4.5,-20.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 9766 components: - type: Transform @@ -76149,7 +74826,7 @@ entities: pos: -0.5,-27.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 9767 components: - type: Transform @@ -76157,7 +74834,7 @@ entities: pos: 0.5,-27.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 9768 components: - type: Transform @@ -76165,139 +74842,138 @@ entities: pos: 1.5,-27.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 9771 components: - type: Transform pos: 2.5,-28.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 9772 components: - type: Transform pos: 2.5,-29.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 9773 components: - type: Transform pos: 2.5,-30.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 9775 components: - type: Transform pos: 2.5,-31.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 9776 components: - type: Transform pos: 0.5,-31.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 9777 components: - type: Transform pos: 0.5,-32.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 9778 components: - type: Transform pos: 0.5,-33.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 9780 components: - type: Transform pos: 0.5,-35.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 9781 components: - type: Transform pos: 0.5,-36.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 9782 - components: - - type: Transform - pos: 0.5,-37.5 - parent: 30 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 9783 - components: - - type: Transform - pos: 0.5,-38.5 - parent: 30 - - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 9784 components: - type: Transform pos: 2.5,-33.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 9785 components: - type: Transform pos: 2.5,-34.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 9786 components: - type: Transform pos: 2.5,-35.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 9787 components: - type: Transform pos: 2.5,-36.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 9788 components: - type: Transform - pos: 2.5,-37.5 + rot: 3.141592653589793 rad + pos: 8.5,-44.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 9789 + color: '#EB9834FF' + - uid: 9794 components: - type: Transform - pos: 2.5,-38.5 + rot: 3.141592653589793 rad + pos: 2.5,-40.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 9790 + color: '#0000FFFF' + - uid: 9795 components: - type: Transform - pos: 2.5,-39.5 + rot: 3.141592653589793 rad + pos: 2.5,-41.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 9806 components: - type: Transform rot: 3.141592653589793 rad - pos: -2.5,-57.5 + pos: 2.5,-42.5 parent: 30 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9807 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-38.5 + parent: 30 + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 9810 components: - type: Transform @@ -76305,14 +74981,14 @@ entities: pos: -54.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 9834 components: - type: Transform pos: -34.5,-5.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 9853 components: - type: Transform @@ -76320,7 +74996,7 @@ entities: pos: -23.5,-21.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 9860 components: - type: Transform @@ -76328,7 +75004,7 @@ entities: pos: -23.5,-22.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 9861 components: - type: Transform @@ -76336,15 +75012,7 @@ entities: pos: -24.5,-22.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 9863 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,-53.5 - parent: 30 - - type: AtmosPipeColor - color: '#03FCD3FF' + color: '#FF0000FF' - uid: 9865 components: - type: Transform @@ -76352,215 +75020,129 @@ entities: pos: -18.5,-5.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 9868 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-53.5 - parent: 30 - - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 9871 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-49.5 - parent: 30 - - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 9872 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-49.5 - parent: 30 - - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 9873 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-49.5 - parent: 30 - - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 9874 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-49.5 - parent: 30 - - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 9875 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,-52.5 - parent: 30 - - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 9877 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,-50.5 - parent: 30 - - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 9878 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,-54.5 - parent: 30 - - type: AtmosPipeColor - color: '#EB9834FF' - - uid: 9879 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-54.5 - parent: 30 - - type: AtmosPipeColor - color: '#EB9834FF' - - uid: 9880 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-54.5 - parent: 30 - - type: AtmosPipeColor - color: '#EB9834FF' - - uid: 9881 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-54.5 - parent: 30 - - type: AtmosPipeColor - color: '#EB9834FF' - - uid: 9882 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-54.5 - parent: 30 - - type: AtmosPipeColor - color: '#EB9834FF' - - uid: 9884 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-53.5 - parent: 30 - - type: AtmosPipeColor - color: '#EB9834FF' - - uid: 9885 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-52.5 - parent: 30 - - type: AtmosPipeColor - color: '#EB9834FF' + color: '#0000FFFF' - uid: 9886 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-51.5 + pos: -22.5,-46.5 parent: 30 - type: AtmosPipeColor - color: '#EB9834FF' + color: '#FF0000FF' - uid: 9887 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-50.5 + rot: -1.5707963267948966 rad + pos: -0.5,-39.5 parent: 30 - type: AtmosPipeColor - color: '#EB9834FF' - - uid: 9888 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-49.5 - parent: 30 - - type: AtmosPipeColor - color: '#EB9834FF' - - uid: 9889 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-48.5 - parent: 30 - - type: AtmosPipeColor - color: '#EB9834FF' - - uid: 9890 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-47.5 - parent: 30 - - type: AtmosPipeColor - color: '#EB9834FF' - - uid: 9891 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-45.5 - parent: 30 - - type: AtmosPipeColor - color: '#EB9834FF' - - uid: 9892 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-44.5 - parent: 30 - - type: AtmosPipeColor - color: '#EB9834FF' + color: '#0000FFFF' - uid: 9893 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-43.5 + rot: 1.5707963267948966 rad + pos: -15.5,-29.5 parent: 30 - type: AtmosPipeColor - color: '#EB9834FF' - - uid: 9894 + color: '#0000FFFF' + - uid: 9900 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-42.5 + rot: 1.5707963267948966 rad + pos: -10.5,-39.5 parent: 30 - type: AtmosPipeColor - color: '#EB9834FF' - - uid: 9895 + color: '#0000FFFF' + - uid: 9901 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-41.5 + rot: 1.5707963267948966 rad + pos: -9.5,-39.5 parent: 30 - type: AtmosPipeColor - color: '#EB9834FF' - - uid: 9896 + color: '#0000FFFF' + - uid: 9904 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-40.5 + rot: -1.5707963267948966 rad + pos: -4.5,-39.5 parent: 30 - type: AtmosPipeColor - color: '#EB9834FF' - - uid: 9897 + color: '#0000FFFF' + - uid: 9906 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-39.5 + rot: -1.5707963267948966 rad + pos: -3.5,-39.5 parent: 30 - type: AtmosPipeColor - color: '#EB9834FF' + color: '#0000FFFF' + - uid: 9907 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-39.5 + parent: 30 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9920 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,-29.5 + parent: 30 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9921 + components: + - type: Transform + pos: -11.5,-30.5 + parent: 30 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9922 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,-29.5 + parent: 30 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9923 + components: + - type: Transform + pos: -11.5,-32.5 + parent: 30 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9924 + components: + - type: Transform + pos: -11.5,-33.5 + parent: 30 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9925 + components: + - type: Transform + pos: -11.5,-36.5 + parent: 30 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9936 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-39.5 + parent: 30 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9979 + components: + - type: Transform + pos: -22.5,-45.5 + parent: 30 + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 9980 components: - type: Transform @@ -76578,508 +75160,520 @@ entities: pos: 5.5,-21.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 9984 components: - type: Transform pos: 5.5,-19.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' + - uid: 9988 + components: + - type: Transform + pos: -16.5,-43.5 + parent: 30 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10019 + components: + - type: Transform + pos: -11.5,-34.5 + parent: 30 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 10020 + components: + - type: Transform + pos: -11.5,-37.5 + parent: 30 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 10021 + components: + - type: Transform + pos: -11.5,-38.5 + parent: 30 + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 10091 components: - type: Transform pos: 5.5,-20.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11072 + color: '#FF0000FF' + - uid: 10120 + components: + - type: Transform + pos: -18.5,-44.5 + parent: 30 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 10128 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-45.5 + parent: 30 + - type: AtmosPipeColor + color: '#EB9834FF' + - uid: 10129 + components: + - type: Transform + pos: 6.5,-38.5 + parent: 30 + - type: AtmosPipeColor + color: '#EB9834FF' + - uid: 10130 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-39.5 + parent: 30 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 10131 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-39.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11074 + color: '#0000FFFF' + - uid: 10132 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-39.5 + rot: 1.5707963267948966 rad + pos: -22.5,-43.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11075 + color: '#0000FFFF' + - uid: 10133 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-39.5 + rot: 1.5707963267948966 rad + pos: -14.5,-29.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11076 + color: '#0000FFFF' + - uid: 10167 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,-39.5 + rot: 3.141592653589793 rad + pos: 0.5,-37.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11077 + color: '#FF0000FF' + - uid: 10171 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,-39.5 + pos: -16.5,-48.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11079 + color: '#FF0000FF' + - uid: 10172 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-39.5 + pos: -16.5,-47.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11081 + color: '#FF0000FF' + - uid: 10173 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,-39.5 + pos: -16.5,-45.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11082 + color: '#FF0000FF' + - uid: 10174 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,-39.5 + pos: -16.5,-44.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11083 + color: '#FF0000FF' + - uid: 10175 + components: + - type: Transform + pos: -18.5,-50.5 + parent: 30 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 10212 + components: + - type: Transform + pos: 6.5,-40.5 + parent: 30 + - type: AtmosPipeColor + color: '#EB9834FF' + - uid: 10213 + components: + - type: Transform + pos: 6.5,-41.5 + parent: 30 + - type: AtmosPipeColor + color: '#EB9834FF' + - uid: 10215 components: - type: Transform rot: -1.5707963267948966 rad + pos: -2.5,-40.5 + parent: 30 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10216 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-43.5 + parent: 30 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 10217 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,-43.5 + parent: 30 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 10218 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,-43.5 + parent: 30 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 10219 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,-43.5 + parent: 30 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 10220 + components: + - type: Transform + pos: -12.5,-41.5 + parent: 30 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 10262 + components: + - type: Transform + pos: -13.5,-32.5 + parent: 30 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10263 + components: + - type: Transform + pos: -12.5,-44.5 + parent: 30 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 10264 + components: + - type: Transform + pos: -12.5,-45.5 + parent: 30 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 10267 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,-44.5 + parent: 30 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10272 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-43.5 + parent: 30 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 10273 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-43.5 + parent: 30 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 10275 + components: + - type: Transform + pos: -18.5,-51.5 + parent: 30 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 10276 + components: + - type: Transform + pos: -16.5,-51.5 + parent: 30 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10277 + components: + - type: Transform + pos: -16.5,-50.5 + parent: 30 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10278 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-40.5 + parent: 30 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10280 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-38.5 + parent: 30 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10281 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-40.5 + parent: 30 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10282 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,-43.5 + parent: 30 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 10290 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,-43.5 + parent: 30 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 10397 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,-43.5 + parent: 30 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 10435 + components: + - type: Transform + pos: -12.5,-40.5 + parent: 30 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 10436 + components: + - type: Transform pos: -13.5,-39.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11084 + color: '#FF0000FF' + - uid: 10437 + components: + - type: Transform + pos: -12.5,-46.5 + parent: 30 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 10438 + components: + - type: Transform + pos: -11.5,-46.5 + parent: 30 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10535 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,-43.5 + parent: 30 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 10536 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,-43.5 + parent: 30 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 10557 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-43.5 + parent: 30 + - type: AtmosPipeColor + color: '#EB9834FF' + - uid: 10603 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-29.5 + parent: 30 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10607 components: - type: Transform rot: -1.5707963267948966 rad - pos: -14.5,-39.5 + pos: -3.5,-40.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11085 + color: '#FF0000FF' + - uid: 10608 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-45.5 + parent: 30 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10609 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-39.5 + parent: 30 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10610 + components: + - type: Transform + pos: -13.5,-31.5 + parent: 30 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10635 components: - type: Transform rot: -1.5707963267948966 rad - pos: -15.5,-39.5 + pos: -7.5,-40.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11086 + color: '#FF0000FF' + - uid: 10642 components: - type: Transform rot: -1.5707963267948966 rad - pos: -16.5,-39.5 + pos: -6.5,-40.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11089 + color: '#FF0000FF' + - uid: 10643 components: - type: Transform - pos: -18.5,-40.5 + rot: 3.141592653589793 rad + pos: -8.5,-39.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11091 + color: '#FF0000FF' + - uid: 10793 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,-41.5 + pos: 6.5,-39.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11092 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,-41.5 - parent: 30 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11093 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,-41.5 - parent: 30 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11095 - components: - - type: Transform - pos: -17.5,-38.5 - parent: 30 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11096 - components: - - type: Transform - pos: -17.5,-37.5 - parent: 30 - - type: AtmosPipeColor - color: '#FF1212FF' + color: '#EB9834FF' - uid: 11100 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-29.5 + rot: 3.141592653589793 rad + pos: 2.5,-43.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11103 + color: '#0000FFFF' + - uid: 11102 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,-30.5 + pos: -16.5,-49.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11104 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,-30.5 - parent: 30 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11105 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,-30.5 - parent: 30 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11106 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-30.5 - parent: 30 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11108 - components: - - type: Transform - pos: -8.5,-38.5 - parent: 30 - - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11109 components: - type: Transform pos: -8.5,-37.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11110 - components: - - type: Transform - pos: -8.5,-36.5 - parent: 30 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11111 - components: - - type: Transform - pos: -8.5,-40.5 - parent: 30 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11112 - components: - - type: Transform - pos: -8.5,-41.5 - parent: 30 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11113 - components: - - type: Transform - pos: -8.5,-42.5 - parent: 30 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11116 - components: - - type: Transform - pos: 2.5,-40.5 - parent: 30 - - type: AtmosPipeColor - color: '#0335FCFF' + color: '#FF0000FF' - uid: 11118 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-41.5 + rot: 1.5707963267948966 rad + pos: -10.5,-40.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#FF0000FF' - uid: 11119 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-41.5 - parent: 30 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11120 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-41.5 - parent: 30 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11121 components: - type: Transform rot: 1.5707963267948966 rad - pos: -1.5,-41.5 + pos: -9.5,-40.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11123 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-41.5 - parent: 30 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11124 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-41.5 - parent: 30 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11125 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-41.5 - parent: 30 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11127 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,-41.5 - parent: 30 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11128 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,-41.5 - parent: 30 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11129 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-41.5 - parent: 30 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11130 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,-41.5 - parent: 30 - - type: AtmosPipeColor - color: '#0335FCFF' + color: '#FF0000FF' - uid: 11131 components: - type: Transform rot: -1.5707963267948966 rad - pos: -11.5,-41.5 + pos: 7.5,-46.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#EB9834FF' + - uid: 11132 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-43.5 + parent: 30 + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 11133 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,-41.5 + rot: 3.141592653589793 rad + pos: 2.5,-44.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11134 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,-41.5 - parent: 30 - - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11135 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,-41.5 + rot: 3.141592653589793 rad + pos: -1.5,-41.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11136 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,-41.5 - parent: 30 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11139 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,-42.5 - parent: 30 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11141 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,-42.5 - parent: 30 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11142 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,-42.5 - parent: 30 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11143 - components: - - type: Transform - pos: -17.5,-43.5 - parent: 30 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11144 - components: - - type: Transform - pos: -17.5,-44.5 - parent: 30 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11145 - components: - - type: Transform - pos: -17.5,-45.5 - parent: 30 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11146 - components: - - type: Transform - pos: -17.5,-46.5 - parent: 30 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11147 - components: - - type: Transform - pos: -19.5,-41.5 - parent: 30 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11148 - components: - - type: Transform - pos: -19.5,-40.5 - parent: 30 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11149 - components: - - type: Transform - pos: -19.5,-39.5 - parent: 30 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11150 - components: - - type: Transform - pos: -19.5,-38.5 - parent: 30 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11151 - components: - - type: Transform - pos: -19.5,-37.5 - parent: 30 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11156 - components: - - type: Transform - pos: -6.5,-42.5 - parent: 30 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11157 - components: - - type: Transform - pos: -6.5,-40.5 - parent: 30 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11158 - components: - - type: Transform - pos: -6.5,-39.5 - parent: 30 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11159 - components: - - type: Transform - pos: -6.5,-38.5 - parent: 30 - - type: AtmosPipeColor - color: '#0335FCFF' + color: '#FF0000FF' - uid: 11160 components: - type: Transform pos: -6.5,-37.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11161 - components: - - type: Transform - pos: -6.5,-36.5 - parent: 30 - - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11168 components: - type: Transform @@ -77096,54 +75690,6 @@ entities: parent: 30 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 11170 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-28.5 - parent: 30 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11171 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-28.5 - parent: 30 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11172 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,-28.5 - parent: 30 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11173 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,-28.5 - parent: 30 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11174 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,-28.5 - parent: 30 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11175 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-28.5 - parent: 30 - - type: AtmosPipeColor - color: '#0335FCFF' - uid: 11181 components: - type: Transform @@ -77151,7 +75697,7 @@ entities: pos: 10.5,-25.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11182 components: - type: Transform @@ -77159,7 +75705,7 @@ entities: pos: 10.5,-26.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11183 components: - type: Transform @@ -77167,7 +75713,7 @@ entities: pos: 10.5,-27.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11184 components: - type: Transform @@ -77175,7 +75721,7 @@ entities: pos: 11.5,-24.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11185 components: - type: Transform @@ -77183,7 +75729,7 @@ entities: pos: 11.5,-25.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11186 components: - type: Transform @@ -77191,7 +75737,7 @@ entities: pos: 11.5,-26.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11187 components: - type: Transform @@ -77199,7 +75745,7 @@ entities: pos: 11.5,-27.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11202 components: - type: Transform @@ -77207,7 +75753,7 @@ entities: pos: 9.5,-19.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11203 components: - type: Transform @@ -77215,7 +75761,7 @@ entities: pos: 9.5,-18.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11204 components: - type: Transform @@ -77223,7 +75769,7 @@ entities: pos: 9.5,-17.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11205 components: - type: Transform @@ -77231,7 +75777,7 @@ entities: pos: 9.5,-16.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11206 components: - type: Transform @@ -77239,7 +75785,7 @@ entities: pos: 7.5,-17.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11207 components: - type: Transform @@ -77247,7 +75793,7 @@ entities: pos: 7.5,-16.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11212 components: - type: Transform @@ -77255,7 +75801,7 @@ entities: pos: 20.5,-20.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11338 components: - type: Transform @@ -77263,7 +75809,7 @@ entities: pos: 29.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11640 components: - type: Transform @@ -77271,7 +75817,7 @@ entities: pos: 28.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11641 components: - type: Transform @@ -77279,7 +75825,7 @@ entities: pos: 34.5,-11.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11665 components: - type: Transform @@ -77287,7 +75833,7 @@ entities: pos: 26.5,-11.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11672 components: - type: Transform @@ -77295,7 +75841,7 @@ entities: pos: 30.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11686 components: - type: Transform @@ -77303,7 +75849,7 @@ entities: pos: 27.5,-11.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11696 components: - type: Transform @@ -77311,21 +75857,28 @@ entities: pos: 25.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' + - uid: 11701 + components: + - type: Transform + pos: -16.5,-42.5 + parent: 30 + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 11711 components: - type: Transform pos: 33.5,-4.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11713 components: - type: Transform pos: 29.5,-5.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11745 components: - type: Transform @@ -77333,7 +75886,7 @@ entities: pos: 27.5,-6.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11781 components: - type: Transform @@ -77341,7 +75894,7 @@ entities: pos: 28.5,-11.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11802 components: - type: Transform @@ -77349,7 +75902,7 @@ entities: pos: 29.5,-11.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11858 components: - type: Transform @@ -77357,7 +75910,7 @@ entities: pos: 30.5,-11.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11862 components: - type: Transform @@ -77365,7 +75918,7 @@ entities: pos: 35.5,-3.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11870 components: - type: Transform @@ -77373,7 +75926,7 @@ entities: pos: 28.5,-6.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11875 components: - type: Transform @@ -77381,14 +75934,14 @@ entities: pos: 34.5,-10.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11878 components: - type: Transform pos: 21.5,-4.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11880 components: - type: Transform @@ -77396,14 +75949,14 @@ entities: pos: 22.5,-2.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11881 components: - type: Transform pos: 29.5,-4.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11897 components: - type: Transform @@ -77411,7 +75964,7 @@ entities: pos: 12.5,-11.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11898 components: - type: Transform @@ -77419,7 +75972,7 @@ entities: pos: 13.5,-11.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11899 components: - type: Transform @@ -77427,7 +75980,7 @@ entities: pos: 14.5,-11.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11900 components: - type: Transform @@ -77435,7 +75988,7 @@ entities: pos: 26.5,-5.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11901 components: - type: Transform @@ -77443,7 +75996,7 @@ entities: pos: 15.5,-11.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11902 components: - type: Transform @@ -77451,7 +76004,7 @@ entities: pos: 17.5,-11.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11903 components: - type: Transform @@ -77459,7 +76012,7 @@ entities: pos: 18.5,-11.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11905 components: - type: Transform @@ -77467,7 +76020,7 @@ entities: pos: 20.5,-11.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11906 components: - type: Transform @@ -77475,7 +76028,7 @@ entities: pos: 14.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11907 components: - type: Transform @@ -77483,7 +76036,7 @@ entities: pos: 15.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11908 components: - type: Transform @@ -77491,7 +76044,7 @@ entities: pos: 16.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11909 components: - type: Transform @@ -77499,7 +76052,7 @@ entities: pos: 29.5,-2.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11910 components: - type: Transform @@ -77507,7 +76060,7 @@ entities: pos: 18.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11911 components: - type: Transform @@ -77515,7 +76068,7 @@ entities: pos: 19.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11912 components: - type: Transform @@ -77523,7 +76076,7 @@ entities: pos: 22.5,-6.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11913 components: - type: Transform @@ -77531,7 +76084,7 @@ entities: pos: 21.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11914 components: - type: Transform @@ -77539,7 +76092,7 @@ entities: pos: 22.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11915 components: - type: Transform @@ -77547,7 +76100,7 @@ entities: pos: 23.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11916 components: - type: Transform @@ -77555,14 +76108,14 @@ entities: pos: 23.5,-6.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11917 components: - type: Transform pos: 29.5,-3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11918 components: - type: Transform @@ -77570,7 +76123,7 @@ entities: pos: 26.5,-4.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11919 components: - type: Transform @@ -77578,7 +76131,7 @@ entities: pos: 35.5,-5.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11921 components: - type: Transform @@ -77586,7 +76139,7 @@ entities: pos: 27.5,-2.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11927 components: - type: Transform @@ -77594,7 +76147,7 @@ entities: pos: 22.5,-11.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11928 components: - type: Transform @@ -77602,42 +76155,42 @@ entities: pos: 23.5,-11.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11943 components: - type: Transform pos: 21.5,-10.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11946 components: - type: Transform pos: 21.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11947 components: - type: Transform pos: 21.5,-8.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11948 components: - type: Transform pos: 21.5,-7.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11949 components: - type: Transform pos: 20.5,-8.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11951 components: - type: Transform @@ -77645,7 +76198,7 @@ entities: pos: 14.5,-7.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11952 components: - type: Transform @@ -77653,7 +76206,7 @@ entities: pos: 15.5,-7.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11953 components: - type: Transform @@ -77661,7 +76214,7 @@ entities: pos: 16.5,-7.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11954 components: - type: Transform @@ -77669,7 +76222,7 @@ entities: pos: 17.5,-7.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11955 components: - type: Transform @@ -77677,7 +76230,7 @@ entities: pos: 18.5,-7.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11956 components: - type: Transform @@ -77685,7 +76238,7 @@ entities: pos: 19.5,-7.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11957 components: - type: Transform @@ -77693,7 +76246,7 @@ entities: pos: 12.5,-6.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11958 components: - type: Transform @@ -77701,7 +76254,7 @@ entities: pos: 13.5,-6.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11959 components: - type: Transform @@ -77709,7 +76262,7 @@ entities: pos: 15.5,-6.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11960 components: - type: Transform @@ -77717,7 +76270,7 @@ entities: pos: 14.5,-6.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11961 components: - type: Transform @@ -77725,7 +76278,7 @@ entities: pos: 16.5,-6.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11962 components: - type: Transform @@ -77733,7 +76286,7 @@ entities: pos: 17.5,-6.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11963 components: - type: Transform @@ -77741,7 +76294,7 @@ entities: pos: 18.5,-6.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11964 components: - type: Transform @@ -77749,7 +76302,7 @@ entities: pos: 19.5,-6.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11965 components: - type: Transform @@ -77757,77 +76310,77 @@ entities: pos: 20.5,-6.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11969 components: - type: Transform pos: 21.5,-2.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11970 components: - type: Transform pos: 21.5,-3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11971 components: - type: Transform pos: 21.5,-1.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11972 components: - type: Transform pos: 21.5,-0.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11973 components: - type: Transform pos: 21.5,0.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11974 components: - type: Transform pos: 20.5,-6.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11975 components: - type: Transform pos: 20.5,-5.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11976 components: - type: Transform pos: 20.5,-4.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11977 components: - type: Transform pos: 20.5,-3.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11980 components: - type: Transform pos: 20.5,-0.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11983 components: - type: Transform @@ -77835,7 +76388,7 @@ entities: pos: 20.5,1.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11984 components: - type: Transform @@ -77843,7 +76396,7 @@ entities: pos: 19.5,1.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11986 components: - type: Transform @@ -77851,7 +76404,7 @@ entities: pos: 21.5,-2.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11988 components: - type: Transform @@ -77859,7 +76412,7 @@ entities: pos: 23.5,-2.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11989 components: - type: Transform @@ -77867,7 +76420,7 @@ entities: pos: 27.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11990 components: - type: Transform @@ -77875,7 +76428,7 @@ entities: pos: 26.5,-3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11992 components: - type: Transform @@ -77883,7 +76436,7 @@ entities: pos: 28.5,-2.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11993 components: - type: Transform @@ -77891,7 +76444,7 @@ entities: pos: 31.5,-2.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12000 components: - type: Transform @@ -77899,7 +76452,7 @@ entities: pos: 25.5,-6.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12004 components: - type: Transform @@ -77907,7 +76460,7 @@ entities: pos: 30.5,-1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12005 components: - type: Transform @@ -77915,7 +76468,7 @@ entities: pos: 30.5,-0.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12006 components: - type: Transform @@ -77923,7 +76476,7 @@ entities: pos: 30.5,0.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12008 components: - type: Transform @@ -77931,7 +76484,7 @@ entities: pos: 25.5,-1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12009 components: - type: Transform @@ -77939,7 +76492,7 @@ entities: pos: 25.5,-0.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12016 components: - type: Transform @@ -77947,14 +76500,14 @@ entities: pos: 31.5,-11.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12021 components: - type: Transform pos: 29.5,-2.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12022 components: - type: Transform @@ -77962,7 +76515,7 @@ entities: pos: 26.5,-2.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12023 components: - type: Transform @@ -77970,7 +76523,7 @@ entities: pos: 26.5,-2.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12024 components: - type: Transform @@ -77978,7 +76531,7 @@ entities: pos: 36.5,-3.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12036 components: - type: Transform @@ -77986,7 +76539,7 @@ entities: pos: 26.5,-1.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12037 components: - type: Transform @@ -77994,7 +76547,7 @@ entities: pos: 26.5,-0.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12040 components: - type: Transform @@ -78002,7 +76555,7 @@ entities: pos: 29.5,-1.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12041 components: - type: Transform @@ -78010,7 +76563,7 @@ entities: pos: 29.5,-0.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12042 components: - type: Transform @@ -78018,7 +76571,7 @@ entities: pos: 29.5,0.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12061 components: - type: Transform @@ -78026,7 +76579,7 @@ entities: pos: 32.5,-2.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12065 components: - type: Transform @@ -78034,7 +76587,7 @@ entities: pos: 34.5,-5.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12066 components: - type: Transform @@ -78042,7 +76595,7 @@ entities: pos: 36.5,-5.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12082 components: - type: Transform @@ -78050,7 +76603,7 @@ entities: pos: 7.5,-23.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12101 components: - type: Transform @@ -78058,7 +76611,7 @@ entities: pos: 34.5,-3.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12127 components: - type: Transform @@ -78066,7 +76619,7 @@ entities: pos: 31.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12130 components: - type: Transform @@ -78074,7 +76627,7 @@ entities: pos: 34.5,-13.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12236 components: - type: Transform @@ -78082,63 +76635,63 @@ entities: pos: 32.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12464 components: - type: Transform pos: 10.5,26.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12465 components: - type: Transform pos: 10.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12466 components: - type: Transform pos: 10.5,28.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12467 components: - type: Transform pos: 10.5,29.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12468 components: - type: Transform pos: 10.5,30.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12469 components: - type: Transform pos: 10.5,31.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12470 components: - type: Transform pos: 8.5,28.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12471 components: - type: Transform pos: 8.5,29.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12474 components: - type: Transform @@ -78146,7 +76699,7 @@ entities: pos: 8.5,30.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12475 components: - type: Transform @@ -78154,7 +76707,7 @@ entities: pos: 10.5,32.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12476 components: - type: Transform @@ -78162,7 +76715,7 @@ entities: pos: 8.5,32.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12477 components: - type: Transform @@ -78170,7 +76723,7 @@ entities: pos: 8.5,33.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12478 components: - type: Transform @@ -78178,7 +76731,7 @@ entities: pos: 8.5,34.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12479 components: - type: Transform @@ -78186,7 +76739,7 @@ entities: pos: 8.5,35.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12480 components: - type: Transform @@ -78194,7 +76747,7 @@ entities: pos: 8.5,36.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12481 components: - type: Transform @@ -78202,7 +76755,7 @@ entities: pos: 8.5,37.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12482 components: - type: Transform @@ -78210,7 +76763,7 @@ entities: pos: 8.5,38.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12483 components: - type: Transform @@ -78218,7 +76771,7 @@ entities: pos: 10.5,34.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12484 components: - type: Transform @@ -78226,7 +76779,7 @@ entities: pos: 10.5,35.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12485 components: - type: Transform @@ -78234,7 +76787,7 @@ entities: pos: 10.5,36.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12486 components: - type: Transform @@ -78242,7 +76795,7 @@ entities: pos: 10.5,37.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12487 components: - type: Transform @@ -78250,7 +76803,7 @@ entities: pos: 10.5,38.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12494 components: - type: Transform @@ -78258,7 +76811,7 @@ entities: pos: 9.5,40.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12496 components: - type: Transform @@ -78266,7 +76819,7 @@ entities: pos: 9.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12497 components: - type: Transform @@ -78274,7 +76827,7 @@ entities: pos: 10.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12498 components: - type: Transform @@ -78282,7 +76835,7 @@ entities: pos: 11.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12499 components: - type: Transform @@ -78290,7 +76843,7 @@ entities: pos: 12.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12500 components: - type: Transform @@ -78298,7 +76851,7 @@ entities: pos: 13.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12501 components: - type: Transform @@ -78306,7 +76859,7 @@ entities: pos: 14.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12502 components: - type: Transform @@ -78314,7 +76867,7 @@ entities: pos: 15.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12504 components: - type: Transform @@ -78322,7 +76875,7 @@ entities: pos: 17.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12505 components: - type: Transform @@ -78330,7 +76883,7 @@ entities: pos: 19.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12506 components: - type: Transform @@ -78338,7 +76891,7 @@ entities: pos: 20.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12507 components: - type: Transform @@ -78346,7 +76899,7 @@ entities: pos: 18.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12508 components: - type: Transform @@ -78354,7 +76907,7 @@ entities: pos: 21.5,28.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12509 components: - type: Transform @@ -78362,7 +76915,7 @@ entities: pos: 21.5,29.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12510 components: - type: Transform @@ -78370,7 +76923,7 @@ entities: pos: 21.5,30.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12511 components: - type: Transform @@ -78378,7 +76931,7 @@ entities: pos: 21.5,31.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12512 components: - type: Transform @@ -78386,7 +76939,7 @@ entities: pos: 21.5,32.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12516 components: - type: Transform @@ -78394,7 +76947,7 @@ entities: pos: 11.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12517 components: - type: Transform @@ -78402,7 +76955,7 @@ entities: pos: 12.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12518 components: - type: Transform @@ -78410,7 +76963,7 @@ entities: pos: 13.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12519 components: - type: Transform @@ -78418,7 +76971,7 @@ entities: pos: 14.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12520 components: - type: Transform @@ -78426,7 +76979,7 @@ entities: pos: 15.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12521 components: - type: Transform @@ -78434,7 +76987,7 @@ entities: pos: 16.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12522 components: - type: Transform @@ -78442,7 +76995,7 @@ entities: pos: 17.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12524 components: - type: Transform @@ -78450,7 +77003,7 @@ entities: pos: 19.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12525 components: - type: Transform @@ -78458,7 +77011,7 @@ entities: pos: 20.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12526 components: - type: Transform @@ -78466,7 +77019,7 @@ entities: pos: 21.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12527 components: - type: Transform @@ -78474,7 +77027,7 @@ entities: pos: 22.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12529 components: - type: Transform @@ -78482,7 +77035,7 @@ entities: pos: 23.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12530 components: - type: Transform @@ -78490,7 +77043,7 @@ entities: pos: 23.5,28.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12531 components: - type: Transform @@ -78498,7 +77051,7 @@ entities: pos: 23.5,30.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12532 components: - type: Transform @@ -78506,7 +77059,7 @@ entities: pos: 23.5,29.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12533 components: - type: Transform @@ -78514,7 +77067,7 @@ entities: pos: 23.5,31.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12534 components: - type: Transform @@ -78522,7 +77075,7 @@ entities: pos: 23.5,32.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12535 components: - type: Transform @@ -78530,7 +77083,7 @@ entities: pos: 23.5,33.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12546 components: - type: Transform @@ -78538,7 +77091,7 @@ entities: pos: 21.5,34.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12547 components: - type: Transform @@ -78546,7 +77099,7 @@ entities: pos: 21.5,35.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12548 components: - type: Transform @@ -78554,7 +77107,7 @@ entities: pos: 21.5,37.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12549 components: - type: Transform @@ -78562,7 +77115,7 @@ entities: pos: 21.5,38.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12550 components: - type: Transform @@ -78570,7 +77123,7 @@ entities: pos: 23.5,35.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12551 components: - type: Transform @@ -78578,7 +77131,7 @@ entities: pos: 23.5,36.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12552 components: - type: Transform @@ -78586,7 +77139,7 @@ entities: pos: 21.5,40.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12553 components: - type: Transform @@ -78594,7 +77147,7 @@ entities: pos: 21.5,41.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12554 components: - type: Transform @@ -78602,7 +77155,7 @@ entities: pos: 21.5,42.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12555 components: - type: Transform @@ -78610,7 +77163,7 @@ entities: pos: 20.5,41.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12556 components: - type: Transform @@ -78618,7 +77171,7 @@ entities: pos: 20.5,42.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12557 components: - type: Transform @@ -78626,7 +77179,7 @@ entities: pos: 21.5,40.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12558 components: - type: Transform @@ -78634,14 +77187,14 @@ entities: pos: 22.5,40.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12560 components: - type: Transform pos: 23.5,39.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12561 components: - type: Transform @@ -78649,7 +77202,7 @@ entities: pos: 22.5,37.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12562 components: - type: Transform @@ -78657,7 +77210,7 @@ entities: pos: 21.5,37.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12563 components: - type: Transform @@ -78665,7 +77218,7 @@ entities: pos: 20.5,37.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12564 components: - type: Transform @@ -78673,7 +77226,7 @@ entities: pos: 19.5,37.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12565 components: - type: Transform @@ -78681,7 +77234,7 @@ entities: pos: 20.5,36.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12566 components: - type: Transform @@ -78689,7 +77242,7 @@ entities: pos: 19.5,36.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12567 components: - type: Transform @@ -78697,7 +77250,7 @@ entities: pos: 20.5,33.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12568 components: - type: Transform @@ -78705,7 +77258,7 @@ entities: pos: 19.5,33.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12569 components: - type: Transform @@ -78713,7 +77266,7 @@ entities: pos: 22.5,34.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12570 components: - type: Transform @@ -78721,7 +77274,7 @@ entities: pos: 21.5,34.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12571 components: - type: Transform @@ -78729,7 +77282,7 @@ entities: pos: 20.5,34.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12572 components: - type: Transform @@ -78737,7 +77290,7 @@ entities: pos: 19.5,34.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12573 components: - type: Transform @@ -78745,7 +77298,7 @@ entities: pos: 20.5,39.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12574 components: - type: Transform @@ -78753,7 +77306,7 @@ entities: pos: 19.5,39.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12575 components: - type: Transform @@ -78761,7 +77314,7 @@ entities: pos: 19.5,40.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12585 components: - type: Transform @@ -78769,14 +77322,14 @@ entities: pos: 24.5,40.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12586 components: - type: Transform pos: 25.5,41.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12590 components: - type: Transform @@ -78784,7 +77337,7 @@ entities: pos: 26.5,38.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12591 components: - type: Transform @@ -78792,7 +77345,7 @@ entities: pos: 26.5,39.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12592 components: - type: Transform @@ -78800,7 +77353,7 @@ entities: pos: 27.5,37.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12593 components: - type: Transform @@ -78808,7 +77361,7 @@ entities: pos: 28.5,37.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12594 components: - type: Transform @@ -78816,7 +77369,7 @@ entities: pos: 29.5,37.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12595 components: - type: Transform @@ -78824,7 +77377,7 @@ entities: pos: 30.5,37.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12596 components: - type: Transform @@ -78832,7 +77385,7 @@ entities: pos: 22.5,36.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12597 components: - type: Transform @@ -78840,7 +77393,7 @@ entities: pos: 23.5,36.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12598 components: - type: Transform @@ -78848,7 +77401,7 @@ entities: pos: 25.5,36.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12601 components: - type: Transform @@ -78856,7 +77409,7 @@ entities: pos: 27.5,36.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12602 components: - type: Transform @@ -78864,7 +77417,7 @@ entities: pos: 28.5,36.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12603 components: - type: Transform @@ -78872,7 +77425,7 @@ entities: pos: 29.5,36.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12604 components: - type: Transform @@ -78880,7 +77433,7 @@ entities: pos: 30.5,36.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12607 components: - type: Transform @@ -78888,7 +77441,7 @@ entities: pos: 24.5,26.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12608 components: - type: Transform @@ -78896,7 +77449,7 @@ entities: pos: 25.5,26.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12609 components: - type: Transform @@ -78904,63 +77457,63 @@ entities: pos: 26.5,26.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12612 components: - type: Transform pos: 26.5,35.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12613 components: - type: Transform pos: 26.5,34.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12614 components: - type: Transform pos: 26.5,33.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12615 components: - type: Transform pos: 26.5,32.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12616 components: - type: Transform pos: 26.5,31.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12617 components: - type: Transform pos: 26.5,30.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12655 components: - type: Transform pos: 28.5,18.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12658 components: - type: Transform pos: 28.5,17.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12677 components: - type: Transform @@ -78968,14 +77521,14 @@ entities: pos: 26.5,18.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12745 components: - type: Transform pos: 16.5,56.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12752 components: - type: Transform @@ -78995,7 +77548,7 @@ entities: pos: 27.5,20.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12812 components: - type: Transform @@ -79003,14 +77556,14 @@ entities: pos: 26.5,20.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12825 components: - type: Transform pos: 28.5,16.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12873 components: - type: Transform @@ -79018,7 +77571,7 @@ entities: pos: 23.5,20.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12876 components: - type: Transform @@ -79026,7 +77579,7 @@ entities: pos: 24.5,20.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12879 components: - type: Transform @@ -79034,7 +77587,7 @@ entities: pos: 22.5,20.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12880 components: - type: Transform @@ -79042,7 +77595,7 @@ entities: pos: 21.5,19.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12884 components: - type: Transform @@ -79050,7 +77603,7 @@ entities: pos: 24.5,15.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12887 components: - type: Transform @@ -79058,7 +77611,7 @@ entities: pos: 25.5,15.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12888 components: - type: Transform @@ -79066,7 +77619,7 @@ entities: pos: 27.5,7.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12907 components: - type: Transform @@ -79079,7 +77632,7 @@ entities: pos: 26.5,8.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12924 components: - type: Transform @@ -79092,7 +77645,7 @@ entities: pos: 12.5,15.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12939 components: - type: Transform @@ -79100,7 +77653,7 @@ entities: pos: 13.5,15.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12941 components: - type: Transform @@ -79108,7 +77661,7 @@ entities: pos: 15.5,15.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12942 components: - type: Transform @@ -79116,15 +77669,7 @@ entities: pos: 16.5,15.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12943 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,15.5 - parent: 30 - - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12945 components: - type: Transform @@ -79132,7 +77677,7 @@ entities: pos: 19.5,15.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12946 components: - type: Transform @@ -79140,7 +77685,7 @@ entities: pos: 20.5,15.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12947 components: - type: Transform @@ -79148,7 +77693,7 @@ entities: pos: 21.5,15.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12948 components: - type: Transform @@ -79156,7 +77701,7 @@ entities: pos: 22.5,15.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12950 components: - type: Transform @@ -79164,7 +77709,7 @@ entities: pos: 23.5,14.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12952 components: - type: Transform @@ -79172,7 +77717,7 @@ entities: pos: 23.5,12.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12953 components: - type: Transform @@ -79180,7 +77725,7 @@ entities: pos: 23.5,11.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12955 components: - type: Transform @@ -79188,7 +77733,7 @@ entities: pos: 23.5,9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12957 components: - type: Transform @@ -79196,7 +77741,7 @@ entities: pos: 25.5,8.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12958 components: - type: Transform @@ -79204,7 +77749,7 @@ entities: pos: 24.5,8.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12962 components: - type: Transform @@ -79212,7 +77757,7 @@ entities: pos: 27.5,8.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12964 components: - type: Transform @@ -79220,7 +77765,7 @@ entities: pos: 29.5,8.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12965 components: - type: Transform @@ -79228,7 +77773,7 @@ entities: pos: 30.5,8.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12966 components: - type: Transform @@ -79236,21 +77781,21 @@ entities: pos: 31.5,8.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12967 components: - type: Transform pos: 32.5,9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12968 components: - type: Transform pos: 32.5,10.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12969 components: - type: Transform @@ -79258,7 +77803,7 @@ entities: pos: 33.5,8.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12970 components: - type: Transform @@ -79266,7 +77811,7 @@ entities: pos: 34.5,8.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12971 components: - type: Transform @@ -79274,7 +77819,7 @@ entities: pos: 35.5,8.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12972 components: - type: Transform @@ -79282,7 +77827,7 @@ entities: pos: 36.5,8.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12977 components: - type: Transform @@ -79290,7 +77835,7 @@ entities: pos: 22.5,10.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12978 components: - type: Transform @@ -79298,7 +77843,7 @@ entities: pos: 21.5,10.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12979 components: - type: Transform @@ -79306,7 +77851,7 @@ entities: pos: 20.5,10.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12980 components: - type: Transform @@ -79314,7 +77859,7 @@ entities: pos: 19.5,10.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12981 components: - type: Transform @@ -79322,7 +77867,7 @@ entities: pos: 18.5,10.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12982 components: - type: Transform @@ -79330,21 +77875,21 @@ entities: pos: 17.5,10.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12984 components: - type: Transform pos: 23.5,16.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12985 components: - type: Transform pos: 23.5,17.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12987 components: - type: Transform @@ -79352,7 +77897,7 @@ entities: pos: 14.5,16.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12988 components: - type: Transform @@ -79360,7 +77905,7 @@ entities: pos: 14.5,17.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12990 components: - type: Transform @@ -79368,7 +77913,7 @@ entities: pos: 14.5,19.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12992 components: - type: Transform @@ -79376,7 +77921,7 @@ entities: pos: 15.5,20.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12993 components: - type: Transform @@ -79384,7 +77929,7 @@ entities: pos: 16.5,20.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12994 components: - type: Transform @@ -79392,7 +77937,7 @@ entities: pos: 17.5,20.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12998 components: - type: Transform @@ -79400,7 +77945,7 @@ entities: pos: 22.5,19.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12999 components: - type: Transform @@ -79408,7 +77953,7 @@ entities: pos: 21.5,19.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13000 components: - type: Transform @@ -79416,7 +77961,7 @@ entities: pos: 20.5,19.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13001 components: - type: Transform @@ -79424,7 +77969,7 @@ entities: pos: 19.5,19.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13008 components: - type: Transform @@ -79432,7 +77977,7 @@ entities: pos: 9.5,17.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13009 components: - type: Transform @@ -79440,7 +77985,7 @@ entities: pos: 10.5,17.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13010 components: - type: Transform @@ -79448,7 +77993,7 @@ entities: pos: 11.5,17.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13012 components: - type: Transform @@ -79456,7 +78001,7 @@ entities: pos: 12.5,18.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13013 components: - type: Transform @@ -79464,7 +78009,7 @@ entities: pos: 12.5,19.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13014 components: - type: Transform @@ -79472,7 +78017,7 @@ entities: pos: 12.5,20.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13015 components: - type: Transform @@ -79480,7 +78025,7 @@ entities: pos: 12.5,21.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13018 components: - type: Transform @@ -79488,7 +78033,7 @@ entities: pos: 14.5,22.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13019 components: - type: Transform @@ -79496,7 +78041,7 @@ entities: pos: 15.5,22.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13020 components: - type: Transform @@ -79504,14 +78049,14 @@ entities: pos: 16.5,22.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13021 components: - type: Transform pos: 17.5,19.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13023 components: - type: Transform @@ -79519,7 +78064,7 @@ entities: pos: 12.5,15.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13025 components: - type: Transform @@ -79527,7 +78072,7 @@ entities: pos: 13.5,14.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13026 components: - type: Transform @@ -79535,7 +78080,7 @@ entities: pos: 14.5,14.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13027 components: - type: Transform @@ -79543,7 +78088,7 @@ entities: pos: 15.5,14.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13028 components: - type: Transform @@ -79551,7 +78096,7 @@ entities: pos: 16.5,14.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13029 components: - type: Transform @@ -79559,7 +78104,7 @@ entities: pos: 17.5,14.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13031 components: - type: Transform @@ -79567,7 +78112,7 @@ entities: pos: 19.5,14.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13032 components: - type: Transform @@ -79575,21 +78120,21 @@ entities: pos: 20.5,14.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13040 components: - type: Transform pos: 17.5,20.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13041 components: - type: Transform pos: 17.5,21.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13042 components: - type: Transform @@ -79597,7 +78142,7 @@ entities: pos: 18.5,18.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13043 components: - type: Transform @@ -79605,7 +78150,7 @@ entities: pos: 19.5,18.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13044 components: - type: Transform @@ -79613,7 +78158,7 @@ entities: pos: 20.5,18.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13045 components: - type: Transform @@ -79621,7 +78166,7 @@ entities: pos: 21.5,15.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13046 components: - type: Transform @@ -79629,7 +78174,7 @@ entities: pos: 21.5,16.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13047 components: - type: Transform @@ -79637,23 +78182,7 @@ entities: pos: 21.5,17.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 13048 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,12.5 - parent: 30 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 13049 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,13.5 - parent: 30 - - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13050 components: - type: Transform @@ -79661,7 +78190,7 @@ entities: pos: 20.5,11.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13051 components: - type: Transform @@ -79669,7 +78198,7 @@ entities: pos: 19.5,11.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13052 components: - type: Transform @@ -79677,7 +78206,7 @@ entities: pos: 18.5,11.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13053 components: - type: Transform @@ -79685,28 +78214,28 @@ entities: pos: 17.5,11.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13054 components: - type: Transform pos: 21.5,8.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13055 components: - type: Transform pos: 21.5,9.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13056 components: - type: Transform pos: 21.5,10.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13057 components: - type: Transform @@ -79714,7 +78243,7 @@ entities: pos: 22.5,7.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13058 components: - type: Transform @@ -79722,7 +78251,7 @@ entities: pos: 23.5,7.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13060 components: - type: Transform @@ -79730,7 +78259,7 @@ entities: pos: 24.5,7.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13061 components: - type: Transform @@ -79738,7 +78267,7 @@ entities: pos: 26.5,7.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13062 components: - type: Transform @@ -79746,7 +78275,7 @@ entities: pos: 28.5,7.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13063 components: - type: Transform @@ -79754,7 +78283,7 @@ entities: pos: 29.5,7.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13064 components: - type: Transform @@ -79762,7 +78291,7 @@ entities: pos: 30.5,7.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13065 components: - type: Transform @@ -79770,7 +78299,7 @@ entities: pos: 31.5,7.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13066 components: - type: Transform @@ -79778,7 +78307,7 @@ entities: pos: 32.5,7.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13067 components: - type: Transform @@ -79786,7 +78315,7 @@ entities: pos: 33.5,7.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13068 components: - type: Transform @@ -79794,7 +78323,7 @@ entities: pos: 34.5,7.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13069 components: - type: Transform @@ -79802,7 +78331,7 @@ entities: pos: 35.5,7.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13070 components: - type: Transform @@ -79810,7 +78339,7 @@ entities: pos: 36.5,7.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13071 components: - type: Transform @@ -79818,7 +78347,7 @@ entities: pos: 37.5,7.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13089 components: - type: Transform @@ -79826,7 +78355,7 @@ entities: pos: 24.5,18.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13090 components: - type: Transform @@ -79834,14 +78363,14 @@ entities: pos: 25.5,18.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13152 components: - type: Transform pos: 28.5,19.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13337 components: - type: Transform @@ -79849,7 +78378,7 @@ entities: pos: 25.5,20.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13339 components: - type: Transform @@ -79857,7 +78386,7 @@ entities: pos: 39.5,7.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13348 components: - type: Transform @@ -79865,7 +78394,7 @@ entities: pos: 40.5,8.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13349 components: - type: Transform @@ -79873,7 +78402,7 @@ entities: pos: 40.5,9.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13350 components: - type: Transform @@ -79881,7 +78410,7 @@ entities: pos: 40.5,10.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13351 components: - type: Transform @@ -79889,7 +78418,7 @@ entities: pos: 40.5,11.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13352 components: - type: Transform @@ -79897,14 +78426,14 @@ entities: pos: 40.5,12.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13468 components: - type: Transform pos: 16.5,55.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13635 components: - type: Transform @@ -79912,7 +78441,7 @@ entities: pos: 51.5,19.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13636 components: - type: Transform @@ -79920,7 +78449,7 @@ entities: pos: 49.5,19.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13637 components: - type: Transform @@ -79928,7 +78457,7 @@ entities: pos: 47.5,19.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13638 components: - type: Transform @@ -79936,7 +78465,7 @@ entities: pos: 45.5,19.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13639 components: - type: Transform @@ -79944,7 +78473,7 @@ entities: pos: 43.5,19.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13640 components: - type: Transform @@ -79952,7 +78481,7 @@ entities: pos: 34.5,5.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13641 components: - type: Transform @@ -79960,7 +78489,7 @@ entities: pos: 36.5,5.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13754 components: - type: Transform @@ -79968,7 +78497,7 @@ entities: pos: 32.5,35.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13755 components: - type: Transform @@ -79976,7 +78505,7 @@ entities: pos: 33.5,35.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13756 components: - type: Transform @@ -79984,7 +78513,7 @@ entities: pos: 34.5,35.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13758 components: - type: Transform @@ -79992,7 +78521,7 @@ entities: pos: 36.5,35.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13759 components: - type: Transform @@ -80000,7 +78529,7 @@ entities: pos: 37.5,35.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13760 components: - type: Transform @@ -80008,7 +78537,7 @@ entities: pos: 38.5,35.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13761 components: - type: Transform @@ -80016,7 +78545,7 @@ entities: pos: 39.5,35.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13762 components: - type: Transform @@ -80024,7 +78553,7 @@ entities: pos: 40.5,35.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13763 components: - type: Transform @@ -80032,7 +78561,7 @@ entities: pos: 41.5,35.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13764 components: - type: Transform @@ -80040,7 +78569,7 @@ entities: pos: 42.5,35.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13766 components: - type: Transform @@ -80048,7 +78577,7 @@ entities: pos: 44.5,35.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13769 components: - type: Transform @@ -80056,7 +78585,7 @@ entities: pos: 32.5,38.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13770 components: - type: Transform @@ -80064,7 +78593,7 @@ entities: pos: 33.5,38.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13771 components: - type: Transform @@ -80072,7 +78601,7 @@ entities: pos: 34.5,38.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13773 components: - type: Transform @@ -80080,7 +78609,7 @@ entities: pos: 36.5,38.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13774 components: - type: Transform @@ -80088,7 +78617,7 @@ entities: pos: 37.5,38.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13775 components: - type: Transform @@ -80096,7 +78625,7 @@ entities: pos: 38.5,38.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13777 components: - type: Transform @@ -80104,7 +78633,7 @@ entities: pos: 40.5,38.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13778 components: - type: Transform @@ -80112,7 +78641,7 @@ entities: pos: 41.5,38.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13779 components: - type: Transform @@ -80120,7 +78649,7 @@ entities: pos: 42.5,38.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13780 components: - type: Transform @@ -80128,7 +78657,7 @@ entities: pos: 43.5,38.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13781 components: - type: Transform @@ -80136,28 +78665,28 @@ entities: pos: 44.5,38.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13785 components: - type: Transform pos: 30.5,39.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13786 components: - type: Transform pos: 30.5,40.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13787 components: - type: Transform pos: 30.5,41.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13792 components: - type: Transform @@ -80165,7 +78694,7 @@ entities: pos: 29.5,36.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13793 components: - type: Transform @@ -80173,7 +78702,7 @@ entities: pos: 29.5,37.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13794 components: - type: Transform @@ -80181,7 +78710,7 @@ entities: pos: 29.5,38.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13795 components: - type: Transform @@ -80189,7 +78718,7 @@ entities: pos: 29.5,39.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13796 components: - type: Transform @@ -80197,7 +78726,7 @@ entities: pos: 29.5,40.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13797 components: - type: Transform @@ -80205,28 +78734,144 @@ entities: pos: 29.5,41.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' + - uid: 13956 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-44.5 + parent: 30 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14362 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -53.5,-60.5 + parent: 30 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 14448 + components: + - type: Transform + pos: 21.5,12.5 + parent: 30 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14454 + components: + - type: Transform + pos: -25.5,8.5 + parent: 30 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 14461 + components: + - type: Transform + pos: 21.5,13.5 + parent: 30 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14466 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -61.5,-60.5 + parent: 30 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14472 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -61.5,-61.5 + parent: 30 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14475 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -58.5,-59.5 + parent: 30 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14498 + components: + - type: Transform + pos: -25.5,11.5 + parent: 30 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 14500 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,15.5 + parent: 30 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 14501 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -61.5,-62.5 + parent: 30 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14502 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -64.5,-60.5 + parent: 30 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 14503 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -59.5,-60.5 + parent: 30 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 14511 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,12.5 + parent: 30 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 14517 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,11.5 + parent: 30 + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 14974 components: - type: Transform pos: 16.5,45.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14975 components: - type: Transform pos: 16.5,47.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14977 components: - type: Transform pos: 16.5,44.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14980 components: - type: Transform @@ -80234,7 +78879,7 @@ entities: pos: 19.5,43.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14981 components: - type: Transform @@ -80242,63 +78887,63 @@ entities: pos: 18.5,43.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14988 components: - type: Transform pos: 16.5,52.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14990 components: - type: Transform pos: 16.5,53.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15018 components: - type: Transform pos: 16.5,49.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15049 components: - type: Transform pos: 16.5,51.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15053 components: - type: Transform pos: 16.5,50.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15054 components: - type: Transform pos: 16.5,46.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15055 components: - type: Transform pos: 16.5,54.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15061 components: - type: Transform pos: 16.5,48.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15453 components: - type: Transform @@ -80306,7 +78951,7 @@ entities: pos: 50.5,19.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15454 components: - type: Transform @@ -80314,7 +78959,7 @@ entities: pos: 48.5,19.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15455 components: - type: Transform @@ -80322,7 +78967,7 @@ entities: pos: 46.5,19.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15456 components: - type: Transform @@ -80330,7 +78975,7 @@ entities: pos: 44.5,19.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15457 components: - type: Transform @@ -80338,7 +78983,7 @@ entities: pos: 33.5,5.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15458 components: - type: Transform @@ -80346,7 +78991,7 @@ entities: pos: 35.5,5.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15459 components: - type: Transform @@ -80354,7 +78999,7 @@ entities: pos: 37.5,5.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15618 components: - type: Transform @@ -80362,7 +79007,7 @@ entities: pos: 52.5,22.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15624 components: - type: Transform @@ -80370,21 +79015,21 @@ entities: pos: 38.5,5.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15734 components: - type: Transform pos: 42.5,18.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15735 components: - type: Transform pos: 42.5,17.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15740 components: - type: Transform @@ -80392,7 +79037,7 @@ entities: pos: 39.5,5.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15741 components: - type: Transform @@ -80400,7 +79045,7 @@ entities: pos: 40.5,5.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15743 components: - type: Transform @@ -80408,35 +79053,35 @@ entities: pos: 41.5,5.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15744 components: - type: Transform pos: 42.5,6.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15745 components: - type: Transform pos: 42.5,7.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15746 components: - type: Transform pos: 42.5,8.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15747 components: - type: Transform pos: 42.5,9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15748 components: - type: Transform @@ -80444,14 +79089,14 @@ entities: pos: 52.5,21.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15994 components: - type: Transform pos: 32.5,6.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 16101 components: - type: Transform @@ -80459,7 +79104,7 @@ entities: pos: 34.5,-12.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 16102 components: - type: Transform @@ -80467,7 +79112,7 @@ entities: pos: 26.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 16122 components: - type: Transform @@ -80475,7 +79120,7 @@ entities: pos: 24.5,-11.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 16783 components: - type: Transform @@ -80483,56 +79128,79 @@ entities: pos: 17.5,43.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' + - uid: 17715 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -54.5,-60.5 + parent: 30 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 18077 + components: + - type: Transform + pos: 16.5,11.5 + parent: 30 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 18211 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,11.5 + parent: 30 + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 18377 components: - type: Transform pos: -45.5,-14.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18378 components: - type: Transform pos: -45.5,-15.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18379 components: - type: Transform pos: -45.5,-16.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18381 components: - type: Transform pos: -45.5,-18.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18382 components: - type: Transform pos: -45.5,-19.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18383 components: - type: Transform pos: -45.5,-20.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18384 components: - type: Transform pos: -45.5,-21.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18388 components: - type: Transform @@ -80540,7 +79208,7 @@ entities: pos: -60.5,-22.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18389 components: - type: Transform @@ -80548,7 +79216,7 @@ entities: pos: -59.5,-22.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18390 components: - type: Transform @@ -80556,7 +79224,7 @@ entities: pos: -58.5,-22.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18392 components: - type: Transform @@ -80564,7 +79232,7 @@ entities: pos: -56.5,-22.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18393 components: - type: Transform @@ -80572,7 +79240,7 @@ entities: pos: -55.5,-22.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18394 components: - type: Transform @@ -80580,7 +79248,7 @@ entities: pos: -54.5,-22.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18395 components: - type: Transform @@ -80588,7 +79256,7 @@ entities: pos: -53.5,-22.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18396 components: - type: Transform @@ -80596,7 +79264,7 @@ entities: pos: -52.5,-22.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18398 components: - type: Transform @@ -80604,7 +79272,7 @@ entities: pos: -50.5,-22.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18399 components: - type: Transform @@ -80612,7 +79280,7 @@ entities: pos: -51.5,-24.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18400 components: - type: Transform @@ -80620,7 +79288,7 @@ entities: pos: -48.5,-22.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18401 components: - type: Transform @@ -80628,7 +79296,7 @@ entities: pos: -47.5,-22.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18402 components: - type: Transform @@ -80636,91 +79304,91 @@ entities: pos: -46.5,-22.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18404 components: - type: Transform pos: -44.5,-12.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18405 components: - type: Transform pos: -44.5,-14.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18406 components: - type: Transform pos: -44.5,-15.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18407 components: - type: Transform pos: -44.5,-16.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18408 components: - type: Transform pos: -44.5,-17.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18409 components: - type: Transform pos: -44.5,-18.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18410 components: - type: Transform pos: -44.5,-19.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18411 components: - type: Transform pos: -44.5,-20.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18413 components: - type: Transform pos: -44.5,-22.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18414 components: - type: Transform pos: -44.5,-23.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18417 components: - type: Transform pos: -62.5,-24.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18418 components: - type: Transform pos: -62.5,-23.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18419 components: - type: Transform @@ -80728,7 +79396,7 @@ entities: pos: -60.5,-24.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18420 components: - type: Transform @@ -80736,7 +79404,7 @@ entities: pos: -59.5,-24.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18422 components: - type: Transform @@ -80744,7 +79412,7 @@ entities: pos: -57.5,-24.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18423 components: - type: Transform @@ -80752,7 +79420,7 @@ entities: pos: -56.5,-24.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18424 components: - type: Transform @@ -80760,7 +79428,7 @@ entities: pos: -55.5,-24.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18425 components: - type: Transform @@ -80768,7 +79436,7 @@ entities: pos: -54.5,-24.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18427 components: - type: Transform @@ -80776,7 +79444,7 @@ entities: pos: -52.5,-24.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18428 components: - type: Transform @@ -80784,7 +79452,7 @@ entities: pos: -49.5,-22.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18429 components: - type: Transform @@ -80792,7 +79460,7 @@ entities: pos: -50.5,-24.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18431 components: - type: Transform @@ -80800,7 +79468,7 @@ entities: pos: -48.5,-24.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18432 components: - type: Transform @@ -80808,7 +79476,7 @@ entities: pos: -47.5,-24.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18433 components: - type: Transform @@ -80816,7 +79484,7 @@ entities: pos: -46.5,-24.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18434 components: - type: Transform @@ -80824,7 +79492,7 @@ entities: pos: -45.5,-24.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18443 components: - type: Transform @@ -80832,21 +79500,21 @@ entities: pos: -62.5,-24.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18444 components: - type: Transform pos: -63.5,-23.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18445 components: - type: Transform pos: -63.5,-22.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18448 components: - type: Transform @@ -80854,189 +79522,189 @@ entities: pos: -63.5,-20.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18452 components: - type: Transform pos: -62.5,-25.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18453 components: - type: Transform pos: -62.5,-26.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18454 components: - type: Transform pos: -62.5,-27.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18455 components: - type: Transform pos: -62.5,-28.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18456 components: - type: Transform pos: -62.5,-29.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18457 components: - type: Transform pos: -62.5,-30.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18458 components: - type: Transform pos: -62.5,-31.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18459 components: - type: Transform pos: -62.5,-32.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18460 components: - type: Transform pos: -62.5,-33.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18461 components: - type: Transform pos: -62.5,-34.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18462 components: - type: Transform pos: -62.5,-35.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18463 components: - type: Transform pos: -62.5,-36.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18464 components: - type: Transform pos: -62.5,-37.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18465 components: - type: Transform pos: -61.5,-37.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18466 components: - type: Transform pos: -61.5,-36.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18467 components: - type: Transform pos: -61.5,-35.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18468 components: - type: Transform pos: -61.5,-34.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18469 components: - type: Transform pos: -61.5,-33.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18470 components: - type: Transform pos: -61.5,-32.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18471 components: - type: Transform pos: -61.5,-31.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18472 components: - type: Transform pos: -61.5,-30.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18473 components: - type: Transform pos: -61.5,-29.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18474 components: - type: Transform pos: -61.5,-28.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18475 components: - type: Transform pos: -61.5,-27.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18476 components: - type: Transform pos: -61.5,-26.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18477 components: - type: Transform pos: -61.5,-25.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18480 components: - type: Transform @@ -81044,7 +79712,7 @@ entities: pos: -63.5,-38.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18481 components: - type: Transform @@ -81052,7 +79720,7 @@ entities: pos: -60.5,-38.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18482 components: - type: Transform @@ -81060,7 +79728,7 @@ entities: pos: -59.5,-38.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18483 components: - type: Transform @@ -81068,49 +79736,49 @@ entities: pos: -64.5,-38.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18486 components: - type: Transform pos: -65.5,-39.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18487 components: - type: Transform pos: -65.5,-40.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18488 components: - type: Transform pos: -65.5,-41.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18489 components: - type: Transform pos: -65.5,-42.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18490 components: - type: Transform pos: -65.5,-43.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18491 components: - type: Transform pos: -65.5,-44.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18494 components: - type: Transform @@ -81118,28 +79786,28 @@ entities: pos: -63.5,-45.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18495 components: - type: Transform pos: -62.5,-46.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18496 components: - type: Transform pos: -62.5,-47.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18497 components: - type: Transform pos: -62.5,-48.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18499 components: - type: Transform @@ -81147,7 +79815,7 @@ entities: pos: -66.5,-45.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18500 components: - type: Transform @@ -81155,7 +79823,7 @@ entities: pos: -67.5,-45.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18502 components: - type: Transform @@ -81163,7 +79831,7 @@ entities: pos: -69.5,-45.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18503 components: - type: Transform @@ -81171,7 +79839,7 @@ entities: pos: -70.5,-45.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18504 components: - type: Transform @@ -81179,7 +79847,7 @@ entities: pos: -71.5,-45.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18505 components: - type: Transform @@ -81187,7 +79855,7 @@ entities: pos: -72.5,-45.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18506 components: - type: Transform @@ -81195,7 +79863,7 @@ entities: pos: -73.5,-45.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18507 components: - type: Transform @@ -81203,7 +79871,7 @@ entities: pos: -74.5,-45.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18508 components: - type: Transform @@ -81211,7 +79879,7 @@ entities: pos: -75.5,-45.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18509 components: - type: Transform @@ -81219,21 +79887,21 @@ entities: pos: -76.5,-45.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18511 components: - type: Transform pos: -77.5,-46.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18512 components: - type: Transform pos: -77.5,-47.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18514 components: - type: Transform @@ -81241,7 +79909,7 @@ entities: pos: -78.5,-44.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18515 components: - type: Transform @@ -81249,7 +79917,7 @@ entities: pos: -78.5,-43.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18516 components: - type: Transform @@ -81257,7 +79925,7 @@ entities: pos: -78.5,-42.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18517 components: - type: Transform @@ -81265,7 +79933,7 @@ entities: pos: -78.5,-41.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18518 components: - type: Transform @@ -81273,7 +79941,7 @@ entities: pos: -78.5,-40.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18522 components: - type: Transform @@ -81281,7 +79949,7 @@ entities: pos: -68.5,-43.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18527 components: - type: Transform @@ -81289,7 +79957,7 @@ entities: pos: -64.5,-49.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18528 components: - type: Transform @@ -81297,7 +79965,7 @@ entities: pos: -65.5,-49.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18529 components: - type: Transform @@ -81305,63 +79973,63 @@ entities: pos: -66.5,-49.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18530 components: - type: Transform pos: -67.5,-50.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18531 components: - type: Transform pos: -67.5,-51.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18532 components: - type: Transform pos: -67.5,-52.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18533 components: - type: Transform pos: -67.5,-53.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18535 components: - type: Transform pos: -67.5,-55.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18536 components: - type: Transform pos: -67.5,-56.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18537 components: - type: Transform pos: -67.5,-57.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18538 components: - type: Transform pos: -67.5,-58.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18539 components: - type: Transform @@ -81369,7 +80037,7 @@ entities: pos: -66.5,-59.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18540 components: - type: Transform @@ -81377,7 +80045,7 @@ entities: pos: -65.5,-59.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18541 components: - type: Transform @@ -81385,7 +80053,7 @@ entities: pos: -64.5,-59.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18543 components: - type: Transform @@ -81393,15 +80061,7 @@ entities: pos: -62.5,-59.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 18544 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -61.5,-59.5 - parent: 30 - - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18545 components: - type: Transform @@ -81409,7 +80069,7 @@ entities: pos: -60.5,-59.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18546 components: - type: Transform @@ -81417,7 +80077,7 @@ entities: pos: -59.5,-59.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18548 components: - type: Transform @@ -81425,7 +80085,7 @@ entities: pos: -57.5,-59.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18549 components: - type: Transform @@ -81433,7 +80093,7 @@ entities: pos: -56.5,-58.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18551 components: - type: Transform @@ -81441,7 +80101,7 @@ entities: pos: -56.5,-56.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18552 components: - type: Transform @@ -81449,7 +80109,7 @@ entities: pos: -56.5,-55.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18553 components: - type: Transform @@ -81457,7 +80117,7 @@ entities: pos: -56.5,-54.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18555 components: - type: Transform @@ -81465,7 +80125,7 @@ entities: pos: -56.5,-51.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18556 components: - type: Transform @@ -81473,7 +80133,7 @@ entities: pos: -56.5,-52.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18557 components: - type: Transform @@ -81481,7 +80141,7 @@ entities: pos: -56.5,-50.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18558 components: - type: Transform @@ -81489,7 +80149,7 @@ entities: pos: -57.5,-49.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18559 components: - type: Transform @@ -81497,7 +80157,7 @@ entities: pos: -58.5,-49.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18560 components: - type: Transform @@ -81505,7 +80165,7 @@ entities: pos: -59.5,-49.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18561 components: - type: Transform @@ -81513,7 +80173,7 @@ entities: pos: -60.5,-49.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18562 components: - type: Transform @@ -81521,63 +80181,63 @@ entities: pos: -61.5,-49.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18563 components: - type: Transform pos: -55.5,-59.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18564 components: - type: Transform pos: -55.5,-58.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18565 components: - type: Transform pos: -55.5,-57.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18567 components: - type: Transform pos: -55.5,-55.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18569 components: - type: Transform pos: -55.5,-53.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18571 components: - type: Transform pos: -55.5,-51.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18572 components: - type: Transform pos: -55.5,-50.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18573 components: - type: Transform pos: -55.5,-49.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18574 components: - type: Transform @@ -81585,7 +80245,7 @@ entities: pos: -56.5,-48.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18575 components: - type: Transform @@ -81593,7 +80253,7 @@ entities: pos: -57.5,-48.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18576 components: - type: Transform @@ -81601,7 +80261,7 @@ entities: pos: -58.5,-48.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18577 components: - type: Transform @@ -81609,7 +80269,7 @@ entities: pos: -59.5,-48.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18579 components: - type: Transform @@ -81617,7 +80277,7 @@ entities: pos: -62.5,-48.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18580 components: - type: Transform @@ -81625,7 +80285,7 @@ entities: pos: -63.5,-48.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18581 components: - type: Transform @@ -81633,7 +80293,7 @@ entities: pos: -64.5,-48.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18582 components: - type: Transform @@ -81641,7 +80301,7 @@ entities: pos: -65.5,-48.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18583 components: - type: Transform @@ -81649,7 +80309,7 @@ entities: pos: -66.5,-48.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18584 components: - type: Transform @@ -81657,7 +80317,7 @@ entities: pos: -67.5,-48.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18585 components: - type: Transform @@ -81665,7 +80325,7 @@ entities: pos: -68.5,-49.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18586 components: - type: Transform @@ -81673,7 +80333,7 @@ entities: pos: -68.5,-50.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18587 components: - type: Transform @@ -81681,7 +80341,7 @@ entities: pos: -68.5,-51.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18588 components: - type: Transform @@ -81689,7 +80349,7 @@ entities: pos: -68.5,-52.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18589 components: - type: Transform @@ -81697,7 +80357,7 @@ entities: pos: -68.5,-53.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18590 components: - type: Transform @@ -81705,7 +80365,7 @@ entities: pos: -68.5,-54.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18592 components: - type: Transform @@ -81713,7 +80373,7 @@ entities: pos: -68.5,-56.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18593 components: - type: Transform @@ -81721,7 +80381,7 @@ entities: pos: -68.5,-57.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18594 components: - type: Transform @@ -81729,7 +80389,7 @@ entities: pos: -68.5,-59.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18595 components: - type: Transform @@ -81737,7 +80397,7 @@ entities: pos: -68.5,-58.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18596 components: - type: Transform @@ -81745,7 +80405,7 @@ entities: pos: -67.5,-60.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18597 components: - type: Transform @@ -81753,7 +80413,7 @@ entities: pos: -66.5,-60.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18598 components: - type: Transform @@ -81761,7 +80421,7 @@ entities: pos: -65.5,-60.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18600 components: - type: Transform @@ -81769,15 +80429,7 @@ entities: pos: -63.5,-60.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 18601 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -62.5,-60.5 - parent: 30 - - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18602 components: - type: Transform @@ -81785,7 +80437,7 @@ entities: pos: -61.5,-60.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18605 components: - type: Transform @@ -81793,7 +80445,7 @@ entities: pos: -58.5,-60.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18606 components: - type: Transform @@ -81801,7 +80453,7 @@ entities: pos: -57.5,-60.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18607 components: - type: Transform @@ -81809,7 +80461,7 @@ entities: pos: -56.5,-60.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18617 components: - type: Transform @@ -81817,7 +80469,7 @@ entities: pos: -61.5,-47.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18619 components: - type: Transform @@ -81825,7 +80477,7 @@ entities: pos: -60.5,-46.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18620 components: - type: Transform @@ -81833,7 +80485,7 @@ entities: pos: -59.5,-46.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18622 components: - type: Transform @@ -81841,7 +80493,7 @@ entities: pos: -58.5,-45.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18624 components: - type: Transform @@ -81849,7 +80501,7 @@ entities: pos: -58.5,-43.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18625 components: - type: Transform @@ -81857,7 +80509,7 @@ entities: pos: -58.5,-42.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18626 components: - type: Transform @@ -81865,7 +80517,7 @@ entities: pos: -58.5,-41.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18627 components: - type: Transform @@ -81873,7 +80525,7 @@ entities: pos: -58.5,-40.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18628 components: - type: Transform @@ -81881,7 +80533,7 @@ entities: pos: -58.5,-39.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18631 components: - type: Transform @@ -81889,7 +80541,7 @@ entities: pos: -62.5,-46.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18632 components: - type: Transform @@ -81897,7 +80549,7 @@ entities: pos: -63.5,-46.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18633 components: - type: Transform @@ -81905,7 +80557,7 @@ entities: pos: -64.5,-46.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18634 components: - type: Transform @@ -81913,7 +80565,7 @@ entities: pos: -65.5,-46.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18635 components: - type: Transform @@ -81921,7 +80573,7 @@ entities: pos: -66.5,-46.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18638 components: - type: Transform @@ -81929,7 +80581,7 @@ entities: pos: -69.5,-46.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18639 components: - type: Transform @@ -81937,7 +80589,7 @@ entities: pos: -70.5,-46.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18640 components: - type: Transform @@ -81945,7 +80597,7 @@ entities: pos: -71.5,-46.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18641 components: - type: Transform @@ -81953,7 +80605,7 @@ entities: pos: -72.5,-46.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18642 components: - type: Transform @@ -81961,7 +80613,7 @@ entities: pos: -73.5,-46.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18643 components: - type: Transform @@ -81969,7 +80621,7 @@ entities: pos: -74.5,-46.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18645 components: - type: Transform @@ -81977,7 +80629,7 @@ entities: pos: -76.5,-46.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18646 components: - type: Transform @@ -81985,7 +80637,7 @@ entities: pos: -77.5,-46.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18647 components: - type: Transform @@ -81993,7 +80645,7 @@ entities: pos: -78.5,-46.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18649 components: - type: Transform @@ -82001,7 +80653,7 @@ entities: pos: -79.5,-45.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18650 components: - type: Transform @@ -82009,7 +80661,7 @@ entities: pos: -79.5,-44.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18651 components: - type: Transform @@ -82017,7 +80669,7 @@ entities: pos: -79.5,-43.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18652 components: - type: Transform @@ -82025,7 +80677,7 @@ entities: pos: -79.5,-42.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18653 components: - type: Transform @@ -82033,7 +80685,7 @@ entities: pos: -79.5,-41.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18654 components: - type: Transform @@ -82041,28 +80693,28 @@ entities: pos: -79.5,-40.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18656 components: - type: Transform pos: -75.5,-45.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18657 components: - type: Transform pos: -75.5,-44.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18659 components: - type: Transform pos: -75.5,-42.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18660 components: - type: Transform @@ -82070,7 +80722,7 @@ entities: pos: -76.5,-43.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18664 components: - type: Transform @@ -82078,7 +80730,7 @@ entities: pos: -67.5,-45.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18665 components: - type: Transform @@ -82086,7 +80738,7 @@ entities: pos: -67.5,-44.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18666 components: - type: Transform @@ -82094,7 +80746,7 @@ entities: pos: -67.5,-43.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18669 components: - type: Transform @@ -82102,7 +80754,7 @@ entities: pos: -56.5,-48.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18670 components: - type: Transform @@ -82110,7 +80762,7 @@ entities: pos: -56.5,-47.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18671 components: - type: Transform @@ -82118,7 +80770,7 @@ entities: pos: -56.5,-46.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18672 components: - type: Transform @@ -82126,7 +80778,7 @@ entities: pos: -55.5,-47.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18673 components: - type: Transform @@ -82134,7 +80786,7 @@ entities: pos: -55.5,-46.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18680 components: - type: Transform @@ -82142,7 +80794,7 @@ entities: pos: -54.5,-52.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18681 components: - type: Transform @@ -82150,7 +80802,7 @@ entities: pos: -53.5,-52.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18682 components: - type: Transform @@ -82158,7 +80810,7 @@ entities: pos: -55.5,-53.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18683 components: - type: Transform @@ -82166,7 +80818,7 @@ entities: pos: -54.5,-53.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18684 components: - type: Transform @@ -82174,7 +80826,7 @@ entities: pos: -53.5,-53.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18685 components: - type: Transform @@ -82182,7 +80834,7 @@ entities: pos: -54.5,-56.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18686 components: - type: Transform @@ -82190,7 +80842,7 @@ entities: pos: -53.5,-56.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18687 components: - type: Transform @@ -82198,7 +80850,7 @@ entities: pos: -54.5,-57.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18688 components: - type: Transform @@ -82206,7 +80858,7 @@ entities: pos: -53.5,-57.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18689 components: - type: Transform @@ -82214,7 +80866,7 @@ entities: pos: -55.5,-57.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18690 components: - type: Transform @@ -82222,7 +80874,7 @@ entities: pos: -55.5,-54.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18701 components: - type: Transform @@ -82230,7 +80882,7 @@ entities: pos: -69.5,-60.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18702 components: - type: Transform @@ -82238,7 +80890,7 @@ entities: pos: -70.5,-60.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18703 components: - type: Transform @@ -82246,7 +80898,7 @@ entities: pos: -71.5,-60.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18705 components: - type: Transform @@ -82254,7 +80906,7 @@ entities: pos: -68.5,-59.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18706 components: - type: Transform @@ -82262,7 +80914,7 @@ entities: pos: -69.5,-59.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18707 components: - type: Transform @@ -82270,7 +80922,7 @@ entities: pos: -70.5,-59.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18708 components: - type: Transform @@ -82278,7 +80930,7 @@ entities: pos: -71.5,-59.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18709 components: - type: Transform @@ -82286,7 +80938,7 @@ entities: pos: -72.5,-59.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18710 components: - type: Transform @@ -82294,7 +80946,7 @@ entities: pos: -73.5,-60.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18712 components: - type: Transform @@ -82302,7 +80954,7 @@ entities: pos: -75.5,-60.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18713 components: - type: Transform @@ -82310,7 +80962,7 @@ entities: pos: -76.5,-60.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18714 components: - type: Transform @@ -82318,7 +80970,7 @@ entities: pos: -77.5,-60.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18715 components: - type: Transform @@ -82326,7 +80978,7 @@ entities: pos: -78.5,-60.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18716 components: - type: Transform @@ -82334,7 +80986,7 @@ entities: pos: -79.5,-60.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18718 components: - type: Transform @@ -82342,7 +80994,7 @@ entities: pos: -81.5,-60.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18719 components: - type: Transform @@ -82350,7 +81002,7 @@ entities: pos: -82.5,-60.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18721 components: - type: Transform @@ -82358,7 +81010,7 @@ entities: pos: -76.5,-59.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18722 components: - type: Transform @@ -82366,7 +81018,7 @@ entities: pos: -74.5,-59.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18723 components: - type: Transform @@ -82374,7 +81026,7 @@ entities: pos: -73.5,-59.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18724 components: - type: Transform @@ -82382,7 +81034,7 @@ entities: pos: -72.5,-60.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18725 components: - type: Transform @@ -82390,7 +81042,7 @@ entities: pos: -77.5,-59.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18726 components: - type: Transform @@ -82398,7 +81050,7 @@ entities: pos: -78.5,-59.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18727 components: - type: Transform @@ -82406,7 +81058,7 @@ entities: pos: -79.5,-59.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18728 components: - type: Transform @@ -82414,7 +81066,7 @@ entities: pos: -75.5,-60.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18735 components: - type: Transform @@ -82422,7 +81074,7 @@ entities: pos: -68.5,-54.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18736 components: - type: Transform @@ -82430,7 +81082,7 @@ entities: pos: -69.5,-54.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18737 components: - type: Transform @@ -82438,7 +81090,7 @@ entities: pos: -70.5,-54.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18738 components: - type: Transform @@ -82446,7 +81098,7 @@ entities: pos: -71.5,-54.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18740 components: - type: Transform @@ -82454,7 +81106,7 @@ entities: pos: -73.5,-54.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18741 components: - type: Transform @@ -82462,7 +81114,7 @@ entities: pos: -74.5,-54.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18742 components: - type: Transform @@ -82470,7 +81122,7 @@ entities: pos: -75.5,-54.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18746 components: - type: Transform @@ -82478,7 +81130,7 @@ entities: pos: -69.5,-55.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18747 components: - type: Transform @@ -82486,7 +81138,7 @@ entities: pos: -70.5,-55.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18749 components: - type: Transform @@ -82494,7 +81146,7 @@ entities: pos: -72.5,-55.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18750 components: - type: Transform @@ -82502,7 +81154,7 @@ entities: pos: -73.5,-55.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18751 components: - type: Transform @@ -82510,7 +81162,7 @@ entities: pos: -74.5,-55.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18752 components: - type: Transform @@ -82518,7 +81170,7 @@ entities: pos: -75.5,-55.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18755 components: - type: Transform @@ -82526,7 +81178,7 @@ entities: pos: -71.5,-54.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18760 components: - type: Transform @@ -82534,102 +81186,41 @@ entities: parent: 30 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 18761 - components: - - type: Transform - pos: -59.5,-62.5 - parent: 30 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 18762 - components: - - type: Transform - pos: -59.5,-63.5 - parent: 30 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 18764 - components: - - type: Transform - pos: -58.5,-60.5 - parent: 30 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 18765 - components: - - type: Transform - pos: -58.5,-61.5 - parent: 30 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 18766 - components: - - type: Transform - pos: -58.5,-62.5 - parent: 30 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 18767 - components: - - type: Transform - pos: -58.5,-63.5 - parent: 30 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 18768 - components: - - type: Transform - pos: -58.5,-64.5 - parent: 30 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 18771 - components: - - type: Transform - pos: -64.5,-61.5 - parent: 30 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 18773 - components: - - type: Transform - pos: -64.5,-63.5 - parent: 30 - uid: 20329 components: - type: Transform pos: 4.5,-3.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 20330 components: - type: Transform pos: 4.5,-4.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 20331 components: - type: Transform pos: 4.5,-5.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 20332 components: - type: Transform pos: 4.5,-6.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 20333 components: - type: Transform pos: 4.5,-7.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 21264 components: - type: Transform @@ -82637,7 +81228,7 @@ entities: pos: 22.5,-18.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 21265 components: - type: Transform @@ -82645,7 +81236,7 @@ entities: pos: 23.5,-18.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 21266 components: - type: Transform @@ -82653,7 +81244,7 @@ entities: pos: 24.5,-18.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 21267 components: - type: Transform @@ -82661,7 +81252,7 @@ entities: pos: 25.5,-18.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 21268 components: - type: Transform @@ -82669,7 +81260,7 @@ entities: pos: 26.5,-18.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 21271 components: - type: Transform @@ -82677,7 +81268,7 @@ entities: pos: 27.5,-19.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 21272 components: - type: Transform @@ -82685,7 +81276,7 @@ entities: pos: 26.5,-20.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 21273 components: - type: Transform @@ -82693,28 +81284,28 @@ entities: pos: 25.5,-20.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 21546 components: - type: Transform pos: 39.5,37.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 21547 components: - type: Transform pos: 39.5,36.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 21548 components: - type: Transform pos: 39.5,35.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 21550 components: - type: Transform @@ -82722,7 +81313,7 @@ entities: pos: 43.5,36.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 21551 components: - type: Transform @@ -82730,7 +81321,7 @@ entities: pos: 43.5,37.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 21552 components: - type: Transform @@ -82738,7 +81329,7 @@ entities: pos: 43.5,38.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 21987 components: - type: Transform @@ -82746,7 +81337,7 @@ entities: pos: -0.5,38.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 21988 components: - type: Transform @@ -82754,7 +81345,7 @@ entities: pos: -0.5,39.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 21989 components: - type: Transform @@ -82762,7 +81353,7 @@ entities: pos: -0.5,40.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 21990 components: - type: Transform @@ -82770,7 +81361,7 @@ entities: pos: -0.5,41.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 21991 components: - type: Transform @@ -82778,7 +81369,7 @@ entities: pos: -0.5,42.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 21992 components: - type: Transform @@ -82786,7 +81377,7 @@ entities: pos: -0.5,43.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 21993 components: - type: Transform @@ -82794,7 +81385,7 @@ entities: pos: -0.5,44.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 21994 components: - type: Transform @@ -82802,7 +81393,7 @@ entities: pos: -0.5,45.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 21995 components: - type: Transform @@ -82810,7 +81401,7 @@ entities: pos: -0.5,46.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 21996 components: - type: Transform @@ -82818,7 +81409,7 @@ entities: pos: -0.5,47.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 21997 components: - type: Transform @@ -82826,7 +81417,7 @@ entities: pos: -0.5,48.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 21998 components: - type: Transform @@ -82834,7 +81425,7 @@ entities: pos: -0.5,49.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 21999 components: - type: Transform @@ -82842,7 +81433,7 @@ entities: pos: -0.5,50.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 22000 components: - type: Transform @@ -82850,7 +81441,7 @@ entities: pos: -0.5,51.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 22001 components: - type: Transform @@ -82858,7 +81449,7 @@ entities: pos: -0.5,52.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 22002 components: - type: Transform @@ -82866,7 +81457,7 @@ entities: pos: -0.5,53.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 22003 components: - type: Transform @@ -82874,7 +81465,7 @@ entities: pos: -0.5,54.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 22004 components: - type: Transform @@ -82882,7 +81473,7 @@ entities: pos: -0.5,55.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 22005 components: - type: Transform @@ -82890,7 +81481,7 @@ entities: pos: -0.5,56.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 22006 components: - type: Transform @@ -82898,7 +81489,7 @@ entities: pos: -0.5,57.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 22007 components: - type: Transform @@ -82906,7 +81497,7 @@ entities: pos: -0.5,58.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 22008 components: - type: Transform @@ -82914,7 +81505,7 @@ entities: pos: -0.5,59.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 22009 components: - type: Transform @@ -82922,7 +81513,7 @@ entities: pos: -0.5,60.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 22010 components: - type: Transform @@ -82930,7 +81521,7 @@ entities: pos: -0.5,61.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 22011 components: - type: Transform @@ -82938,7 +81529,7 @@ entities: pos: -0.5,62.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 22012 components: - type: Transform @@ -82946,7 +81537,7 @@ entities: pos: -0.5,63.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 22013 components: - type: Transform @@ -82954,316 +81545,106 @@ entities: pos: -0.5,64.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 22015 components: - type: Transform pos: -0.5,66.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 22016 components: - type: Transform pos: -0.5,67.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 22017 components: - type: Transform pos: -0.5,68.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 22018 components: - type: Transform pos: -0.5,69.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 22019 components: - type: Transform pos: -0.5,70.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 22020 components: - type: Transform pos: -0.5,71.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 22021 components: - type: Transform pos: -0.5,72.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 22022 components: - type: Transform pos: -0.5,73.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 22267 components: - type: Transform pos: 43.5,11.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 22268 components: - type: Transform pos: 43.5,12.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 22269 components: - type: Transform pos: 43.5,13.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 22270 components: - type: Transform pos: 43.5,14.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 22271 components: - type: Transform pos: 43.5,15.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 22769 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-48.5 - parent: 30 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 22770 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-49.5 - parent: 30 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 22771 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-50.5 - parent: 30 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 22772 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-51.5 - parent: 30 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 22773 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-52.5 - parent: 30 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 22774 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-53.5 - parent: 30 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 22775 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-54.5 - parent: 30 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 22776 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-55.5 - parent: 30 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 22777 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-56.5 - parent: 30 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 22778 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-57.5 - parent: 30 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 22779 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,-58.5 - parent: 30 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 22780 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,-58.5 - parent: 30 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 22781 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,-58.5 - parent: 30 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 22782 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,-58.5 - parent: 30 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 22783 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,-58.5 - parent: 30 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 22784 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,-58.5 - parent: 30 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 22785 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,-58.5 - parent: 30 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 22786 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,-58.5 - parent: 30 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 22789 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,-59.5 - parent: 30 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 22790 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,-60.5 - parent: 30 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 22791 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,-60.5 - parent: 30 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 22792 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,-60.5 - parent: 30 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 22793 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,-60.5 - parent: 30 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 22794 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -35.5,-60.5 - parent: 30 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 22796 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -29.5,-58.5 - parent: 30 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 22797 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,-58.5 - parent: 30 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 22798 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,-58.5 - parent: 30 - - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - proto: GasPipeTJunction entities: + - uid: 336 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -53.5,-63.5 + parent: 30 - uid: 924 components: - type: Transform @@ -83271,17 +81652,7 @@ entities: pos: -45.5,-5.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 925 - components: - - type: Transform - anchored: False - rot: -1.5707963267948966 rad - pos: -11.5,-56.5 - parent: 30 - - type: Physics - canCollide: True - bodyType: Dynamic + color: '#FF0000FF' - uid: 962 components: - type: Transform @@ -83289,14 +81660,7 @@ entities: pos: -45.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1938 - components: - - type: Transform - pos: -5.5,-49.5 - parent: 30 - - type: AtmosPipeColor - color: '#03FCD3FF' + color: '#FF0000FF' - uid: 2431 components: - type: Transform @@ -83304,7 +81668,7 @@ entities: pos: -34.5,35.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2440 components: - type: Transform @@ -83312,7 +81676,7 @@ entities: pos: -34.5,31.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2441 components: - type: Transform @@ -83320,7 +81684,7 @@ entities: pos: -36.5,32.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2442 components: - type: Transform @@ -83328,28 +81692,28 @@ entities: pos: -34.5,36.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2456 components: - type: Transform pos: -42.5,37.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2458 components: - type: Transform pos: -41.5,37.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2459 components: - type: Transform pos: -41.5,35.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2463 components: - type: Transform @@ -83357,7 +81721,7 @@ entities: pos: -45.5,35.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2496 components: - type: Transform @@ -83365,7 +81729,7 @@ entities: pos: -36.5,40.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2497 components: - type: Transform @@ -83373,28 +81737,28 @@ entities: pos: -34.5,39.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2507 components: - type: Transform pos: -36.5,44.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2508 components: - type: Transform pos: -34.5,42.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2509 components: - type: Transform pos: -35.5,44.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2510 components: - type: Transform @@ -83402,7 +81766,7 @@ entities: pos: -33.5,42.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2512 components: - type: Transform @@ -83410,7 +81774,7 @@ entities: pos: -33.5,44.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2513 components: - type: Transform @@ -83418,7 +81782,7 @@ entities: pos: -31.5,42.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2519 components: - type: Transform @@ -83426,7 +81790,7 @@ entities: pos: -33.5,46.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2520 components: - type: Transform @@ -83434,7 +81798,7 @@ entities: pos: -31.5,46.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2521 components: - type: Transform @@ -83442,7 +81806,7 @@ entities: pos: -31.5,48.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2527 components: - type: Transform @@ -83450,7 +81814,7 @@ entities: pos: -33.5,47.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2532 components: - type: Transform @@ -83458,7 +81822,7 @@ entities: pos: -38.5,47.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2542 components: - type: Transform @@ -83466,7 +81830,7 @@ entities: pos: -40.5,48.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2553 components: - type: Transform @@ -83474,7 +81838,7 @@ entities: pos: -31.5,49.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2554 components: - type: Transform @@ -83482,49 +81846,49 @@ entities: pos: -33.5,51.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2582 components: - type: Transform pos: -34.5,53.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2583 components: - type: Transform pos: -30.5,53.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2596 components: - type: Transform pos: -38.5,42.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2597 components: - type: Transform pos: -40.5,44.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2598 components: - type: Transform pos: -42.5,42.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2599 components: - type: Transform pos: -44.5,44.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2600 components: - type: Transform @@ -83532,7 +81896,7 @@ entities: pos: -46.5,42.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2601 components: - type: Transform @@ -83540,7 +81904,7 @@ entities: pos: -48.5,44.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2619 components: - type: Transform @@ -83548,14 +81912,14 @@ entities: pos: -41.5,42.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2628 components: - type: Transform pos: -43.5,44.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2654 components: - type: Transform @@ -83563,7 +81927,7 @@ entities: pos: -48.5,50.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2658 components: - type: Transform @@ -83571,7 +81935,7 @@ entities: pos: -48.5,51.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2659 components: - type: Transform @@ -83579,7 +81943,7 @@ entities: pos: -46.5,52.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2662 components: - type: Transform @@ -83587,7 +81951,7 @@ entities: pos: -46.5,49.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2667 components: - type: Transform @@ -83595,7 +81959,7 @@ entities: pos: -48.5,56.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2668 components: - type: Transform @@ -83603,7 +81967,7 @@ entities: pos: -46.5,56.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2677 components: - type: Transform @@ -83611,7 +81975,7 @@ entities: pos: -46.5,57.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2688 components: - type: Transform @@ -83619,7 +81983,7 @@ entities: pos: -50.5,61.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2689 components: - type: Transform @@ -83627,14 +81991,14 @@ entities: pos: -46.5,61.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2709 components: - type: Transform pos: -48.5,58.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2717 components: - type: Transform @@ -83642,7 +82006,7 @@ entities: pos: -51.5,60.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2718 components: - type: Transform @@ -83650,14 +82014,14 @@ entities: pos: -47.5,60.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2729 components: - type: Transform pos: -48.5,64.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2750 components: - type: Transform @@ -83665,7 +82029,7 @@ entities: pos: -36.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2753 components: - type: Transform @@ -83673,7 +82037,7 @@ entities: pos: -36.5,24.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2760 components: - type: Transform @@ -83681,7 +82045,7 @@ entities: pos: -36.5,17.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2762 components: - type: Transform @@ -83689,7 +82053,7 @@ entities: pos: -36.5,15.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2767 components: - type: Transform @@ -83697,7 +82061,7 @@ entities: pos: -34.5,9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2777 components: - type: Transform @@ -83705,7 +82069,7 @@ entities: pos: -34.5,1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2779 components: - type: Transform @@ -83713,7 +82077,7 @@ entities: pos: -32.5,1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2786 components: - type: Transform @@ -83721,7 +82085,7 @@ entities: pos: -27.5,1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2788 components: - type: Transform @@ -83729,7 +82093,7 @@ entities: pos: -21.5,3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2796 components: - type: Transform @@ -83737,28 +82101,28 @@ entities: pos: -17.5,1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2802 components: - type: Transform pos: -8.5,3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2812 components: - type: Transform pos: 1.5,3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2814 components: - type: Transform pos: 3.5,3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2819 components: - type: Transform @@ -83766,7 +82130,7 @@ entities: pos: 8.5,3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2831 components: - type: Transform @@ -83774,7 +82138,7 @@ entities: pos: 10.5,14.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2833 components: - type: Transform @@ -83782,7 +82146,7 @@ entities: pos: 10.5,15.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2842 components: - type: Transform @@ -83790,7 +82154,7 @@ entities: pos: 8.5,26.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2851 components: - type: Transform @@ -83798,14 +82162,14 @@ entities: pos: 3.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2854 components: - type: Transform pos: -2.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2857 components: - type: Transform @@ -83813,7 +82177,7 @@ entities: pos: -4.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2866 components: - type: Transform @@ -83821,7 +82185,7 @@ entities: pos: -14.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2871 components: - type: Transform @@ -83829,21 +82193,21 @@ entities: pos: -23.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2873 components: - type: Transform pos: -21.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2879 components: - type: Transform pos: -27.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2888 components: - type: Transform @@ -83851,7 +82215,7 @@ entities: pos: -34.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2893 components: - type: Transform @@ -83859,7 +82223,7 @@ entities: pos: -34.5,26.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2899 components: - type: Transform @@ -83867,7 +82231,7 @@ entities: pos: -34.5,19.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2905 components: - type: Transform @@ -83875,7 +82239,7 @@ entities: pos: -34.5,13.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2913 components: - type: Transform @@ -83883,21 +82247,21 @@ entities: pos: -34.5,5.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2919 components: - type: Transform pos: -31.5,3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2924 components: - type: Transform pos: -24.5,3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2932 components: - type: Transform @@ -83905,21 +82269,21 @@ entities: pos: -19.5,1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2935 components: - type: Transform pos: -14.5,3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2941 components: - type: Transform pos: -6.5,3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2962 components: - type: Transform @@ -83927,7 +82291,7 @@ entities: pos: 10.5,1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2975 components: - type: Transform @@ -83935,7 +82299,7 @@ entities: pos: 8.5,15.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2985 components: - type: Transform @@ -83943,21 +82307,21 @@ entities: pos: 10.5,24.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2994 components: - type: Transform pos: 0.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2997 components: - type: Transform pos: -0.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3000 components: - type: Transform @@ -83965,7 +82329,7 @@ entities: pos: -3.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3012 components: - type: Transform @@ -83973,28 +82337,28 @@ entities: pos: -15.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3019 components: - type: Transform pos: -22.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3020 components: - type: Transform pos: -19.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3022 components: - type: Transform pos: -26.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3023 components: - type: Transform @@ -84002,14 +82366,14 @@ entities: pos: -25.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3027 components: - type: Transform pos: -30.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3084 components: - type: Transform @@ -84017,28 +82381,28 @@ entities: pos: -42.5,5.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3087 components: - type: Transform pos: -41.5,7.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3091 components: - type: Transform pos: -39.5,5.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3093 components: - type: Transform pos: -39.5,7.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3097 components: - type: Transform @@ -84046,14 +82410,14 @@ entities: pos: -44.5,5.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3098 components: - type: Transform pos: -45.5,7.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3120 components: - type: Transform @@ -84061,19 +82425,7 @@ entities: pos: -51.5,9.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 3130 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-57.5 - parent: 30 - - uid: 3131 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-56.5 - parent: 30 + color: '#FF0000FF' - uid: 3134 components: - type: Transform @@ -84081,7 +82433,7 @@ entities: pos: -52.5,10.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3137 components: - type: Transform @@ -84089,7 +82441,7 @@ entities: pos: -44.5,4.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3138 components: - type: Transform @@ -84097,7 +82449,7 @@ entities: pos: -45.5,6.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3154 components: - type: Transform @@ -84105,7 +82457,7 @@ entities: pos: -44.5,-2.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3213 components: - type: Transform @@ -84113,7 +82465,7 @@ entities: pos: -44.5,-8.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3241 components: - type: Transform @@ -84121,7 +82473,7 @@ entities: pos: -44.5,13.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3245 components: - type: Transform @@ -84129,7 +82481,7 @@ entities: pos: -43.5,13.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3246 components: - type: Transform @@ -84137,14 +82489,14 @@ entities: pos: -42.5,15.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3255 components: - type: Transform pos: -41.5,15.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3268 components: - type: Transform @@ -84152,7 +82504,7 @@ entities: pos: -49.5,15.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3275 components: - type: Transform @@ -84160,14 +82512,14 @@ entities: pos: -50.5,13.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3278 components: - type: Transform pos: -52.5,13.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3283 components: - type: Transform @@ -84175,7 +82527,7 @@ entities: pos: -57.5,13.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3284 components: - type: Transform @@ -84183,7 +82535,7 @@ entities: pos: -57.5,15.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3285 components: - type: Transform @@ -84191,7 +82543,7 @@ entities: pos: -57.5,21.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3294 components: - type: Transform @@ -84199,7 +82551,7 @@ entities: pos: -57.5,18.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3306 components: - type: Transform @@ -84207,22 +82559,14 @@ entities: pos: -49.5,16.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3333 components: - type: Transform pos: -19.5,6.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3348 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,10.5 - parent: 30 - - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3349 components: - type: Transform @@ -84230,14 +82574,14 @@ entities: pos: -23.5,9.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3353 components: - type: Transform pos: -21.5,7.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3381 components: - type: Transform @@ -84245,7 +82589,7 @@ entities: pos: -17.5,7.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3388 components: - type: Transform @@ -84253,7 +82597,7 @@ entities: pos: -16.5,10.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3397 components: - type: Transform @@ -84261,7 +82605,7 @@ entities: pos: -17.5,13.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3399 components: - type: Transform @@ -84269,7 +82613,7 @@ entities: pos: -16.5,14.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3404 components: - type: Transform @@ -84283,7 +82627,7 @@ entities: pos: -3.5,7.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3420 components: - type: Transform @@ -84291,21 +82635,21 @@ entities: pos: -1.5,7.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3423 components: - type: Transform pos: -3.5,13.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3424 components: - type: Transform pos: -1.5,14.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3442 components: - type: Transform @@ -84313,21 +82657,21 @@ entities: pos: -4.5,13.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3452 components: - type: Transform pos: -0.5,14.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3458 components: - type: Transform pos: -8.5,14.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3459 components: - type: Transform @@ -84335,7 +82679,7 @@ entities: pos: -10.5,13.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3460 components: - type: Transform @@ -84343,7 +82687,7 @@ entities: pos: -9.5,14.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3461 components: - type: Transform @@ -84351,13 +82695,7 @@ entities: pos: -12.5,13.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5444 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-58.5 - parent: 30 + color: '#FF0000FF' - uid: 5857 components: - type: Transform @@ -84377,14 +82715,14 @@ entities: pos: -8.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6111 components: - type: Transform pos: -10.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6132 components: - type: Transform @@ -84392,7 +82730,7 @@ entities: pos: -14.5,36.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6140 components: - type: Transform @@ -84400,21 +82738,21 @@ entities: pos: -4.5,32.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6151 components: - type: Transform pos: -11.5,40.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6153 components: - type: Transform pos: -9.5,40.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6170 components: - type: Transform @@ -84422,7 +82760,7 @@ entities: pos: -15.5,37.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6172 components: - type: Transform @@ -84430,7 +82768,7 @@ entities: pos: -15.5,39.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6179 components: - type: Transform @@ -84438,7 +82776,7 @@ entities: pos: -3.5,31.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6185 components: - type: Transform @@ -84446,7 +82784,7 @@ entities: pos: -3.5,37.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6193 components: - type: Transform @@ -84454,7 +82792,7 @@ entities: pos: -9.5,42.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6199 components: - type: Transform @@ -84462,14 +82800,14 @@ entities: pos: -7.5,41.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6234 components: - type: Transform pos: -20.5,37.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6240 components: - type: Transform @@ -84477,14 +82815,14 @@ entities: pos: -20.5,36.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6252 components: - type: Transform pos: -19.5,35.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6254 components: - type: Transform @@ -84492,7 +82830,7 @@ entities: pos: -21.5,35.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6261 components: - type: Transform @@ -84500,29 +82838,14 @@ entities: pos: -26.5,37.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6600 - components: - - type: Transform - pos: -11.5,-53.5 - parent: 30 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6601 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-52.5 - parent: 30 - - type: AtmosPipeColor - color: '#03FCD3FF' + color: '#FF0000FF' - uid: 6666 components: - type: Transform pos: -30.5,-16.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6687 components: - type: Transform @@ -84530,7 +82853,7 @@ entities: pos: -17.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6713 components: - type: Transform @@ -84538,7 +82861,7 @@ entities: pos: -13.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6933 components: - type: Transform @@ -84546,7 +82869,7 @@ entities: pos: -18.5,-10.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 7014 components: - type: Transform @@ -84554,7 +82877,7 @@ entities: pos: -23.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 7044 components: - type: Transform @@ -84562,14 +82885,14 @@ entities: pos: -19.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 7045 components: - type: Transform pos: -22.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 7058 components: - type: Transform @@ -84577,64 +82900,28 @@ entities: pos: -30.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 7061 components: - type: Transform pos: -19.5,-10.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 7074 components: - type: Transform pos: -20.5,-10.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7096 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-57.5 - parent: 30 - - uid: 7097 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-58.5 - parent: 30 - - uid: 7124 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-52.5 - parent: 30 - - type: AtmosPipeColor - color: '#03FCD3FF' + color: '#FF0000FF' - uid: 7147 components: - type: Transform pos: -28.5,-17.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7223 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-49.5 - parent: 30 - - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 7228 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,-51.5 - parent: 30 - - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 7310 components: - type: Transform @@ -84642,7 +82929,7 @@ entities: pos: -8.5,-3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 7311 components: - type: Transform @@ -84650,7 +82937,7 @@ entities: pos: -3.5,-3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 7321 components: - type: Transform @@ -84658,7 +82945,7 @@ entities: pos: -1.5,-2.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 7322 components: - type: Transform @@ -84666,7 +82953,7 @@ entities: pos: -10.5,-2.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 7323 components: - type: Transform @@ -84674,7 +82961,7 @@ entities: pos: -2.5,-2.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 7337 components: - type: Transform @@ -84682,7 +82969,7 @@ entities: pos: -11.5,-3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 7338 components: - type: Transform @@ -84690,21 +82977,21 @@ entities: pos: -12.5,-2.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 7351 components: - type: Transform pos: -18.5,1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 7374 components: - type: Transform pos: -7.5,-10.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 7534 components: - type: Transform @@ -84712,14 +82999,14 @@ entities: pos: -17.5,-2.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 7545 components: - type: Transform pos: -23.5,-10.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 7593 components: - type: Transform @@ -84733,7 +83020,7 @@ entities: pos: -29.5,-18.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 7819 components: - type: Transform @@ -84741,14 +83028,14 @@ entities: pos: -28.5,-21.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 7878 components: - type: Transform pos: -13.5,-10.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 7886 components: - type: Transform @@ -84756,7 +83043,7 @@ entities: pos: -12.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 7924 components: - type: Transform @@ -84764,7 +83051,7 @@ entities: pos: -22.5,-21.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 7926 components: - type: Transform @@ -84772,7 +83059,7 @@ entities: pos: -22.5,-15.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 7946 components: - type: Transform @@ -84780,14 +83067,14 @@ entities: pos: -25.5,-17.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 7948 components: - type: Transform pos: -29.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 7949 components: - type: Transform @@ -84795,7 +83082,7 @@ entities: pos: -28.5,-10.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 7961 components: - type: Transform @@ -84803,7 +83090,7 @@ entities: pos: -17.5,-5.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8018 components: - type: Transform @@ -84811,7 +83098,7 @@ entities: pos: -20.5,-20.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8028 components: - type: Transform @@ -84819,7 +83106,7 @@ entities: pos: -22.5,-16.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8089 components: - type: Transform @@ -84827,14 +83114,14 @@ entities: pos: -30.5,-7.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8104 components: - type: Transform pos: -21.5,-17.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8107 components: - type: Transform @@ -84842,46 +83129,7 @@ entities: pos: -20.5,-17.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8234 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,-51.5 - parent: 30 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8235 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,-51.5 - parent: 30 - - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 8237 - components: - - type: Transform - pos: -9.5,-49.5 - parent: 30 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8239 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,-49.5 - parent: 30 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8269 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,-47.5 - parent: 30 - - type: AtmosPipeColor - color: '#0335FCFF' + color: '#FF0000FF' - uid: 8299 components: - type: Transform @@ -84889,7 +83137,14 @@ entities: pos: 20.5,-19.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' + - uid: 8360 + components: + - type: Transform + pos: -16.5,-41.5 + parent: 30 + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 8376 components: - type: Transform @@ -84897,7 +83152,23 @@ entities: pos: -1.5,37.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' + - uid: 8408 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,-40.5 + parent: 30 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8427 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-41.5 + parent: 30 + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 8790 components: - type: Transform @@ -84905,14 +83176,21 @@ entities: pos: 20.5,-21.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' + - uid: 8820 + components: + - type: Transform + pos: -21.5,-41.5 + parent: 30 + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 8853 components: - type: Transform pos: -2.5,-3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8872 components: - type: Transform @@ -84920,7 +83198,7 @@ entities: pos: 9.5,-20.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8876 components: - type: Transform @@ -84928,14 +83206,14 @@ entities: pos: 7.5,-24.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8877 components: - type: Transform pos: 2.5,-27.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8884 components: - type: Transform @@ -84943,7 +83221,7 @@ entities: pos: 11.5,-15.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8893 components: - type: Transform @@ -84951,7 +83229,7 @@ entities: pos: 9.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8901 components: - type: Transform @@ -84959,7 +83237,7 @@ entities: pos: 11.5,-6.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8903 components: - type: Transform @@ -84967,7 +83245,7 @@ entities: pos: 11.5,-4.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8912 components: - type: Transform @@ -84975,14 +83253,14 @@ entities: pos: 12.5,1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8919 components: - type: Transform pos: 4.5,-2.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8920 components: - type: Transform @@ -84990,21 +83268,21 @@ entities: pos: 6.5,-3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8936 components: - type: Transform pos: 5.5,-18.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8939 components: - type: Transform pos: 7.5,-20.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8940 components: - type: Transform @@ -85012,7 +83290,7 @@ entities: pos: 7.5,-18.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8947 components: - type: Transform @@ -85020,7 +83298,7 @@ entities: pos: 13.5,-17.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8957 components: - type: Transform @@ -85028,7 +83306,7 @@ entities: pos: 20.5,-7.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8960 components: - type: Transform @@ -85036,14 +83314,14 @@ entities: pos: 13.5,-4.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8968 components: - type: Transform pos: 9.5,3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8979 components: - type: Transform @@ -85051,7 +83329,7 @@ entities: pos: 7.5,-8.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 9085 components: - type: Transform @@ -85059,29 +83337,36 @@ entities: pos: 3.5,-3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 9658 + color: '#FF0000FF' + - uid: 9444 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,-52.5 + pos: -13.5,-30.5 parent: 30 - type: AtmosPipeColor - color: '#03FCD3FF' + color: '#FF0000FF' + - uid: 9446 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,-34.5 + parent: 30 + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 9689 components: - type: Transform pos: -25.5,-21.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 9694 components: - type: Transform pos: -25.5,-22.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 9697 components: - type: Transform @@ -85089,7 +83374,7 @@ entities: pos: -25.5,-16.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 9728 components: - type: Transform @@ -85097,7 +83382,7 @@ entities: pos: 2.5,-20.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 9744 components: - type: Transform @@ -85105,23 +83390,7 @@ entities: pos: -1.5,-26.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 9746 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-29.5 - parent: 30 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 9753 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-27.5 - parent: 30 - - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 9754 components: - type: Transform @@ -85129,14 +83398,14 @@ entities: pos: -3.5,-27.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 9763 components: - type: Transform pos: 4.5,-18.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 9774 components: - type: Transform @@ -85144,7 +83413,7 @@ entities: pos: 0.5,-34.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 9779 components: - type: Transform @@ -85152,7 +83421,7 @@ entities: pos: 2.5,-32.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 9847 components: - type: Transform @@ -85160,7 +83429,7 @@ entities: pos: -11.5,-10.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 9850 components: - type: Transform @@ -85168,22 +83437,93 @@ entities: pos: -29.5,-17.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 9867 + color: '#FF0000FF' + - uid: 9885 components: - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-53.5 + rot: 1.5707963267948966 rad + pos: -18.5,-48.5 parent: 30 - type: AtmosPipeColor - color: '#03FCD3FF' + color: '#0000FFFF' + - uid: 9896 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,-46.5 + parent: 30 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9918 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-35.5 + parent: 30 + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 9981 components: - type: Transform pos: 6.5,-27.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' + - uid: 9992 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-40.5 + parent: 30 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10137 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-31.5 + parent: 30 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 10160 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-40.5 + parent: 30 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10214 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-39.5 + parent: 30 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 10265 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,-43.5 + parent: 30 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 10266 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,-39.5 + parent: 30 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 10279 + components: + - type: Transform + pos: -1.5,-40.5 + parent: 30 + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 10388 components: - type: Transform @@ -85191,7 +83531,7 @@ entities: pos: 21.5,-17.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 10402 components: - type: Transform @@ -85199,68 +83539,29 @@ entities: pos: 21.5,-18.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11073 + color: '#FF0000FF' + - uid: 10430 components: - type: Transform - pos: -11.5,-39.5 + pos: -18.5,-43.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11080 + color: '#0000FFFF' + - uid: 10440 components: - type: Transform - pos: -3.5,-39.5 + rot: 1.5707963267948966 rad + pos: -11.5,-45.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11087 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-39.5 - parent: 30 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11122 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,-41.5 - parent: 30 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11132 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,-41.5 - parent: 30 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11138 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,-42.5 - parent: 30 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11140 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -19.5,-42.5 - parent: 30 - - type: AtmosPipeColor - color: '#0335FCFF' + color: '#FF0000FF' - uid: 11193 components: - type: Transform pos: 6.5,-23.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11694 components: - type: Transform @@ -85268,7 +83569,7 @@ entities: pos: 25.5,-11.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11746 components: - type: Transform @@ -85276,14 +83577,14 @@ entities: pos: 33.5,-3.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11763 components: - type: Transform pos: 24.5,-2.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11776 components: - type: Transform @@ -85291,7 +83592,7 @@ entities: pos: 6.5,-24.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11859 components: - type: Transform @@ -85299,7 +83600,7 @@ entities: pos: 24.5,-6.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11860 components: - type: Transform @@ -85307,7 +83608,7 @@ entities: pos: 26.5,-6.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11861 components: - type: Transform @@ -85315,7 +83616,7 @@ entities: pos: 25.5,-2.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11877 components: - type: Transform @@ -85323,7 +83624,7 @@ entities: pos: 21.5,-5.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11879 components: - type: Transform @@ -85331,7 +83632,7 @@ entities: pos: 20.5,-1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11904 components: - type: Transform @@ -85339,7 +83640,7 @@ entities: pos: 19.5,-11.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11934 components: - type: Transform @@ -85347,14 +83648,14 @@ entities: pos: 16.5,-11.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11935 components: - type: Transform pos: 17.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11936 components: - type: Transform @@ -85362,7 +83663,7 @@ entities: pos: 21.5,-11.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11950 components: - type: Transform @@ -85370,7 +83671,7 @@ entities: pos: 13.5,-7.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11968 components: - type: Transform @@ -85378,7 +83679,7 @@ entities: pos: 20.5,-2.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11999 components: - type: Transform @@ -85386,21 +83687,21 @@ entities: pos: 6.5,-25.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12018 components: - type: Transform pos: 24.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12020 components: - type: Transform pos: 33.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12062 components: - type: Transform @@ -85408,7 +83709,7 @@ entities: pos: 29.5,-6.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12472 components: - type: Transform @@ -85416,7 +83717,7 @@ entities: pos: 8.5,31.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12473 components: - type: Transform @@ -85424,21 +83725,21 @@ entities: pos: 10.5,33.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12488 components: - type: Transform pos: 10.5,39.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12503 components: - type: Transform pos: 16.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12513 components: - type: Transform @@ -85446,7 +83747,7 @@ entities: pos: 21.5,33.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12523 components: - type: Transform @@ -85454,7 +83755,7 @@ entities: pos: 18.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12528 components: - type: Transform @@ -85462,7 +83763,7 @@ entities: pos: 23.5,26.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12540 components: - type: Transform @@ -85470,7 +83771,7 @@ entities: pos: 23.5,34.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12542 components: - type: Transform @@ -85478,7 +83779,7 @@ entities: pos: 23.5,37.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12543 components: - type: Transform @@ -85486,14 +83787,14 @@ entities: pos: 21.5,39.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12544 components: - type: Transform pos: 23.5,40.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12545 components: - type: Transform @@ -85501,7 +83802,7 @@ entities: pos: 20.5,40.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12559 components: - type: Transform @@ -85509,7 +83810,7 @@ entities: pos: 24.5,36.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12582 components: - type: Transform @@ -85517,7 +83818,7 @@ entities: pos: 20.5,43.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12584 components: - type: Transform @@ -85525,7 +83826,7 @@ entities: pos: 25.5,40.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12599 components: - type: Transform @@ -85533,19 +83834,26 @@ entities: pos: 23.5,38.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12600 components: - type: Transform pos: 26.5,36.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12754 components: - type: Transform pos: 32.5,14.5 parent: 30 + - uid: 12835 + components: + - type: Transform + pos: -61.5,-59.5 + parent: 30 + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 12882 components: - type: Transform @@ -85553,14 +83861,14 @@ entities: pos: 23.5,18.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12885 components: - type: Transform pos: 28.5,20.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12940 components: - type: Transform @@ -85568,15 +83876,7 @@ entities: pos: 14.5,15.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12944 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,15.5 - parent: 30 - - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12951 components: - type: Transform @@ -85584,7 +83884,7 @@ entities: pos: 23.5,13.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12954 components: - type: Transform @@ -85592,14 +83892,14 @@ entities: pos: 23.5,10.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12963 components: - type: Transform pos: 28.5,8.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12989 components: - type: Transform @@ -85607,7 +83907,7 @@ entities: pos: 14.5,18.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12991 components: - type: Transform @@ -85615,14 +83915,14 @@ entities: pos: 14.5,20.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12997 components: - type: Transform pos: 23.5,19.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13007 components: - type: Transform @@ -85630,7 +83930,7 @@ entities: pos: 8.5,17.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13011 components: - type: Transform @@ -85638,14 +83938,14 @@ entities: pos: 12.5,17.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13017 components: - type: Transform pos: 13.5,22.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13022 components: - type: Transform @@ -85653,7 +83953,7 @@ entities: pos: 12.5,16.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13030 components: - type: Transform @@ -85661,7 +83961,7 @@ entities: pos: 18.5,14.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13033 components: - type: Transform @@ -85669,7 +83969,7 @@ entities: pos: 21.5,14.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13059 components: - type: Transform @@ -85677,7 +83977,7 @@ entities: pos: 25.5,7.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13076 components: - type: Transform @@ -85685,7 +83985,7 @@ entities: pos: 38.5,7.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13634 components: - type: Transform @@ -85693,21 +83993,21 @@ entities: pos: 52.5,20.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13753 components: - type: Transform pos: 31.5,38.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13757 components: - type: Transform pos: 35.5,35.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13765 components: - type: Transform @@ -85715,7 +84015,7 @@ entities: pos: 43.5,35.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13768 components: - type: Transform @@ -85723,7 +84023,7 @@ entities: pos: 31.5,35.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13772 components: - type: Transform @@ -85731,14 +84031,14 @@ entities: pos: 35.5,38.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13776 components: - type: Transform pos: 39.5,38.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13784 components: - type: Transform @@ -85746,7 +84046,7 @@ entities: pos: 30.5,38.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13790 components: - type: Transform @@ -85754,7 +84054,43 @@ entities: pos: 30.5,35.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' + - uid: 14440 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -55.5,-60.5 + parent: 30 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 14455 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,10.5 + parent: 30 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 14512 + components: + - type: Transform + pos: 17.5,15.5 + parent: 30 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 16802 + components: + - type: Transform + pos: -62.5,-60.5 + parent: 30 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 17718 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -53.5,-64.5 + parent: 30 - uid: 18380 components: - type: Transform @@ -85762,7 +84098,7 @@ entities: pos: -45.5,-17.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18387 components: - type: Transform @@ -85770,14 +84106,14 @@ entities: pos: -61.5,-22.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18391 components: - type: Transform pos: -57.5,-22.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18397 components: - type: Transform @@ -85785,7 +84121,7 @@ entities: pos: -53.5,-24.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18403 components: - type: Transform @@ -85793,7 +84129,7 @@ entities: pos: -44.5,-13.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18412 components: - type: Transform @@ -85801,14 +84137,14 @@ entities: pos: -44.5,-21.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18416 components: - type: Transform pos: -61.5,-24.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18421 components: - type: Transform @@ -85816,14 +84152,14 @@ entities: pos: -58.5,-24.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18426 components: - type: Transform pos: -51.5,-22.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18430 components: - type: Transform @@ -85831,7 +84167,7 @@ entities: pos: -49.5,-24.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18446 components: - type: Transform @@ -85839,7 +84175,7 @@ entities: pos: -63.5,-21.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18492 components: - type: Transform @@ -85847,7 +84183,7 @@ entities: pos: -65.5,-45.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18493 components: - type: Transform @@ -85855,7 +84191,7 @@ entities: pos: -64.5,-45.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18501 components: - type: Transform @@ -85863,14 +84199,14 @@ entities: pos: -68.5,-45.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18510 components: - type: Transform pos: -77.5,-45.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18521 components: - type: Transform @@ -85878,7 +84214,7 @@ entities: pos: -68.5,-44.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18525 components: - type: Transform @@ -85886,14 +84222,14 @@ entities: pos: -62.5,-49.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18526 components: - type: Transform pos: -60.5,-48.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18542 components: - type: Transform @@ -85901,14 +84237,7 @@ entities: pos: -60.5,-60.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 18547 - components: - - type: Transform - pos: -59.5,-60.5 - parent: 30 - - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18550 components: - type: Transform @@ -85916,7 +84245,7 @@ entities: pos: -56.5,-53.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18554 components: - type: Transform @@ -85924,7 +84253,7 @@ entities: pos: -56.5,-57.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18566 components: - type: Transform @@ -85932,7 +84261,7 @@ entities: pos: -55.5,-52.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18568 components: - type: Transform @@ -85940,7 +84269,7 @@ entities: pos: -67.5,-54.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18570 components: - type: Transform @@ -85948,7 +84277,7 @@ entities: pos: -55.5,-56.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18578 components: - type: Transform @@ -85956,7 +84285,7 @@ entities: pos: -63.5,-49.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18591 components: - type: Transform @@ -85964,28 +84293,14 @@ entities: pos: -68.5,-55.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 18599 - components: - - type: Transform - pos: -64.5,-60.5 - parent: 30 - - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18603 components: - type: Transform pos: -63.5,-59.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 18604 - components: - - type: Transform - pos: -58.5,-59.5 - parent: 30 - - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18610 components: - type: Transform @@ -85993,7 +84308,7 @@ entities: pos: -67.5,-59.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18611 components: - type: Transform @@ -86001,7 +84316,7 @@ entities: pos: -68.5,-60.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18614 components: - type: Transform @@ -86009,7 +84324,7 @@ entities: pos: -56.5,-49.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18615 components: - type: Transform @@ -86017,7 +84332,7 @@ entities: pos: -55.5,-48.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18616 components: - type: Transform @@ -86025,14 +84340,14 @@ entities: pos: -61.5,-48.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18618 components: - type: Transform pos: -61.5,-46.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18623 components: - type: Transform @@ -86040,7 +84355,7 @@ entities: pos: -58.5,-44.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18636 components: - type: Transform @@ -86048,7 +84363,7 @@ entities: pos: -67.5,-46.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18637 components: - type: Transform @@ -86056,7 +84371,7 @@ entities: pos: -68.5,-46.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18644 components: - type: Transform @@ -86064,7 +84379,7 @@ entities: pos: -75.5,-46.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18658 components: - type: Transform @@ -86072,28 +84387,28 @@ entities: pos: -75.5,-43.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18704 components: - type: Transform pos: -74.5,-60.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18711 components: - type: Transform pos: -75.5,-59.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18717 components: - type: Transform pos: -80.5,-60.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18739 components: - type: Transform @@ -86101,7 +84416,7 @@ entities: pos: -72.5,-54.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18748 components: - type: Transform @@ -86109,18 +84424,7 @@ entities: pos: -71.5,-55.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 18780 - components: - - type: Transform - pos: -65.5,-64.5 - parent: 30 - - uid: 18781 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -64.5,-64.5 - parent: 30 + color: '#0000FFFF' - uid: 22014 components: - type: Transform @@ -86128,35 +84432,9 @@ entities: pos: -0.5,65.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 22787 - components: - - type: Transform - pos: -26.5,-58.5 - parent: 30 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 22788 - components: - - type: Transform - pos: -30.5,-58.5 - parent: 30 - - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - proto: GasPort entities: - - uid: 6670 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,-48.5 - parent: 30 - - uid: 6711 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,-48.5 - parent: 30 - uid: 6757 components: - type: Transform @@ -86169,34 +84447,6 @@ entities: rot: 1.5707963267948966 rad pos: -38.5,-10.5 parent: 30 - - uid: 8800 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,-51.5 - parent: 30 - - uid: 8801 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-51.5 - parent: 30 - - uid: 9064 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-51.5 - parent: 30 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 9676 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-51.5 - parent: 30 - - type: AtmosPipeColor - color: '#03FCD3FF' - uid: 10390 components: - type: Transform @@ -86204,7 +84454,7 @@ entities: pos: 20.5,-17.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 10392 components: - type: Transform @@ -86212,7 +84462,7 @@ entities: pos: 20.5,-16.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11744 components: - type: Transform @@ -86220,7 +84470,7 @@ entities: pos: 5.5,-25.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11869 components: - type: Transform @@ -86228,7 +84478,13 @@ entities: pos: 5.5,-24.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' + - uid: 12699 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -52.5,-63.5 + parent: 30 - uid: 12867 components: - type: Transform @@ -86247,28 +84503,22 @@ entities: rot: 3.141592653589793 rad pos: 38.5,9.5 parent: 30 + - uid: 14363 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -52.5,-65.5 + parent: 30 - uid: 16775 components: - type: Transform pos: 36.5,10.5 parent: 30 - - uid: 18776 + - uid: 18772 components: - type: Transform - rot: 3.141592653589793 rad - pos: -64.5,-65.5 - parent: 30 - - uid: 18777 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -65.5,-65.5 - parent: 30 - - uid: 18778 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -66.5,-65.5 + rot: -1.5707963267948966 rad + pos: -52.5,-64.5 parent: 30 - uid: 19440 components: @@ -86278,6 +84528,14 @@ entities: parent: 30 - proto: GasPressurePump entities: + - uid: 337 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -52.5,-61.5 + parent: 30 + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 7140 components: - type: MetaData @@ -86306,7 +84564,7 @@ entities: pos: -30.5,-10.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8781 components: - type: Transform @@ -86314,7 +84572,7 @@ entities: pos: 16.5,-24.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8792 components: - type: Transform @@ -86362,32 +84620,6 @@ entities: parent: 30 - type: AtmosPipeColor color: '#EB9834FF' - - uid: 9066 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,-51.5 - parent: 30 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 9102 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-51.5 - parent: 30 - - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 9862 - components: - - type: MetaData - name: mix to sme loop - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-54.5 - parent: 30 - - type: AtmosPipeColor - color: '#34E5EBFF' - uid: 12922 components: - type: Transform @@ -86399,14 +84631,6 @@ entities: - type: Transform pos: 38.5,10.5 parent: 30 - - uid: 18772 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -64.5,-62.5 - parent: 30 - - type: AtmosPipeColor - color: '#0335FCFF' - proto: GasThermoMachineFreezer entities: - uid: 482 @@ -86419,33 +84643,24 @@ entities: - type: Transform pos: -36.5,-9.5 parent: 30 - - uid: 6659 + - uid: 905 components: - type: Transform - pos: -10.5,-47.5 + rot: -1.5707963267948966 rad + pos: 4.5,-53.5 parent: 30 - - uid: 7109 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-51.5 - parent: 30 - - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 7112 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-52.5 - parent: 30 - - type: AtmosPipeColor - color: '#03FCD3FF' - uid: 7598 components: - type: Transform rot: 3.141592653589793 rad pos: -34.5,-13.5 parent: 30 + - uid: 11013 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-52.5 + parent: 30 - uid: 12038 components: - type: Transform @@ -86470,10 +84685,11 @@ entities: parent: 30 - proto: GasThermoMachineHeater entities: - - uid: 6642 + - uid: 9997 components: - type: Transform - pos: -11.5,-47.5 + rot: 1.5707963267948966 rad + pos: -5.5,-53.5 parent: 30 - uid: 12085 components: @@ -86481,66 +84697,14 @@ entities: rot: -1.5707963267948966 rad pos: 17.5,-35.5 parent: 30 + - uid: 13960 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-52.5 + parent: 30 - proto: GasValve entities: - - uid: 6714 - components: - - type: Transform - pos: -11.5,-55.5 - parent: 30 - - type: GasValve - open: False - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7222 - components: - - type: MetaData - name: Emergency Dump Valve - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,-48.5 - parent: 30 - - type: GasValve - open: False - - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 8278 - components: - - type: MetaData - name: Cold Loop Valve - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-49.5 - parent: 30 - - type: GasValve - open: False - - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 9657 - components: - - type: Transform - pos: -9.5,-55.5 - parent: 30 - - type: GasValve - open: False - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 9807 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-55.5 - parent: 30 - - type: GasValve - open: False - - uid: 9808 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-55.5 - parent: 30 - - type: GasValve - open: False - uid: 21274 components: - type: MetaData @@ -86552,7 +84716,7 @@ entities: - type: GasValve open: False - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - proto: GasVentPump entities: - uid: 2451 @@ -86562,7 +84726,7 @@ entities: pos: -35.5,31.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2454 components: - type: Transform @@ -86570,7 +84734,7 @@ entities: pos: -35.5,36.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2482 components: - type: Transform @@ -86578,7 +84742,7 @@ entities: pos: -49.5,32.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2491 components: - type: Transform @@ -86586,14 +84750,14 @@ entities: pos: -41.5,32.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2493 components: - type: Transform pos: -45.5,36.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2503 components: - type: Transform @@ -86601,14 +84765,14 @@ entities: pos: -35.5,39.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2523 components: - type: Transform pos: -33.5,43.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2524 components: - type: Transform @@ -86616,7 +84780,7 @@ entities: pos: -30.5,46.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2544 components: - type: Transform @@ -86624,14 +84788,14 @@ entities: pos: -41.5,48.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2551 components: - type: Transform pos: -40.5,51.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2573 components: - type: Transform @@ -86639,7 +84803,7 @@ entities: pos: -25.5,49.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2592 components: - type: Transform @@ -86647,7 +84811,7 @@ entities: pos: -31.5,57.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2594 components: - type: Transform @@ -86655,7 +84819,7 @@ entities: pos: -30.5,52.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2638 components: - type: Transform @@ -86663,7 +84827,7 @@ entities: pos: -38.5,40.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2639 components: - type: Transform @@ -86671,7 +84835,7 @@ entities: pos: -42.5,40.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2640 components: - type: Transform @@ -86679,14 +84843,14 @@ entities: pos: -46.5,40.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2644 components: - type: Transform pos: -41.5,43.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2669 components: - type: Transform @@ -86694,7 +84858,7 @@ entities: pos: -47.5,49.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2676 components: - type: Transform @@ -86702,14 +84866,14 @@ entities: pos: -50.5,52.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2705 components: - type: Transform pos: -48.5,68.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2706 components: - type: Transform @@ -86717,7 +84881,7 @@ entities: pos: -48.5,66.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2707 components: - type: Transform @@ -86725,7 +84889,7 @@ entities: pos: -49.5,61.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2708 components: - type: Transform @@ -86733,7 +84897,7 @@ entities: pos: -45.5,61.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2734 components: - type: Transform @@ -86741,7 +84905,7 @@ entities: pos: -47.5,56.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2743 components: - type: Transform @@ -86749,14 +84913,14 @@ entities: pos: -28.5,42.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2862 components: - type: Transform pos: -8.5,26.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3042 components: - type: Transform @@ -86764,7 +84928,7 @@ entities: pos: -26.5,31.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3050 components: - type: Transform @@ -86772,7 +84936,7 @@ entities: pos: -30.5,22.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3056 components: - type: Transform @@ -86780,7 +84944,7 @@ entities: pos: -26.5,23.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3062 components: - type: Transform @@ -86788,7 +84952,7 @@ entities: pos: -22.5,23.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3064 components: - type: Transform @@ -86796,7 +84960,7 @@ entities: pos: -35.5,26.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3066 components: - type: Transform @@ -86804,7 +84968,7 @@ entities: pos: -35.5,19.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3069 components: - type: Transform @@ -86812,21 +84976,21 @@ entities: pos: -35.5,8.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3077 components: - type: Transform pos: -40.5,10.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3099 components: - type: Transform pos: -42.5,6.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3111 components: - type: Transform @@ -86834,7 +84998,7 @@ entities: pos: -39.5,0.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3135 components: - type: Transform @@ -86842,7 +85006,7 @@ entities: pos: -53.5,9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3148 components: - type: Transform @@ -86850,7 +85014,7 @@ entities: pos: -45.5,4.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3171 components: - type: Transform @@ -86858,7 +85022,7 @@ entities: pos: -45.5,-2.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3228 components: - type: Transform @@ -86866,28 +85030,28 @@ entities: pos: -31.5,8.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3230 components: - type: Transform pos: -32.5,2.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3253 components: - type: Transform pos: -43.5,18.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3266 components: - type: Transform pos: -44.5,14.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3302 components: - type: Transform @@ -86895,7 +85059,7 @@ entities: pos: -60.5,13.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3303 components: - type: Transform @@ -86903,7 +85067,7 @@ entities: pos: -60.5,15.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3304 components: - type: Transform @@ -86911,7 +85075,7 @@ entities: pos: -60.5,21.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3305 components: - type: Transform @@ -86919,7 +85083,7 @@ entities: pos: -60.5,23.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3323 components: - type: Transform @@ -86927,43 +85091,35 @@ entities: pos: -56.5,18.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3324 components: - type: Transform pos: -50.5,18.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3325 components: - type: Transform pos: -27.5,2.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3327 components: - type: Transform pos: -17.5,2.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3357 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,10.5 - parent: 30 - - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3376 components: - type: Transform pos: -26.5,16.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3401 components: - type: Transform @@ -86971,21 +85127,21 @@ entities: pos: -13.5,10.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3407 components: - type: Transform pos: -10.5,2.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3410 components: - type: Transform pos: 5.5,2.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3422 components: - type: Transform @@ -86993,14 +85149,14 @@ entities: pos: -0.5,7.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3469 components: - type: Transform pos: -16.5,15.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3479 components: - type: Transform @@ -87008,14 +85164,14 @@ entities: pos: -8.5,13.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3480 components: - type: Transform pos: -9.5,18.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3481 components: - type: Transform @@ -87023,7 +85179,7 @@ entities: pos: 3.5,14.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3485 components: - type: Transform @@ -87031,21 +85187,21 @@ entities: pos: -0.5,13.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6109 components: - type: Transform pos: -23.5,26.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6113 components: - type: Transform pos: 3.5,26.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6123 components: - type: Transform @@ -87053,14 +85209,14 @@ entities: pos: -0.5,21.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6205 components: - type: Transform pos: -9.5,43.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6214 components: - type: Transform @@ -87068,7 +85224,7 @@ entities: pos: -7.5,36.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6223 components: - type: Transform @@ -87076,7 +85232,7 @@ entities: pos: 0.5,31.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6229 components: - type: Transform @@ -87084,7 +85240,7 @@ entities: pos: -19.5,39.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6239 components: - type: Transform @@ -87092,7 +85248,7 @@ entities: pos: -25.5,37.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6245 components: - type: Transform @@ -87100,7 +85256,7 @@ entities: pos: -20.5,31.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6246 components: - type: Transform @@ -87108,7 +85264,7 @@ entities: pos: -19.5,36.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6834 components: - type: Transform @@ -87116,7 +85272,7 @@ entities: pos: -25.5,-22.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6900 components: - type: Transform @@ -87124,7 +85280,7 @@ entities: pos: -28.5,-1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6920 components: - type: Transform @@ -87132,7 +85288,7 @@ entities: pos: -33.5,-16.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6939 components: - type: Transform @@ -87140,14 +85296,25 @@ entities: pos: -18.5,-2.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' + - uid: 7099 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-40.5 + parent: 30 + - type: DeviceNetwork + deviceLists: + - 13957 + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 7115 components: - type: Transform pos: -28.5,-20.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 7136 components: - type: Transform @@ -87157,7 +85324,7 @@ entities: deviceLists: - 8267 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 7137 components: - type: Transform @@ -87167,14 +85334,14 @@ entities: deviceLists: - 8267 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 7340 components: - type: Transform pos: -12.5,-1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 7373 components: - type: Transform @@ -87182,7 +85349,7 @@ entities: pos: -7.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 7424 components: - type: Transform @@ -87190,7 +85357,18 @@ entities: pos: -35.5,-1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' + - uid: 7443 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,-43.5 + parent: 30 + - type: DeviceNetwork + deviceLists: + - 13957 + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 7569 components: - type: Transform @@ -87201,14 +85379,14 @@ entities: deviceLists: - 8254 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8033 components: - type: Transform pos: -13.5,-8.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8100 components: - type: Transform @@ -87216,14 +85394,36 @@ entities: pos: -13.5,-20.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8224 components: - type: Transform pos: -22.5,-3.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' + - uid: 8297 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,-47.5 + parent: 30 + - type: DeviceNetwork + deviceLists: + - 13958 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8311 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,-52.5 + parent: 30 + - type: DeviceNetwork + deviceLists: + - 19570 + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 8316 components: - type: Transform @@ -87231,14 +85431,36 @@ entities: pos: -29.5,-7.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' + - uid: 8335 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,-48.5 + parent: 30 + - type: DeviceNetwork + deviceLists: + - 19570 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8454 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,-47.5 + parent: 30 + - type: DeviceNetwork + deviceLists: + - 13957 + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 9046 components: - type: Transform pos: -25.5,-15.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 9686 components: - type: Transform @@ -87249,7 +85471,7 @@ entities: deviceLists: - 9671 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 9811 components: - type: Transform @@ -87257,44 +85479,76 @@ entities: pos: -54.5,-8.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11153 + color: '#0000FFFF' + - uid: 9884 + components: + - type: Transform + pos: -23.5,-42.5 + parent: 30 + - type: DeviceNetwork + deviceLists: + - 13958 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9903 components: - type: Transform rot: 1.5707963267948966 rad - pos: -22.5,-42.5 + pos: -12.5,-35.5 parent: 30 + - type: DeviceNetwork + deviceLists: + - 13966 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11154 + color: '#0000FFFF' + - uid: 9908 components: - type: Transform - pos: -12.5,-40.5 + rot: 1.5707963267948966 rad + pos: -16.5,-29.5 parent: 30 + - type: DeviceNetwork + deviceLists: + - 13966 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11155 + color: '#0000FFFF' + - uid: 10022 components: - type: Transform - pos: -2.5,-40.5 + rot: 1.5707963267948966 rad + pos: -12.5,-31.5 parent: 30 + - type: DeviceNetwork + deviceLists: + - 13966 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11162 - components: - - type: Transform - pos: -6.5,-35.5 - parent: 30 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11163 + color: '#0000FFFF' + - uid: 10233 components: - type: Transform rot: 3.141592653589793 rad - pos: -6.5,-43.5 + pos: -63.5,-63.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' + - uid: 11026 + components: + - type: Transform + pos: -6.5,-36.5 + parent: 30 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11134 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-45.5 + parent: 30 + - type: DeviceNetwork + deviceLists: + - 9996 + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 11165 components: - type: Transform @@ -87302,15 +85556,7 @@ entities: pos: 1.5,-32.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11176 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,-28.5 - parent: 30 - - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11178 components: - type: Transform @@ -87318,36 +85564,42 @@ entities: pos: -2.5,-26.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11180 components: - type: Transform pos: 10.5,-23.5 parent: 30 + - type: DeviceNetwork + deviceLists: + - 10010 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11188 components: - type: Transform rot: 3.141592653589793 rad pos: 10.5,-28.5 parent: 30 + - type: DeviceNetwork + deviceLists: + - 10010 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11200 components: - type: Transform pos: 2.5,-19.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11208 components: - type: Transform pos: 9.5,-15.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11211 components: - type: Transform @@ -87355,14 +85607,14 @@ entities: pos: 12.5,-17.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11216 components: - type: Transform pos: -2.5,-1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11217 components: - type: Transform @@ -87370,7 +85622,7 @@ entities: pos: 5.5,-3.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11220 components: - type: Transform @@ -87378,7 +85630,7 @@ entities: pos: 8.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11222 components: - type: Transform @@ -87386,21 +85638,14 @@ entities: pos: 14.5,-4.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11224 components: - type: Transform pos: 12.5,2.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11227 - components: - - type: Transform - pos: -19.5,-36.5 - parent: 30 - - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11664 components: - type: Transform @@ -87408,7 +85653,7 @@ entities: pos: 33.5,-10.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11868 components: - type: Transform @@ -87416,7 +85661,7 @@ entities: pos: 24.5,-10.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11872 components: - type: Transform @@ -87424,7 +85669,7 @@ entities: pos: 24.5,-3.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11922 components: - type: Transform @@ -87432,7 +85677,7 @@ entities: pos: 37.5,-5.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11938 components: - type: Transform @@ -87440,7 +85685,7 @@ entities: pos: 17.5,-10.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11939 components: - type: Transform @@ -87448,14 +85693,14 @@ entities: pos: 20.5,-10.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11981 components: - type: Transform pos: 20.5,0.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11991 components: - type: Transform @@ -87463,21 +85708,21 @@ entities: pos: 19.5,-1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12007 components: - type: Transform pos: 30.5,1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12010 components: - type: Transform pos: 25.5,0.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12060 components: - type: Transform @@ -87485,7 +85730,7 @@ entities: pos: 37.5,-3.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12081 components: - type: Transform @@ -87493,7 +85738,7 @@ entities: pos: 30.5,-3.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12230 components: - type: Transform @@ -87501,7 +85746,7 @@ entities: pos: 34.5,-14.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12491 components: - type: Transform @@ -87509,7 +85754,7 @@ entities: pos: 9.5,33.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12492 components: - type: Transform @@ -87517,14 +85762,14 @@ entities: pos: 11.5,39.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12495 components: - type: Transform pos: 9.5,41.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12537 components: - type: Transform @@ -87532,14 +85777,14 @@ entities: pos: 9.5,24.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12538 components: - type: Transform pos: 18.5,26.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12579 components: - type: Transform @@ -87547,7 +85792,7 @@ entities: pos: 18.5,40.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12580 components: - type: Transform @@ -87555,7 +85800,7 @@ entities: pos: 18.5,37.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12581 components: - type: Transform @@ -87563,14 +85808,14 @@ entities: pos: 18.5,34.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12587 components: - type: Transform pos: 25.5,42.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12605 components: - type: Transform @@ -87578,14 +85823,14 @@ entities: pos: 24.5,38.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12611 components: - type: Transform pos: 27.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12756 components: - type: Transform @@ -87598,7 +85843,7 @@ entities: pos: 32.5,11.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12959 components: - type: Transform @@ -87606,7 +85851,7 @@ entities: pos: 27.5,18.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12976 components: - type: Transform @@ -87614,23 +85859,18 @@ entities: pos: 37.5,8.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12983 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,10.5 - parent: 30 - - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13002 components: - type: Transform rot: 1.5707963267948966 rad pos: 22.5,13.5 parent: 30 + - type: DeviceNetwork + deviceLists: + - 14365 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13003 components: - type: Transform @@ -87638,7 +85878,7 @@ entities: pos: 28.5,7.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13004 components: - type: Transform @@ -87646,14 +85886,14 @@ entities: pos: 24.5,19.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13005 components: - type: Transform pos: 14.5,21.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13006 components: - type: Transform @@ -87661,14 +85901,18 @@ entities: pos: 13.5,18.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 13081 + color: '#0000FFFF' + - uid: 13085 components: - type: Transform - pos: 18.5,16.5 + rot: 3.141592653589793 rad + pos: 17.5,14.5 parent: 30 + - type: DeviceNetwork + deviceLists: + - 14365 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13335 components: - type: Transform @@ -87676,7 +85920,7 @@ entities: pos: 9.5,14.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13360 components: - type: Transform @@ -87684,28 +85928,28 @@ entities: pos: 26.5,15.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13469 components: - type: Transform pos: 16.5,57.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13470 components: - type: Transform pos: 20.5,44.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13593 components: - type: Transform pos: 35.5,39.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13783 components: - type: Transform @@ -87713,7 +85957,7 @@ entities: pos: 45.5,38.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13788 components: - type: Transform @@ -87721,14 +85965,22 @@ entities: pos: 30.5,37.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13789 components: - type: Transform pos: 30.5,42.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' + - uid: 14510 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,10.5 + parent: 30 + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 15441 components: - type: Transform @@ -87736,14 +85988,14 @@ entities: pos: 51.5,20.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15619 components: - type: Transform pos: 52.5,23.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 16096 components: - type: Transform @@ -87751,7 +86003,18 @@ entities: pos: 6.5,-28.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' + - uid: 18074 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,12.5 + parent: 30 + - type: DeviceNetwork + deviceLists: + - 14365 + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 18436 components: - type: Transform @@ -87759,7 +86022,7 @@ entities: pos: -45.5,-13.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18437 components: - type: Transform @@ -87767,35 +86030,35 @@ entities: pos: -45.5,-21.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18438 components: - type: Transform pos: -58.5,-23.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18439 components: - type: Transform pos: -49.5,-23.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18440 components: - type: Transform pos: -53.5,-23.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18449 components: - type: Transform pos: -63.5,-19.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18450 components: - type: Transform @@ -87803,7 +86066,7 @@ entities: pos: -62.5,-21.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18629 components: - type: Transform @@ -87811,49 +86074,49 @@ entities: pos: -59.5,-44.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18655 components: - type: Transform pos: -79.5,-39.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18662 components: - type: Transform pos: -77.5,-42.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18663 components: - type: Transform pos: -75.5,-41.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18667 components: - type: Transform pos: -68.5,-45.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18668 components: - type: Transform pos: -67.5,-42.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18674 components: - type: Transform pos: -55.5,-45.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18678 components: - type: Transform @@ -87861,7 +86124,7 @@ entities: pos: -52.5,-56.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18679 components: - type: Transform @@ -87869,7 +86132,7 @@ entities: pos: -52.5,-52.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18720 components: - type: Transform @@ -87877,7 +86140,7 @@ entities: pos: -83.5,-60.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18731 components: - type: Transform @@ -87885,7 +86148,7 @@ entities: pos: -80.5,-61.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18732 components: - type: Transform @@ -87893,7 +86156,7 @@ entities: pos: -74.5,-61.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18753 components: - type: Transform @@ -87901,21 +86164,21 @@ entities: pos: -76.5,-55.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18754 components: - type: Transform pos: -71.5,-53.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18757 components: - type: Transform pos: -60.5,-59.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18758 components: - type: Transform @@ -87923,15 +86186,7 @@ entities: pos: -60.5,-49.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 18769 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -59.5,-64.5 - parent: 30 - - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 20335 components: - type: Transform @@ -87939,7 +86194,7 @@ entities: pos: 4.5,-8.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 21549 components: - type: Transform @@ -87947,14 +86202,14 @@ entities: pos: 39.5,34.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 22023 components: - type: Transform pos: -0.5,74.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 22024 components: - type: Transform @@ -87962,46 +86217,14 @@ entities: pos: 0.5,65.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 22025 components: - type: Transform pos: -1.5,38.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 22768 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,-47.5 - parent: 30 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 22799 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,-59.5 - parent: 30 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 22800 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,-58.5 - parent: 30 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 22801 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -36.5,-60.5 - parent: 30 - - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - proto: GasVentScrubber entities: - uid: 2324 @@ -88016,7 +86239,7 @@ entities: pos: -35.5,32.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2453 components: - type: Transform @@ -88024,7 +86247,7 @@ entities: pos: -35.5,37.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2483 components: - type: Transform @@ -88032,7 +86255,7 @@ entities: pos: -50.5,32.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2490 components: - type: Transform @@ -88040,7 +86263,7 @@ entities: pos: -42.5,32.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2492 components: - type: Transform @@ -88048,7 +86271,7 @@ entities: pos: -41.5,36.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2504 components: - type: Transform @@ -88056,7 +86279,7 @@ entities: pos: -35.5,40.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2525 components: - type: Transform @@ -88064,7 +86287,7 @@ entities: pos: -35.5,43.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2526 components: - type: Transform @@ -88072,7 +86295,7 @@ entities: pos: -34.5,46.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2545 components: - type: Transform @@ -88080,14 +86303,14 @@ entities: pos: -41.5,47.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2552 components: - type: Transform pos: -38.5,51.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2574 components: - type: Transform @@ -88095,7 +86318,7 @@ entities: pos: -25.5,51.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2593 components: - type: Transform @@ -88103,7 +86326,7 @@ entities: pos: -33.5,57.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2595 components: - type: Transform @@ -88111,7 +86334,7 @@ entities: pos: -34.5,52.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2641 components: - type: Transform @@ -88119,7 +86342,7 @@ entities: pos: -48.5,40.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2642 components: - type: Transform @@ -88127,7 +86350,7 @@ entities: pos: -44.5,40.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2643 components: - type: Transform @@ -88135,7 +86358,7 @@ entities: pos: -40.5,40.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2645 components: - type: Transform @@ -88143,7 +86366,7 @@ entities: pos: -43.5,43.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2670 components: - type: Transform @@ -88151,7 +86374,7 @@ entities: pos: -47.5,50.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2675 components: - type: Transform @@ -88159,7 +86382,7 @@ entities: pos: -50.5,51.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2730 components: - type: Transform @@ -88167,7 +86390,7 @@ entities: pos: -48.5,63.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2731 components: - type: Transform @@ -88175,7 +86398,7 @@ entities: pos: -50.5,60.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2732 components: - type: Transform @@ -88183,7 +86406,7 @@ entities: pos: -46.5,60.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2733 components: - type: Transform @@ -88191,7 +86414,7 @@ entities: pos: -49.5,56.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2742 components: - type: Transform @@ -88199,7 +86422,7 @@ entities: pos: -28.5,43.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3006 components: - type: Transform @@ -88207,7 +86430,7 @@ entities: pos: -10.5,26.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3041 components: - type: Transform @@ -88215,7 +86438,7 @@ entities: pos: -30.5,31.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3049 components: - type: Transform @@ -88223,7 +86446,7 @@ entities: pos: -31.5,22.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3055 components: - type: Transform @@ -88231,7 +86454,7 @@ entities: pos: -27.5,23.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3063 components: - type: Transform @@ -88239,7 +86462,7 @@ entities: pos: -21.5,22.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3065 components: - type: Transform @@ -88247,7 +86470,7 @@ entities: pos: -35.5,24.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3067 components: - type: Transform @@ -88255,7 +86478,7 @@ entities: pos: -35.5,17.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3068 components: - type: Transform @@ -88263,7 +86486,7 @@ entities: pos: -35.5,10.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3076 components: - type: Transform @@ -88271,7 +86494,7 @@ entities: pos: -39.5,10.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3100 components: - type: Transform @@ -88279,7 +86502,7 @@ entities: pos: -39.5,6.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3112 components: - type: Transform @@ -88287,7 +86510,7 @@ entities: pos: -41.5,0.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3136 components: - type: Transform @@ -88295,7 +86518,7 @@ entities: pos: -52.5,9.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3147 components: - type: Transform @@ -88303,7 +86526,7 @@ entities: pos: -44.5,6.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3170 components: - type: Transform @@ -88311,7 +86534,7 @@ entities: pos: -44.5,-5.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3229 components: - type: Transform @@ -88319,7 +86542,7 @@ entities: pos: -31.5,7.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3231 components: - type: Transform @@ -88327,14 +86550,14 @@ entities: pos: -31.5,2.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3254 components: - type: Transform pos: -42.5,18.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3267 components: - type: Transform @@ -88342,7 +86565,7 @@ entities: pos: -41.5,14.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3317 components: - type: Transform @@ -88350,7 +86573,7 @@ entities: pos: -53.5,16.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3318 components: - type: Transform @@ -88358,7 +86581,7 @@ entities: pos: -53.5,20.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3326 components: - type: Transform @@ -88366,7 +86589,7 @@ entities: pos: -24.5,2.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3328 components: - type: Transform @@ -88374,7 +86597,7 @@ entities: pos: -14.5,2.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3358 components: - type: Transform @@ -88382,7 +86605,7 @@ entities: pos: -24.5,9.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3377 components: - type: Transform @@ -88390,14 +86613,14 @@ entities: pos: -24.5,16.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3398 components: - type: Transform pos: -17.5,14.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3400 components: - type: Transform @@ -88405,7 +86628,7 @@ entities: pos: -13.5,7.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3408 components: - type: Transform @@ -88413,7 +86636,7 @@ entities: pos: -6.5,2.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3409 components: - type: Transform @@ -88421,7 +86644,7 @@ entities: pos: 1.5,2.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3421 components: - type: Transform @@ -88429,21 +86652,21 @@ entities: pos: -4.5,7.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3482 components: - type: Transform pos: -12.5,14.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3483 components: - type: Transform pos: -10.5,17.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3484 components: - type: Transform @@ -88451,14 +86674,14 @@ entities: pos: 3.5,13.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3486 components: - type: Transform pos: -4.5,14.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 5029 components: - type: Transform @@ -88466,7 +86689,7 @@ entities: pos: -28.5,39.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6108 components: - type: Transform @@ -88474,7 +86697,7 @@ entities: pos: -19.5,26.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6112 components: - type: Transform @@ -88482,7 +86705,7 @@ entities: pos: 0.5,26.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6122 components: - type: Transform @@ -88490,7 +86713,7 @@ entities: pos: -2.5,21.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6204 components: - type: Transform @@ -88498,7 +86721,7 @@ entities: pos: -9.5,39.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6213 components: - type: Transform @@ -88506,7 +86729,7 @@ entities: pos: -11.5,36.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6222 components: - type: Transform @@ -88514,7 +86737,7 @@ entities: pos: 0.5,32.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6265 components: - type: Transform @@ -88522,7 +86745,7 @@ entities: pos: -27.5,37.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6266 components: - type: Transform @@ -88530,7 +86753,7 @@ entities: pos: -21.5,34.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6268 components: - type: Transform @@ -88538,14 +86761,14 @@ entities: pos: -19.5,31.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6911 components: - type: Transform pos: -28.5,-3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6935 components: - type: Transform @@ -88553,7 +86776,28 @@ entities: pos: -33.5,-18.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' + - uid: 7098 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,-45.5 + parent: 30 + - type: DeviceNetwork + deviceLists: + - 13957 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 7100 + components: + - type: Transform + pos: -5.5,-39.5 + parent: 30 + - type: DeviceNetwork + deviceLists: + - 13957 + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 7119 components: - type: Transform @@ -88561,7 +86805,7 @@ entities: pos: -28.5,-18.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 7130 components: - type: Transform @@ -88572,7 +86816,7 @@ entities: deviceLists: - 8267 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 7131 components: - type: Transform @@ -88583,14 +86827,47 @@ entities: deviceLists: - 8267 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' + - uid: 7222 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,-46.5 + parent: 30 + - type: DeviceNetwork + deviceLists: + - 19570 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 7224 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-52.5 + parent: 30 + - type: DeviceNetwork + deviceLists: + - 19570 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 7226 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,-42.5 + parent: 30 + - type: DeviceNetwork + deviceLists: + - 13958 + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 7339 components: - type: Transform pos: -11.5,-2.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 7377 components: - type: Transform @@ -88598,7 +86875,7 @@ entities: pos: -7.5,-11.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 7378 components: - type: Transform @@ -88606,7 +86883,7 @@ entities: pos: -5.5,-11.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 7407 components: - type: Transform @@ -88614,7 +86891,7 @@ entities: pos: -18.5,-1.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 7567 components: - type: Transform @@ -88622,7 +86899,7 @@ entities: pos: -17.5,-20.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 7571 components: - type: Transform @@ -88632,7 +86909,7 @@ entities: deviceLists: - 8254 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 7572 components: - type: Transform @@ -88640,21 +86917,32 @@ entities: pos: -13.5,-12.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8223 components: - type: Transform pos: -24.5,-3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' + - uid: 8609 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,-47.5 + parent: 30 + - type: DeviceNetwork + deviceLists: + - 13957 + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 9049 components: - type: Transform pos: -25.5,-16.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 9713 components: - type: Transform @@ -88662,7 +86950,18 @@ entities: pos: -25.5,-23.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' + - uid: 9793 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-45.5 + parent: 30 + - type: DeviceNetwork + deviceLists: + - 9996 + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 9846 components: - type: Transform @@ -88670,7 +86969,7 @@ entities: pos: -29.5,-5.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 9864 components: - type: Transform @@ -88681,7 +86980,29 @@ entities: deviceLists: - 9671 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' + - uid: 9897 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,-47.5 + parent: 30 + - type: DeviceNetwork + deviceLists: + - 13958 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9899 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,-30.5 + parent: 30 + - type: DeviceNetwork + deviceLists: + - 13966 + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 10039 components: - type: Transform @@ -88689,61 +87010,36 @@ entities: pos: -55.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11094 + color: '#FF0000FF' + - uid: 10042 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,-41.5 + rot: -1.5707963267948966 rad + pos: -12.5,-34.5 parent: 30 + - type: DeviceNetwork + deviceLists: + - 13966 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11097 + color: '#FF0000FF' + - uid: 10043 components: - type: Transform - pos: -17.5,-36.5 + rot: -1.5707963267948966 rad + pos: -12.5,-30.5 parent: 30 + - type: DeviceNetwork + deviceLists: + - 13966 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11098 + color: '#FF0000FF' + - uid: 10752 components: - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-40.5 + pos: -8.5,-36.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11099 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,-40.5 - parent: 30 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11107 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,-30.5 - parent: 30 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11114 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,-43.5 - parent: 30 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11115 - components: - - type: Transform - pos: -8.5,-35.5 - parent: 30 - - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11166 components: - type: Transform @@ -88751,7 +87047,7 @@ entities: pos: 1.5,-34.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11179 components: - type: Transform @@ -88759,23 +87055,29 @@ entities: pos: -2.5,-27.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11189 components: - type: Transform rot: 3.141592653589793 rad pos: 11.5,-28.5 parent: 30 + - type: DeviceNetwork + deviceLists: + - 10010 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11192 components: - type: Transform rot: 3.141592653589793 rad pos: 12.5,-23.5 parent: 30 + - type: DeviceNetwork + deviceLists: + - 10010 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11201 components: - type: Transform @@ -88783,14 +87085,14 @@ entities: pos: 4.5,-19.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11209 components: - type: Transform pos: 7.5,-15.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11210 components: - type: Transform @@ -88798,14 +87100,14 @@ entities: pos: 12.5,-15.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11214 components: - type: Transform pos: 20.5,-18.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11215 components: - type: Transform @@ -88813,14 +87115,14 @@ entities: pos: -2.5,-4.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11218 components: - type: Transform pos: 6.5,-2.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11219 components: - type: Transform @@ -88828,7 +87130,7 @@ entities: pos: 8.5,-8.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11221 components: - type: Transform @@ -88836,7 +87138,7 @@ entities: pos: 12.5,-4.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11223 components: - type: Transform @@ -88844,14 +87146,14 @@ entities: pos: 9.5,2.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11681 components: - type: Transform pos: 25.5,-10.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11714 components: - type: Transform @@ -88859,35 +87161,35 @@ entities: pos: 6.5,-26.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11764 components: - type: Transform pos: 24.5,-5.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11797 components: - type: Transform pos: 32.5,-10.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11944 components: - type: Transform pos: 19.5,-10.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11945 components: - type: Transform pos: 16.5,-10.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11985 components: - type: Transform @@ -88895,28 +87197,28 @@ entities: pos: 18.5,1.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12043 components: - type: Transform pos: 29.5,1.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12044 components: - type: Transform pos: 26.5,0.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12489 components: - type: Transform pos: 8.5,39.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12490 components: - type: Transform @@ -88924,7 +87226,7 @@ entities: pos: 9.5,31.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12536 components: - type: Transform @@ -88932,7 +87234,7 @@ entities: pos: 9.5,26.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12539 components: - type: Transform @@ -88940,7 +87242,7 @@ entities: pos: 16.5,26.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12576 components: - type: Transform @@ -88948,7 +87250,7 @@ entities: pos: 18.5,33.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12577 components: - type: Transform @@ -88956,7 +87258,7 @@ entities: pos: 18.5,36.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12578 components: - type: Transform @@ -88964,21 +87266,21 @@ entities: pos: 18.5,39.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12583 components: - type: Transform pos: 21.5,43.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12606 components: - type: Transform pos: 24.5,37.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12619 components: - type: Transform @@ -88986,7 +87288,7 @@ entities: pos: 27.5,29.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12755 components: - type: Transform @@ -89000,7 +87302,7 @@ entities: pos: 29.5,20.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12824 components: - type: Transform @@ -89008,15 +87310,7 @@ entities: pos: 28.5,15.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 13078 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,11.5 - parent: 30 - - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13079 components: - type: Transform @@ -89024,7 +87318,7 @@ entities: pos: 13.5,21.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13080 components: - type: Transform @@ -89032,14 +87326,17 @@ entities: pos: 13.5,16.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13082 components: - type: Transform pos: 18.5,15.5 parent: 30 + - type: DeviceNetwork + deviceLists: + - 14365 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13084 components: - type: Transform @@ -89047,22 +87344,14 @@ entities: pos: 22.5,18.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 13085 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,11.5 - parent: 30 - - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13086 components: - type: Transform pos: 25.5,8.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13336 components: - type: Transform @@ -89070,21 +87359,21 @@ entities: pos: 9.5,15.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13353 components: - type: Transform pos: 40.5,13.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13355 components: - type: Transform pos: 38.5,8.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13782 components: - type: Transform @@ -89092,21 +87381,32 @@ entities: pos: 45.5,35.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13798 components: - type: Transform pos: 29.5,42.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13799 components: - type: Transform pos: 30.5,36.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' + - uid: 14522 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,11.5 + parent: 30 + - type: DeviceNetwork + deviceLists: + - 14365 + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 14540 components: - type: Transform @@ -89114,14 +87414,25 @@ entities: pos: 20.5,-5.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18060 components: - type: Transform pos: 30.5,-5.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' + - uid: 18214 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,11.5 + parent: 30 + - type: DeviceNetwork + deviceLists: + - 14365 + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 18435 components: - type: Transform @@ -89129,7 +87440,7 @@ entities: pos: -44.5,-17.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18441 components: - type: Transform @@ -89137,7 +87448,7 @@ entities: pos: -57.5,-23.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18442 components: - type: Transform @@ -89145,14 +87456,14 @@ entities: pos: -51.5,-23.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18451 components: - type: Transform pos: -61.5,-21.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18519 components: - type: Transform @@ -89160,28 +87471,36 @@ entities: pos: -77.5,-48.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18520 components: - type: Transform pos: -78.5,-39.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18523 components: - type: Transform pos: -68.5,-42.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18524 components: - type: Transform pos: -64.5,-44.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' + - uid: 18547 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -61.5,-63.5 + parent: 30 + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 18630 components: - type: Transform @@ -89189,14 +87508,14 @@ entities: pos: -67.5,-44.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18675 components: - type: Transform pos: -56.5,-45.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18676 components: - type: Transform @@ -89204,7 +87523,7 @@ entities: pos: -52.5,-53.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18677 components: - type: Transform @@ -89212,7 +87531,7 @@ entities: pos: -52.5,-57.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18729 components: - type: Transform @@ -89220,7 +87539,7 @@ entities: pos: -80.5,-59.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18730 components: - type: Transform @@ -89228,21 +87547,21 @@ entities: pos: -75.5,-61.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18744 components: - type: Transform pos: -76.5,-53.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18745 components: - type: Transform pos: -72.5,-53.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18756 components: - type: Transform @@ -89250,22 +87569,14 @@ entities: pos: -63.5,-60.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18759 components: - type: Transform pos: -63.5,-48.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 18770 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -59.5,-65.5 - parent: 30 - - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 21545 components: - type: Transform @@ -89273,37 +87584,33 @@ entities: pos: 35.5,34.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 21553 components: - type: Transform pos: 43.5,39.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - proto: GasVolumePump entities: - - uid: 8255 + - uid: 9790 components: - type: Transform - pos: -9.5,-50.5 + pos: 0.5,-49.5 parent: 30 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8258 + - uid: 10044 components: - type: Transform rot: 3.141592653589793 rad - pos: -5.5,-50.5 + pos: -1.5,-51.5 parent: 30 - - type: AtmosPipeColor - color: '#03FCD3FF' - proto: GeneratorRTG entities: - - uid: 22223 + - uid: 2402 components: - type: Transform - pos: -67.5,-64.5 + pos: -53.5,-59.5 parent: 30 - proto: Girder entities: @@ -89397,11 +87704,6 @@ entities: - type: Transform pos: -66.5,-52.5 parent: 30 - - uid: 194 - components: - - type: Transform - pos: -11.5,-56.5 - parent: 30 - uid: 317 components: - type: Transform @@ -89412,6 +87714,11 @@ entities: - type: Transform pos: -19.5,8.5 parent: 30 + - uid: 331 + components: + - type: Transform + pos: -62.5,-66.5 + parent: 30 - uid: 348 components: - type: Transform @@ -89527,6 +87834,11 @@ entities: - type: Transform pos: 6.5,0.5 parent: 30 + - uid: 399 + components: + - type: Transform + pos: -56.5,-18.5 + parent: 30 - uid: 425 components: - type: Transform @@ -90462,41 +88774,26 @@ entities: - type: Transform pos: -53.5,72.5 parent: 30 - - uid: 2402 - components: - - type: Transform - pos: -34.5,66.5 - parent: 30 - - uid: 2403 - components: - - type: Transform - pos: -33.5,66.5 - parent: 30 - uid: 2933 components: - type: Transform pos: -15.5,-16.5 parent: 30 + - uid: 3348 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -61.5,-70.5 + parent: 30 - uid: 3712 components: - type: Transform pos: -46.5,3.5 parent: 30 - - uid: 4241 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,-67.5 - parent: 30 - uid: 4370 components: - type: Transform - pos: -34.5,67.5 - parent: 30 - - uid: 4371 - components: - - type: Transform - pos: -35.5,67.5 + pos: -79.5,42.5 parent: 30 - uid: 4390 components: @@ -90513,27 +88810,6 @@ entities: - type: Transform pos: -46.5,-5.5 parent: 30 - - uid: 4412 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -35.5,-67.5 - parent: 30 - - uid: 4424 - components: - - type: Transform - pos: -36.5,68.5 - parent: 30 - - uid: 4426 - components: - - type: Transform - pos: -35.5,68.5 - parent: 30 - - uid: 4455 - components: - - type: Transform - pos: -32.5,65.5 - parent: 30 - uid: 4789 components: - type: Transform @@ -90850,11 +89126,6 @@ entities: - type: Transform pos: -50.5,4.5 parent: 30 - - uid: 5732 - components: - - type: Transform - pos: 4.5,-42.5 - parent: 30 - uid: 5771 components: - type: Transform @@ -91003,7 +89274,8 @@ entities: - uid: 6496 components: - type: Transform - pos: -32.5,64.5 + rot: -1.5707963267948966 rad + pos: -85.5,40.5 parent: 30 - uid: 6534 components: @@ -91127,7 +89399,8 @@ entities: - uid: 6717 components: - type: Transform - pos: -31.5,64.5 + rot: -1.5707963267948966 rad + pos: -88.5,40.5 parent: 30 - uid: 6746 components: @@ -91196,16 +89469,6 @@ entities: - type: Transform pos: -12.5,-13.5 parent: 30 - - uid: 7110 - components: - - type: Transform - pos: 2.5,-48.5 - parent: 30 - - uid: 7111 - components: - - type: Transform - pos: -0.5,-48.5 - parent: 30 - uid: 7172 components: - type: Transform @@ -91282,11 +89545,6 @@ entities: - type: Transform pos: -63.5,42.5 parent: 30 - - uid: 7449 - components: - - type: Transform - pos: -89.5,42.5 - parent: 30 - uid: 7457 components: - type: Transform @@ -91362,6 +89620,12 @@ entities: - type: Transform pos: 47.5,12.5 parent: 30 + - uid: 7751 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,-79.5 + parent: 30 - uid: 7839 components: - type: Transform @@ -91398,11 +89662,6 @@ entities: - type: Transform pos: -32.5,-5.5 parent: 30 - - uid: 8256 - components: - - type: Transform - pos: -20.5,-47.5 - parent: 30 - uid: 8271 components: - type: Transform @@ -91448,11 +89707,6 @@ entities: - type: Transform pos: 7.5,-12.5 parent: 30 - - uid: 8361 - components: - - type: Transform - pos: -0.5,-43.5 - parent: 30 - uid: 8373 components: - type: Transform @@ -91493,16 +89747,6 @@ entities: rot: 1.5707963267948966 rad pos: 1.5,-26.5 parent: 30 - - uid: 8418 - components: - - type: Transform - pos: 16.5,-20.5 - parent: 30 - - uid: 8422 - components: - - type: Transform - pos: 15.5,-18.5 - parent: 30 - uid: 8423 components: - type: Transform @@ -91523,11 +89767,6 @@ entities: - type: Transform pos: 17.5,-16.5 parent: 30 - - uid: 8427 - components: - - type: Transform - pos: 17.5,-18.5 - parent: 30 - uid: 8446 components: - type: Transform @@ -91862,11 +90101,6 @@ entities: rot: 1.5707963267948966 rad pos: 11.5,-35.5 parent: 30 - - uid: 9104 - components: - - type: Transform - pos: -4.5,-56.5 - parent: 30 - uid: 9105 components: - type: Transform @@ -91908,16 +90142,6 @@ entities: rot: -1.5707963267948966 rad pos: -53.5,35.5 parent: 30 - - uid: 9129 - components: - - type: Transform - pos: -5.5,-56.5 - parent: 30 - - uid: 9164 - components: - - type: Transform - pos: -9.5,-56.5 - parent: 30 - uid: 9165 components: - type: Transform @@ -91928,11 +90152,6 @@ entities: - type: Transform pos: -1.5,-31.5 parent: 30 - - uid: 9174 - components: - - type: Transform - pos: -2.5,-56.5 - parent: 30 - uid: 9185 components: - type: Transform @@ -91963,170 +90182,241 @@ entities: - type: Transform pos: -0.5,-32.5 parent: 30 - - uid: 9295 - components: - - type: Transform - pos: 4.5,-44.5 - parent: 30 - uid: 9297 components: - type: Transform pos: 4.5,-38.5 parent: 30 - - uid: 9342 + - uid: 9324 components: - type: Transform - pos: -3.5,-56.5 + rot: 3.141592653589793 rad + pos: -3.5,-60.5 parent: 30 - - uid: 9343 + - uid: 9326 components: - type: Transform - pos: -12.5,-56.5 + rot: 3.141592653589793 rad + pos: -0.5,-60.5 + parent: 30 + - uid: 9328 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-60.5 + parent: 30 + - uid: 9329 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-60.5 + parent: 30 + - uid: 9348 + components: + - type: Transform + pos: 13.5,-52.5 parent: 30 - uid: 9362 components: - type: Transform pos: -8.5,-37.5 parent: 30 + - uid: 9364 + components: + - type: Transform + pos: 11.5,-45.5 + parent: 30 - uid: 9365 components: - type: Transform pos: -6.5,-37.5 parent: 30 - - uid: 9424 + - uid: 9371 components: - type: Transform - pos: -20.5,-43.5 + pos: 8.5,-58.5 parent: 30 - - uid: 9425 + - uid: 9372 components: - type: Transform - pos: -20.5,-40.5 + pos: 8.5,-55.5 parent: 30 - - uid: 9589 + - uid: 9398 components: - type: Transform - pos: -17.5,-37.5 + pos: 8.5,-57.5 parent: 30 - - uid: 9590 + - uid: 9399 components: - type: Transform - pos: -19.5,-37.5 + pos: 8.5,-54.5 + parent: 30 + - uid: 9409 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-44.5 + parent: 30 + - uid: 9504 + components: + - type: Transform + pos: 13.5,-49.5 + parent: 30 + - uid: 9505 + components: + - type: Transform + pos: 13.5,-47.5 + parent: 30 + - uid: 9572 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,-49.5 + parent: 30 + - uid: 9573 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-42.5 + parent: 30 + - uid: 9579 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-39.5 + parent: 30 + - uid: 9580 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,-45.5 + parent: 30 + - uid: 9584 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,-45.5 + parent: 30 + - uid: 9585 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,-45.5 + parent: 30 + - uid: 9586 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-45.5 + parent: 30 + - uid: 9587 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-49.5 + parent: 30 + - uid: 9588 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-44.5 + parent: 30 + - uid: 9645 + components: + - type: Transform + pos: 12.5,-45.5 + parent: 30 + - uid: 9649 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-60.5 + parent: 30 + - uid: 9650 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-60.5 parent: 30 - uid: 9662 components: - type: Transform pos: 12.5,37.5 parent: 30 - - uid: 9682 - components: - - type: Transform - pos: 1.5,-55.5 - parent: 30 - uid: 9719 components: - type: Transform pos: 12.5,36.5 parent: 30 - - uid: 9814 - components: - - type: Transform - pos: 0.5,-55.5 - parent: 30 - - uid: 9815 - components: - - type: Transform - pos: 0.5,-47.5 - parent: 30 - uid: 9816 components: - type: Transform - pos: 1.5,-47.5 + rot: -1.5707963267948966 rad + pos: -1.5,-42.5 parent: 30 - uid: 9819 components: - type: Transform - pos: 1.5,-45.5 + rot: -1.5707963267948966 rad + pos: 2.5,-42.5 parent: 30 - - uid: 9820 + - uid: 9823 components: - type: Transform - pos: 3.5,-45.5 + rot: 1.5707963267948966 rad + pos: -16.5,-57.5 parent: 30 - - uid: 9918 + - uid: 9824 components: - type: Transform rot: -1.5707963267948966 rad - pos: 2.5,-54.5 + pos: -9.5,-45.5 parent: 30 - - uid: 9919 + - uid: 9825 components: - type: Transform rot: -1.5707963267948966 rad - pos: 2.5,-53.5 + pos: -9.5,-43.5 parent: 30 - - uid: 9920 + - uid: 9826 components: - type: Transform rot: -1.5707963267948966 rad - pos: 2.5,-52.5 + pos: -7.5,-42.5 parent: 30 - - uid: 9921 + - uid: 9827 components: - type: Transform rot: -1.5707963267948966 rad - pos: 2.5,-50.5 + pos: -5.5,-42.5 parent: 30 - - uid: 9922 + - uid: 9828 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-49.5 + rot: 1.5707963267948966 rad + pos: -17.5,-57.5 parent: 30 - - uid: 9936 + - uid: 9829 components: - type: Transform - pos: -0.5,-54.5 + rot: 1.5707963267948966 rad + pos: -15.5,-57.5 parent: 30 - - uid: 9937 + - uid: 9867 components: - type: Transform - pos: -0.5,-52.5 + rot: 1.5707963267948966 rad + pos: -18.5,-57.5 parent: 30 - - uid: 9938 + - uid: 9973 components: - type: Transform - pos: -0.5,-51.5 + pos: 11.5,-54.5 parent: 30 - - uid: 9939 + - uid: 9975 components: - type: Transform - pos: -0.5,-50.5 - parent: 30 - - uid: 9945 - components: - - type: Transform - pos: -10.5,-56.5 - parent: 30 - - uid: 9989 - components: - - type: Transform - pos: -8.5,-42.5 - parent: 30 - - uid: 9990 - components: - - type: Transform - pos: -6.5,-42.5 - parent: 30 - - uid: 9991 - components: - - type: Transform - pos: -10.5,-42.5 - parent: 30 - - uid: 9992 - components: - - type: Transform - pos: -4.5,-42.5 + pos: 10.5,-54.5 parent: 30 - uid: 10068 components: @@ -92163,70 +90453,17 @@ entities: - type: Transform pos: -57.5,-10.5 parent: 30 - - uid: 10137 + - uid: 10191 components: - type: Transform - pos: -18.5,-49.5 + rot: -1.5707963267948966 rad + pos: -14.5,-29.5 parent: 30 - - uid: 10138 + - uid: 10193 components: - type: Transform - pos: -16.5,-49.5 - parent: 30 - - uid: 10139 - components: - - type: Transform - pos: -16.5,-52.5 - parent: 30 - - uid: 10140 - components: - - type: Transform - pos: -18.5,-52.5 - parent: 30 - - uid: 10147 - components: - - type: Transform - pos: -38.5,68.5 - parent: 30 - - uid: 10148 - components: - - type: Transform - pos: -36.5,66.5 - parent: 30 - - uid: 10149 - components: - - type: Transform - pos: -37.5,67.5 - parent: 30 - - uid: 10187 - components: - - type: Transform - pos: -37.5,65.5 - parent: 30 - - uid: 10188 - components: - - type: Transform - pos: -36.5,64.5 - parent: 30 - - uid: 10189 - components: - - type: Transform - pos: -37.5,64.5 - parent: 30 - - uid: 10207 - components: - - type: Transform - pos: -37.5,68.5 - parent: 30 - - uid: 10209 - components: - - type: Transform - pos: -38.5,67.5 - parent: 30 - - uid: 10210 - components: - - type: Transform - pos: -34.5,65.5 + rot: -1.5707963267948966 rad + pos: -14.5,-28.5 parent: 30 - uid: 10221 components: @@ -92243,61 +90480,11 @@ entities: - type: Transform pos: -62.5,8.5 parent: 30 - - uid: 10227 - components: - - type: Transform - pos: -37.5,66.5 - parent: 30 - - uid: 10228 - components: - - type: Transform - pos: -38.5,66.5 - parent: 30 - - uid: 10229 - components: - - type: Transform - pos: -38.5,65.5 - parent: 30 - - uid: 10230 - components: - - type: Transform - pos: -34.5,64.5 - parent: 30 - - uid: 10231 - components: - - type: Transform - pos: -36.5,65.5 - parent: 30 - - uid: 10232 - components: - - type: Transform - pos: -35.5,66.5 - parent: 30 - - uid: 10233 - components: - - type: Transform - pos: -35.5,65.5 - parent: 30 - uid: 10234 components: - type: Transform pos: -57.5,-7.5 parent: 30 - - uid: 10235 - components: - - type: Transform - pos: -36.5,67.5 - parent: 30 - - uid: 10236 - components: - - type: Transform - pos: -33.5,64.5 - parent: 30 - - uid: 10237 - components: - - type: Transform - pos: -33.5,65.5 - parent: 30 - uid: 10288 components: - type: Transform @@ -92309,40 +90496,48 @@ entities: - type: Transform pos: 23.5,-16.5 parent: 30 - - uid: 10435 + - uid: 10553 components: - type: Transform - pos: -25.5,-67.5 + pos: 13.5,-51.5 parent: 30 - - uid: 10436 + - uid: 10555 components: - type: Transform - pos: -26.5,-67.5 + pos: 12.5,-54.5 parent: 30 - - uid: 10437 + - uid: 10582 components: - type: Transform - pos: -27.5,-67.5 + rot: 3.141592653589793 rad + pos: 4.5,-60.5 parent: 30 - - uid: 10438 + - uid: 10614 components: - type: Transform - pos: -28.5,-67.5 + pos: 7.5,-59.5 parent: 30 - - uid: 10439 + - uid: 10639 components: - type: Transform - pos: -29.5,-67.5 + pos: 10.5,-45.5 parent: 30 - - uid: 10440 + - uid: 10641 components: - type: Transform - pos: -33.5,-67.5 + rot: 3.141592653589793 rad + pos: -3.5,-61.5 parent: 30 - - uid: 10441 + - uid: 10655 components: - type: Transform - pos: -32.5,-67.5 + rot: 3.141592653589793 rad + pos: 16.5,-19.5 + parent: 30 + - uid: 10657 + components: + - type: Transform + pos: -8.5,-64.5 parent: 30 - uid: 10738 components: @@ -92350,6 +90545,146 @@ entities: rot: 1.5707963267948966 rad pos: 2.5,-26.5 parent: 30 + - uid: 11030 + components: + - type: Transform + pos: -32.5,-52.5 + parent: 30 + - uid: 11031 + components: + - type: Transform + pos: -31.5,-52.5 + parent: 30 + - uid: 11033 + components: + - type: Transform + pos: -30.5,-52.5 + parent: 30 + - uid: 11034 + components: + - type: Transform + pos: -28.5,-53.5 + parent: 30 + - uid: 11036 + components: + - type: Transform + pos: -27.5,-53.5 + parent: 30 + - uid: 11040 + components: + - type: Transform + pos: -24.5,-76.5 + parent: 30 + - uid: 11041 + components: + - type: Transform + pos: -15.5,-76.5 + parent: 30 + - uid: 11043 + components: + - type: Transform + pos: -8.5,-68.5 + parent: 30 + - uid: 11044 + components: + - type: Transform + pos: -34.5,-52.5 + parent: 30 + - uid: 11045 + components: + - type: Transform + pos: -35.5,-52.5 + parent: 30 + - uid: 11046 + components: + - type: Transform + pos: -37.5,-52.5 + parent: 30 + - uid: 11047 + components: + - type: Transform + pos: -38.5,-52.5 + parent: 30 + - uid: 11048 + components: + - type: Transform + pos: -40.5,-52.5 + parent: 30 + - uid: 11049 + components: + - type: Transform + pos: -40.5,-51.5 + parent: 30 + - uid: 11050 + components: + - type: Transform + pos: -40.5,-50.5 + parent: 30 + - uid: 11051 + components: + - type: Transform + pos: -43.5,-54.5 + parent: 30 + - uid: 11052 + components: + - type: Transform + pos: -44.5,-54.5 + parent: 30 + - uid: 11053 + components: + - type: Transform + pos: -44.5,-56.5 + parent: 30 + - uid: 11054 + components: + - type: Transform + pos: -44.5,-58.5 + parent: 30 + - uid: 11055 + components: + - type: Transform + pos: -45.5,-58.5 + parent: 30 + - uid: 11056 + components: + - type: Transform + pos: -46.5,-58.5 + parent: 30 + - uid: 11085 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,-57.5 + parent: 30 + - uid: 11105 + components: + - type: Transform + pos: -11.5,-32.5 + parent: 30 + - uid: 11111 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,-32.5 + parent: 30 + - uid: 11137 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,-57.5 + parent: 30 + - uid: 11163 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-17.5 + parent: 30 + - uid: 11173 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,-72.5 + parent: 30 - uid: 11194 components: - type: Transform @@ -92361,15 +90696,41 @@ entities: rot: 1.5707963267948966 rad pos: 26.5,-12.5 parent: 30 - - uid: 11257 + - uid: 11264 components: - type: Transform - pos: -18.5,-45.5 + rot: 3.141592653589793 rad + pos: -7.5,-78.5 parent: 30 - - uid: 11258 + - uid: 11265 components: - type: Transform - pos: -16.5,-45.5 + rot: 3.141592653589793 rad + pos: -8.5,-78.5 + parent: 30 + - uid: 11266 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-78.5 + parent: 30 + - uid: 11267 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,-79.5 + parent: 30 + - uid: 11276 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,-76.5 + parent: 30 + - uid: 11279 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,-78.5 parent: 30 - uid: 11293 components: @@ -92403,6 +90764,12 @@ entities: rot: 1.5707963267948966 rad pos: -0.5,-22.5 parent: 30 + - uid: 11309 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-31.5 + parent: 30 - uid: 11580 components: - type: Transform @@ -92524,15 +90891,17 @@ entities: - type: Transform pos: 47.5,6.5 parent: 30 - - uid: 12629 + - uid: 12442 components: - type: Transform - pos: 13.5,13.5 + rot: 1.5707963267948966 rad + pos: -20.5,-57.5 parent: 30 - uid: 12650 components: - type: Transform - pos: 15.5,13.5 + rot: -1.5707963267948966 rad + pos: -88.5,42.5 parent: 30 - uid: 12662 components: @@ -92581,6 +90950,12 @@ entities: - type: Transform pos: 19.5,24.5 parent: 30 + - uid: 12860 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -62.5,-71.5 + parent: 30 - uid: 12863 components: - type: Transform @@ -92606,6 +90981,11 @@ entities: - type: Transform pos: 35.5,11.5 parent: 30 + - uid: 12929 + components: + - type: Transform + pos: -61.5,-18.5 + parent: 30 - uid: 13097 components: - type: Transform @@ -92816,6 +91196,42 @@ entities: - type: Transform pos: 40.5,36.5 parent: 30 + - uid: 13973 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-72.5 + parent: 30 + - uid: 13979 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,-71.5 + parent: 30 + - uid: 13980 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,-77.5 + parent: 30 + - uid: 13981 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,-78.5 + parent: 30 + - uid: 13982 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,-78.5 + parent: 30 + - uid: 14358 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,12.5 + parent: 30 - uid: 14514 components: - type: Transform @@ -92826,11 +91242,6 @@ entities: - type: Transform pos: 54.5,23.5 parent: 30 - - uid: 14517 - components: - - type: Transform - pos: 49.5,23.5 - parent: 30 - uid: 14518 components: - type: Transform @@ -92851,6 +91262,36 @@ entities: - type: Transform pos: 47.5,27.5 parent: 30 + - uid: 14526 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,65.5 + parent: 30 + - uid: 14527 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,68.5 + parent: 30 + - uid: 14528 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,65.5 + parent: 30 + - uid: 14529 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,66.5 + parent: 30 + - uid: 14534 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,65.5 + parent: 30 - uid: 14536 components: - type: Transform @@ -92861,11 +91302,6 @@ entities: - type: Transform pos: 15.5,65.5 parent: 30 - - uid: 14538 - components: - - type: Transform - pos: -26.5,-54.5 - parent: 30 - uid: 14778 components: - type: Transform @@ -92896,6 +91332,18 @@ entities: - type: Transform pos: 20.5,60.5 parent: 30 + - uid: 14845 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,69.5 + parent: 30 + - uid: 14970 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,64.5 + parent: 30 - uid: 14971 components: - type: Transform @@ -92906,6 +91354,24 @@ entities: - type: Transform pos: 41.5,24.5 parent: 30 + - uid: 15073 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,66.5 + parent: 30 + - uid: 15166 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,65.5 + parent: 30 + - uid: 15180 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,69.5 + parent: 30 - uid: 15207 components: - type: Transform @@ -92926,6 +91392,12 @@ entities: - type: Transform pos: 17.5,63.5 parent: 30 + - uid: 15280 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,63.5 + parent: 30 - uid: 15336 components: - type: Transform @@ -92951,6 +91423,18 @@ entities: - type: Transform pos: 52.5,31.5 parent: 30 + - uid: 15349 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,67.5 + parent: 30 + - uid: 15353 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -67.5,-70.5 + parent: 30 - uid: 15445 components: - type: Transform @@ -93231,6 +91715,17 @@ entities: - type: Transform pos: 47.5,9.5 parent: 30 + - uid: 15985 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,65.5 + parent: 30 + - uid: 16133 + components: + - type: Transform + pos: -75.5,42.5 + parent: 30 - uid: 16259 components: - type: Transform @@ -93442,6 +91937,12 @@ entities: rot: 3.141592653589793 rad pos: 36.5,11.5 parent: 30 + - uid: 16795 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -61.5,-71.5 + parent: 30 - uid: 16807 components: - type: Transform @@ -94005,6 +92506,11 @@ entities: - type: Transform pos: -79.5,-37.5 parent: 30 + - uid: 17734 + components: + - type: Transform + pos: -66.5,-18.5 + parent: 30 - uid: 17796 components: - type: Transform @@ -94053,6 +92559,11 @@ entities: rot: -1.5707963267948966 rad pos: -47.5,-22.5 parent: 30 + - uid: 17810 + components: + - type: Transform + pos: -85.5,-44.5 + parent: 30 - uid: 17975 components: - type: Transform @@ -94178,6 +92689,21 @@ entities: - type: Transform pos: -37.5,-38.5 parent: 30 + - uid: 18070 + components: + - type: Transform + pos: -71.5,42.5 + parent: 30 + - uid: 18072 + components: + - type: Transform + pos: -57.5,-18.5 + parent: 30 + - uid: 18086 + components: + - type: Transform + pos: -85.5,-46.5 + parent: 30 - uid: 18154 components: - type: Transform @@ -94253,15 +92779,11 @@ entities: - type: Transform pos: -85.5,-59.5 parent: 30 - - uid: 18187 + - uid: 18206 components: - type: Transform - pos: -59.5,-69.5 - parent: 30 - - uid: 18188 - components: - - type: Transform - pos: -58.5,-69.5 + rot: 3.141592653589793 rad + pos: 15.5,10.5 parent: 30 - uid: 18260 components: @@ -94368,6 +92890,40 @@ entities: - type: Transform pos: -52.5,-40.5 parent: 30 + - uid: 18358 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -65.5,-71.5 + parent: 30 + - uid: 18789 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -65.5,-70.5 + parent: 30 + - uid: 18797 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -64.5,-71.5 + parent: 30 + - uid: 18801 + components: + - type: Transform + pos: -64.5,-66.5 + parent: 30 + - uid: 18802 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -81.5,40.5 + parent: 30 + - uid: 18803 + components: + - type: Transform + pos: -63.5,-66.5 + parent: 30 - uid: 18816 components: - type: Transform @@ -94378,11 +92934,107 @@ entities: - type: Transform pos: -74.5,-67.5 parent: 30 + - uid: 18835 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -83.5,40.5 + parent: 30 - uid: 19067 components: - type: Transform pos: -51.5,-40.5 parent: 30 + - uid: 19190 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-77.5 + parent: 30 + - uid: 19191 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-62.5 + parent: 30 + - uid: 19192 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-76.5 + parent: 30 + - uid: 19193 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,-64.5 + parent: 30 + - uid: 19194 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-63.5 + parent: 30 + - uid: 19231 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,-63.5 + parent: 30 + - uid: 19232 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-64.5 + parent: 30 + - uid: 19233 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,-62.5 + parent: 30 + - uid: 19236 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,-79.5 + parent: 30 + - uid: 19237 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,-79.5 + parent: 30 + - uid: 19238 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-79.5 + parent: 30 + - uid: 19239 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-79.5 + parent: 30 + - uid: 19423 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-70.5 + parent: 30 + - uid: 19425 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-71.5 + parent: 30 + - uid: 19426 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,-70.5 + parent: 30 - uid: 19641 components: - type: Transform @@ -94948,96 +93600,6 @@ entities: - type: Transform pos: -40.5,32.5 parent: 30 - - uid: 21392 - components: - - type: Transform - pos: -25.5,-54.5 - parent: 30 - - uid: 21393 - components: - - type: Transform - pos: -24.5,-54.5 - parent: 30 - - uid: 21394 - components: - - type: Transform - pos: -23.5,-54.5 - parent: 30 - - uid: 21397 - components: - - type: Transform - pos: -10.5,-63.5 - parent: 30 - - uid: 21398 - components: - - type: Transform - pos: -9.5,-63.5 - parent: 30 - - uid: 21399 - components: - - type: Transform - pos: -8.5,-63.5 - parent: 30 - - uid: 21400 - components: - - type: Transform - pos: -7.5,-63.5 - parent: 30 - - uid: 21401 - components: - - type: Transform - pos: -6.5,-63.5 - parent: 30 - - uid: 21402 - components: - - type: Transform - pos: -5.5,-63.5 - parent: 30 - - uid: 21403 - components: - - type: Transform - pos: -4.5,-63.5 - parent: 30 - - uid: 21404 - components: - - type: Transform - pos: 6.5,-54.5 - parent: 30 - - uid: 21405 - components: - - type: Transform - pos: 6.5,-53.5 - parent: 30 - - uid: 21406 - components: - - type: Transform - pos: 6.5,-52.5 - parent: 30 - - uid: 21407 - components: - - type: Transform - pos: 6.5,-51.5 - parent: 30 - - uid: 21408 - components: - - type: Transform - pos: 6.5,-50.5 - parent: 30 - - uid: 21409 - components: - - type: Transform - pos: 6.5,-49.5 - parent: 30 - - uid: 21410 - components: - - type: Transform - pos: 6.5,-48.5 - parent: 30 - - uid: 21411 - components: - - type: Transform - pos: 6.5,-55.5 - parent: 30 - uid: 21412 components: - type: Transform @@ -95098,21 +93660,11 @@ entities: - type: Transform pos: 10.5,-42.5 parent: 30 - - uid: 21424 - components: - - type: Transform - pos: 6.5,-44.5 - parent: 30 - uid: 21425 components: - type: Transform pos: 23.5,-41.5 parent: 30 - - uid: 21426 - components: - - type: Transform - pos: 6.5,-41.5 - parent: 30 - uid: 21427 components: - type: Transform @@ -95123,16 +93675,6 @@ entities: - type: Transform pos: 8.5,-41.5 parent: 30 - - uid: 21429 - components: - - type: Transform - pos: 7.5,-44.5 - parent: 30 - - uid: 21430 - components: - - type: Transform - pos: 8.5,-44.5 - parent: 30 - uid: 21431 components: - type: Transform @@ -95213,11 +93755,6 @@ entities: - type: Transform pos: 19.5,65.5 parent: 30 - - uid: 21457 - components: - - type: Transform - pos: -14.5,-43.5 - parent: 30 - uid: 21516 components: - type: Transform @@ -95263,16 +93800,6 @@ entities: - type: Transform pos: -69.5,-52.5 parent: 30 - - uid: 22211 - components: - - type: Transform - pos: -69.5,-60.5 - parent: 30 - - uid: 22212 - components: - - type: Transform - pos: -69.5,-59.5 - parent: 30 - uid: 22273 components: - type: Transform @@ -95288,261 +93815,6 @@ entities: - type: Transform pos: 3.5,62.5 parent: 30 - - uid: 22623 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,-63.5 - parent: 30 - - uid: 22624 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,-62.5 - parent: 30 - - uid: 22625 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,-61.5 - parent: 30 - - uid: 22626 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,-61.5 - parent: 30 - - uid: 22627 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,-61.5 - parent: 30 - - uid: 22628 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,-59.5 - parent: 30 - - uid: 22629 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,-59.5 - parent: 30 - - uid: 22630 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,-59.5 - parent: 30 - - uid: 22651 - components: - - type: Transform - pos: -32.5,-57.5 - parent: 30 - - uid: 22652 - components: - - type: Transform - pos: -32.5,-58.5 - parent: 30 - - uid: 22653 - components: - - type: Transform - pos: -30.5,-61.5 - parent: 30 - - uid: 22856 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,-67.5 - parent: 30 - - uid: 22857 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,-67.5 - parent: 30 - - uid: 22858 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,-67.5 - parent: 30 - - uid: 22859 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -39.5,-67.5 - parent: 30 - - uid: 22860 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -40.5,-67.5 - parent: 30 - - uid: 22861 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -41.5,-67.5 - parent: 30 - - uid: 22862 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -44.5,-66.5 - parent: 30 - - uid: 22863 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -44.5,-65.5 - parent: 30 - - uid: 22864 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -44.5,-64.5 - parent: 30 - - uid: 22865 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -44.5,-63.5 - parent: 30 - - uid: 22866 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -44.5,-62.5 - parent: 30 - - uid: 22867 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -44.5,-61.5 - parent: 30 - - uid: 22868 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -44.5,-60.5 - parent: 30 - - uid: 22869 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -44.5,-59.5 - parent: 30 - - uid: 22870 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -44.5,-58.5 - parent: 30 - - uid: 22871 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -44.5,-57.5 - parent: 30 - - uid: 22872 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -44.5,-56.5 - parent: 30 - - uid: 22873 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -44.5,-55.5 - parent: 30 - - uid: 22874 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -44.5,-54.5 - parent: 30 - - uid: 22875 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -41.5,-53.5 - parent: 30 - - uid: 22876 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -40.5,-53.5 - parent: 30 - - uid: 22877 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -39.5,-53.5 - parent: 30 - - uid: 22878 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,-53.5 - parent: 30 - - uid: 22879 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,-53.5 - parent: 30 - - uid: 22880 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,-53.5 - parent: 30 - - uid: 22881 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -35.5,-53.5 - parent: 30 - - uid: 22882 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,-53.5 - parent: 30 - - uid: 22883 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,-53.5 - parent: 30 - - uid: 22884 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,-53.5 - parent: 30 - - uid: 22885 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,-53.5 - parent: 30 - - uid: 22886 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,-53.5 - parent: 30 - - uid: 22887 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -29.5,-53.5 - parent: 30 - proto: GrilleBroken entities: - uid: 695 @@ -95630,29 +93902,16 @@ entities: - type: Transform pos: -62.5,9.5 parent: 30 - - uid: 10529 + - uid: 11042 + components: + - type: Transform + pos: -26.5,-70.5 + parent: 30 + - uid: 13978 components: - type: Transform rot: 3.141592653589793 rad - pos: -33.5,-68.5 - parent: 30 - - uid: 10530 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,-67.5 - parent: 30 - - uid: 10531 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -30.5,-67.5 - parent: 30 - - uid: 10532 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,-67.5 + pos: -8.5,-72.5 parent: 30 - uid: 15444 components: @@ -95733,6 +93992,12 @@ entities: rot: 3.141592653589793 rad pos: 56.5,39.5 parent: 30 + - uid: 16132 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -88.5,41.5 + parent: 30 - uid: 16410 components: - type: Transform @@ -95880,6 +94145,12 @@ entities: rot: -1.5707963267948966 rad pos: -65.5,-21.5 parent: 30 + - uid: 18599 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -87.5,40.5 + parent: 30 - uid: 19643 components: - type: Transform @@ -95955,10 +94226,10 @@ entities: - type: Transform pos: -32.534565,30.536125 parent: 30 - - uid: 9421 + - uid: 18923 components: - type: Transform - pos: -22.512821,-47.59407 + pos: -15.53532,-37.702564 parent: 30 - proto: HandheldHealthAnalyzer entities: @@ -96018,35 +94289,6 @@ entities: - type: Transform pos: -43.530403,66.65333 parent: 30 -- proto: HeatExchanger - entities: - - uid: 3118 - components: - - type: Transform - pos: -3.5,-58.5 - parent: 30 - - uid: 3155 - components: - - type: Transform - pos: -3.5,-57.5 - parent: 30 - - uid: 7104 - components: - - type: Transform - pos: -11.5,-58.5 - parent: 30 - - uid: 8295 - components: - - type: Transform - pos: 3.5,-51.5 - parent: 30 - - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 9621 - components: - - type: Transform - pos: -11.5,-57.5 - parent: 30 - proto: HighSecCommandLocked entities: - uid: 2128 @@ -96210,16 +94452,16 @@ entities: parent: 30 - proto: HydroponicsToolMiniHoe entities: - - uid: 434 - components: - - type: Transform - pos: -25.483442,11.482555 - parent: 30 - uid: 2347 components: - type: Transform pos: -45.453583,69.54325 parent: 30 + - uid: 18857 + components: + - type: Transform + pos: -28.537731,11.513851 + parent: 30 - uid: 19544 components: - type: Transform @@ -96234,16 +94476,16 @@ entities: parent: 30 - proto: HydroponicsToolSpade entities: - - uid: 435 - components: - - type: Transform - pos: -25.499067,11.52943 - parent: 30 - uid: 697 components: - type: Transform pos: -45.386658,69.59978 parent: 30 + - uid: 18858 + components: + - type: Transform + pos: -28.478325,11.558405 + parent: 30 - uid: 19542 components: - type: Transform @@ -96266,56 +94508,6 @@ entities: - type: Transform pos: -21.5,12.5 parent: 30 - - uid: 331 - components: - - type: Transform - pos: -25.5,5.5 - parent: 30 - - uid: 332 - components: - - type: Transform - pos: -26.5,5.5 - parent: 30 - - uid: 333 - components: - - type: Transform - pos: -27.5,5.5 - parent: 30 - - uid: 334 - components: - - type: Transform - pos: -28.5,5.5 - parent: 30 - - uid: 335 - components: - - type: Transform - pos: -28.5,7.5 - parent: 30 - - uid: 336 - components: - - type: Transform - pos: -28.5,8.5 - parent: 30 - - uid: 337 - components: - - type: Transform - pos: -28.5,9.5 - parent: 30 - - uid: 338 - components: - - type: Transform - pos: -28.5,10.5 - parent: 30 - - uid: 339 - components: - - type: Transform - pos: -28.5,11.5 - parent: 30 - - uid: 340 - components: - - type: Transform - pos: -28.5,13.5 - parent: 30 - uid: 341 components: - type: Transform @@ -96366,6 +94558,51 @@ entities: - type: Transform pos: -47.5,69.5 parent: 30 + - uid: 16138 + components: + - type: Transform + pos: -28.5,12.5 + parent: 30 + - uid: 16139 + components: + - type: Transform + pos: -27.5,11.5 + parent: 30 + - uid: 16163 + components: + - type: Transform + pos: -26.5,11.5 + parent: 30 + - uid: 16165 + components: + - type: Transform + pos: -28.5,10.5 + parent: 30 + - uid: 16172 + components: + - type: Transform + pos: -27.5,9.5 + parent: 30 + - uid: 16242 + components: + - type: Transform + pos: -26.5,9.5 + parent: 30 + - uid: 18174 + components: + - type: Transform + pos: -26.5,7.5 + parent: 30 + - uid: 18184 + components: + - type: Transform + pos: -27.5,7.5 + parent: 30 + - uid: 18856 + components: + - type: Transform + pos: -28.5,8.5 + parent: 30 - proto: InflatableDoorStack entities: - uid: 9249 @@ -96511,23 +94748,12 @@ entities: rot: -1.5707963267948966 rad pos: 8.5,-33.5 parent: 30 - - uid: 22291 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,-37.5 - parent: 30 - uid: 22514 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,82.5 parent: 30 - - uid: 22657 - components: - - type: Transform - pos: -29.5,-56.5 - parent: 30 - proto: IntercomMedical entities: - uid: 7346 @@ -96549,11 +94775,11 @@ entities: parent: 30 - proto: IntercomScience entities: - - uid: 22287 + - uid: 14357 components: - type: Transform rot: -1.5707963267948966 rad - pos: 16.5,14.5 + pos: 16.5,17.5 parent: 30 - uid: 22288 components: @@ -98041,12 +96267,6 @@ entities: rot: 3.141592653589793 rad pos: 15.5,-7.5 parent: 30 - - uid: 961 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,16.5 - parent: 30 - uid: 1753 components: - type: Transform @@ -98058,17 +96278,18 @@ entities: rot: -1.5707963267948966 rad pos: -8.5,-0.5 parent: 30 + - uid: 16403 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,14.5 + parent: 30 - proto: JetpackBlueFilled entities: - - uid: 8311 + - uid: 5722 components: - type: Transform - pos: -20.563852,-46.460617 - parent: 30 - - uid: 21590 - components: - - type: Transform - pos: -17.545162,-28.366238 + pos: -10.241633,-47.32097 parent: 30 - proto: JetpackMini entities: @@ -98094,6 +96315,13 @@ entities: - type: Transform pos: -39.62777,56.71206 parent: 30 +- proto: KitchenElectricGrill + entities: + - uid: 18855 + components: + - type: Transform + pos: -14.5,7.5 + parent: 30 - proto: KitchenMicrowave entities: - uid: 483 @@ -98309,16 +96537,16 @@ entities: - type: Transform pos: -57.474648,-39.373875 parent: 30 + - uid: 18354 + components: + - type: Transform + pos: -62.42038,-64.31795 + parent: 30 - uid: 19504 components: - type: Transform pos: -77.46411,-65.291664 parent: 30 - - uid: 19505 - components: - - type: Transform - pos: -60.62825,-65.170204 - parent: 30 - uid: 21649 components: - type: Transform @@ -98338,11 +96566,6 @@ entities: - type: Transform pos: -51.439194,-51.2885 parent: 30 - - uid: 19431 - components: - - type: Transform - pos: -57.92594,-62.49692 - parent: 30 - uid: 21670 components: - type: Transform @@ -98621,40 +96844,11 @@ entities: - 0 - proto: LockerChiefEngineerFilled entities: - - uid: 9604 + - uid: 11058 components: - type: Transform - pos: -19.5,-34.5 + pos: -5.5,-36.5 parent: 30 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 9329 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - proto: LockerChiefMedicalOfficerFilledHardsuit entities: - uid: 6941 @@ -98689,6 +96883,11 @@ entities: - 0 - proto: LockerElectricalSuppliesFilled entities: + - uid: 11061 + components: + - type: Transform + pos: -4.5,-45.5 + parent: 30 - uid: 16994 components: - type: Transform @@ -98712,72 +96911,44 @@ entities: - 0 - 0 - 0 - - uid: 16995 - components: - - type: Transform - pos: -5.5,-36.5 - parent: 30 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - proto: LockerEngineerFilled entities: - - uid: 9048 + - uid: 10760 components: - type: Transform - pos: 3.5,-42.5 + pos: -22.5,-50.5 parent: 30 - - uid: 9435 + - uid: 10762 components: - type: Transform - pos: 3.5,-41.5 + pos: -23.5,-50.5 + parent: 30 + - uid: 15013 + components: + - type: Transform + pos: -25.5,-48.5 + parent: 30 + - uid: 16038 + components: + - type: Transform + pos: -25.5,-49.5 + parent: 30 + - uid: 19408 + components: + - type: Transform + pos: -21.5,-50.5 parent: 30 - proto: LockerEngineerFilledHardsuit entities: - - uid: 8835 + - uid: 10763 components: - type: Transform - pos: -25.5,-43.5 + pos: 3.5,-40.5 parent: 30 - - uid: 8836 + - uid: 10766 components: - type: Transform - pos: -25.5,-42.5 - parent: 30 - - uid: 8837 - components: - - type: Transform - pos: -25.5,-44.5 - parent: 30 - - uid: 9700 - components: - - type: Transform - pos: -21.5,-39.5 - parent: 30 - - uid: 9701 - components: - - type: Transform - pos: -22.5,-39.5 - parent: 30 - - uid: 20804 - components: - - type: Transform - pos: -15.5,-38.5 + pos: 3.5,-39.5 parent: 30 - proto: LockerEvidence entities: @@ -99669,6 +97840,11 @@ entities: - type: Transform pos: -42.5,-23.5 parent: 30 + - uid: 10587 + components: + - type: Transform + pos: -4.5,-43.5 + parent: 30 - uid: 15047 components: - type: Transform @@ -99692,29 +97868,6 @@ entities: - 0 - 0 - 0 - - uid: 16996 - components: - - type: Transform - pos: -9.5,-36.5 - parent: 30 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - proto: MachineAnomalyGenerator entities: - uid: 22436 @@ -99769,48 +97922,6 @@ entities: - type: Transform pos: -6.5,-12.5 parent: 30 -- proto: MachineParticleAcceleratorEmitterForeCircuitboard - entities: - - uid: 10198 - components: - - type: Transform - pos: -20.589485,-68.29703 - parent: 30 -- proto: MachineParticleAcceleratorEmitterPortCircuitboard - entities: - - uid: 10199 - components: - - type: Transform - pos: -20.433235,-68.45328 - parent: 30 -- proto: MachineParticleAcceleratorEmitterStarboardCircuitboard - entities: - - uid: 10203 - components: - - type: Transform - pos: -20.29261,-68.60953 - parent: 30 -- proto: MachineParticleAcceleratorEndCapCircuitboard - entities: - - uid: 10204 - components: - - type: Transform - pos: -20.620735,-69.29703 - parent: 30 -- proto: MachineParticleAcceleratorFuelChamberCircuitboard - entities: - - uid: 10200 - components: - - type: Transform - pos: -20.495735,-69.42203 - parent: 30 -- proto: MachineParticleAcceleratorPowerBoxCircuitboard - entities: - - uid: 10201 - components: - - type: Transform - pos: -20.370735,-69.56265 - parent: 30 - proto: MagazinePistolSubMachineGunTopMounted entities: - uid: 1999 @@ -99912,6 +98023,11 @@ entities: parent: 30 - proto: MaintenancePlantSpawner entities: + - uid: 10188 + components: + - type: Transform + pos: -54.5,-64.5 + parent: 30 - uid: 20805 components: - type: Transform @@ -99927,11 +98043,6 @@ entities: - type: Transform pos: 2.5,-13.5 parent: 30 - - uid: 20808 - components: - - type: Transform - pos: -63.5,-64.5 - parent: 30 - proto: MaintenanceToolSpawner entities: - uid: 9197 @@ -100592,10 +98703,15 @@ entities: - type: Transform pos: -7.520787,46.572483 parent: 30 - - uid: 10008 + - uid: 9396 components: - type: Transform - pos: -13.775943,-44.693085 + pos: -2.6778464,-45.34802 + parent: 30 + - uid: 9502 + components: + - type: Transform + pos: -11.53326,-33.503338 parent: 30 - uid: 11733 components: @@ -100607,11 +98723,6 @@ entities: - type: Transform pos: -52.471344,41.489742 parent: 30 - - uid: 22843 - components: - - type: Transform - pos: -31.465784,-57.403034 - parent: 30 - proto: MysteryFigureBox entities: - uid: 20788 @@ -100626,11 +98737,6 @@ entities: - type: Transform pos: -19.5,23.5 parent: 30 - - uid: 7770 - components: - - type: Transform - pos: -11.5,-37.5 - parent: 30 - uid: 8771 components: - type: Transform @@ -100641,10 +98747,15 @@ entities: - type: Transform pos: 21.5,-19.5 parent: 30 - - uid: 10397 + - uid: 10560 components: - type: Transform - pos: -14.5,-46.5 + pos: -5.5,-48.5 + parent: 30 + - uid: 11113 + components: + - type: Transform + pos: -11.5,-37.5 parent: 30 - uid: 15154 components: @@ -100673,15 +98784,10 @@ entities: parent: 30 - proto: NitrogenTankFilled entities: - - uid: 8247 + - uid: 7230 components: - type: Transform - pos: -10.592361,-38.446224 - parent: 30 - - uid: 8266 - components: - - type: Transform - pos: -10.592361,-38.446224 + pos: -9.3813,-38.5809 parent: 30 - proto: NitrousOxideCanister entities: @@ -100753,13 +98859,6 @@ entities: - Uranium - Gold - Silver -- proto: OrganHumanAppendix - entities: - - uid: 2088 - components: - - type: Transform - pos: -51.46508,-63.54434 - parent: 30 - proto: OxygenCanister entities: - uid: 778 @@ -100817,25 +98916,25 @@ entities: - type: Transform pos: 21.5,-13.5 parent: 30 - - uid: 9427 + - uid: 9676 components: - type: Transform - pos: -13.5,-37.5 + pos: -5.5,-47.5 parent: 30 - uid: 9845 components: - type: Transform pos: -38.5,-10.5 parent: 30 - - uid: 10444 + - uid: 11112 components: - type: Transform - pos: -14.5,-48.5 + pos: -13.5,-37.5 parent: 30 - - uid: 11266 + - uid: 13968 components: - type: Transform - pos: -18.5,-50.5 + pos: -16.5,-50.5 parent: 30 - uid: 15155 components: @@ -100869,25 +98968,20 @@ entities: parent: 30 - proto: OxygenTankFilled entities: - - uid: 8226 + - uid: 7228 components: - type: Transform - pos: -10.326736,-38.446224 + pos: -9.625428,-38.389084 parent: 30 - - uid: 8260 + - uid: 9061 components: - type: Transform - pos: -10.326736,-38.446224 + pos: 4.148211,-46.341225 parent: 30 - - uid: 10012 + - uid: 9659 components: - type: Transform - pos: -1.4952288,-44.42826 - parent: 30 - - uid: 11333 - components: - - type: Transform - pos: -1.4344845,-44.759243 + pos: 4.462089,-46.463287 parent: 30 - uid: 19791 components: @@ -101154,26 +99248,6 @@ entities: - type: Transform pos: -82.50391,-46.268623 parent: 30 - - uid: 19426 - components: - - type: Transform - pos: -60.607536,-67.34395 - parent: 30 - - uid: 19427 - components: - - type: Transform - pos: -60.545036,-67.39082 - parent: 30 - - uid: 19428 - components: - - type: Transform - pos: -60.420036,-67.48457 - parent: 30 - - uid: 19429 - components: - - type: Transform - pos: -60.34191,-67.51582 - parent: 30 - uid: 19499 components: - type: Transform @@ -101238,12 +99312,54 @@ entities: - type: Transform pos: 12.5,58.5 parent: 30 -- proto: ParticleAcceleratorComputerCircuitboard +- proto: ParticleAcceleratorControlBoxUnfinished entities: - - uid: 11445 + - uid: 10674 components: - type: Transform - pos: -21.580353,-68.38637 + pos: -18.5,-53.5 + parent: 30 +- proto: ParticleAcceleratorEmitterForeUnfinished + entities: + - uid: 8247 + components: + - type: Transform + pos: -17.5,-55.5 + parent: 30 +- proto: ParticleAcceleratorEmitterPortUnfinished + entities: + - uid: 6659 + components: + - type: Transform + pos: -16.5,-55.5 + parent: 30 +- proto: ParticleAcceleratorEmitterStarboardUnfinished + entities: + - uid: 10682 + components: + - type: Transform + pos: -18.5,-55.5 + parent: 30 +- proto: ParticleAcceleratorEndCapUnfinished + entities: + - uid: 11159 + components: + - type: Transform + pos: -17.5,-52.5 + parent: 30 +- proto: ParticleAcceleratorFuelChamberUnfinished + entities: + - uid: 10650 + components: + - type: Transform + pos: -17.5,-53.5 + parent: 30 +- proto: ParticleAcceleratorPowerBoxUnfinished + entities: + - uid: 11310 + components: + - type: Transform + pos: -17.5,-54.5 parent: 30 - proto: PartRodMetal entities: @@ -101252,26 +99368,6 @@ entities: - type: Transform pos: 13.637659,-25.423977 parent: 30 - - uid: 9420 - components: - - type: Transform - pos: -22.434696,-47.53157 - parent: 30 - - uid: 10193 - components: - - type: Transform - pos: -14.444823,-68.47732 - parent: 30 - - uid: 10196 - components: - - type: Transform - pos: -14.444823,-68.47732 - parent: 30 - - uid: 10197 - components: - - type: Transform - pos: -14.444823,-68.47732 - parent: 30 - uid: 10312 components: - type: Transform @@ -101287,21 +99383,6 @@ entities: - type: Transform pos: -38.461082,27.525124 parent: 30 - - uid: 11283 - components: - - type: Transform - pos: 0.5099411,-44.458656 - parent: 30 - - uid: 11284 - components: - - type: Transform - pos: 0.5099411,-44.458656 - parent: 30 - - uid: 18789 - components: - - type: Transform - pos: -62.4926,-63.50162 - parent: 30 - proto: PartRodMetal1 entities: - uid: 7881 @@ -101402,11 +99483,6 @@ entities: - type: Transform pos: 14.729029,-15.188093 parent: 30 - - uid: 9617 - components: - - type: Transform - pos: -17.887093,-35.280422 - parent: 30 - uid: 9624 components: - type: Transform @@ -101422,29 +99498,26 @@ entities: - type: Transform pos: 25.341276,2.226799 parent: 30 + - uid: 16951 + components: + - type: Transform + pos: -62.22052,-64.60359 + parent: 30 + - uid: 16966 + components: + - type: Transform + pos: -65.47299,-63.534283 + parent: 30 - uid: 17651 components: - type: Transform pos: -82.31641,-46.003 parent: 30 - - uid: 19425 - components: - - type: Transform - pos: -60.52941,-65.45332 - parent: 30 - uid: 19563 components: - type: Transform pos: -72.2945,-65.28793 parent: 30 -- proto: PercentileDie - entities: - - uid: 19473 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -57.4998,-65.351234 - parent: 30 - proto: PersonalAI entities: - uid: 5854 @@ -101462,10 +99535,10 @@ entities: - type: Transform pos: 23.590357,36.58234 parent: 30 - - uid: 19523 + - uid: 17527 components: - type: Transform - pos: -54.530502,-64.54973 + pos: -67.27615,-65.55618 parent: 30 - uid: 20308 components: @@ -101484,6 +99557,11 @@ entities: - type: Transform pos: -17.480167,35.60341 parent: 30 + - uid: 11129 + components: + - type: Transform + pos: -17.39583,-32.28552 + parent: 30 - proto: PianoInstrument entities: - uid: 555 @@ -101575,33 +99653,23 @@ entities: - type: Transform pos: 18.5,-14.5 parent: 30 + - uid: 9656 + components: + - type: Transform + pos: -5.5,-49.5 + parent: 30 - uid: 9696 components: - type: Transform pos: 18.5,-13.5 parent: 30 - - uid: 10510 - components: - - type: Transform - pos: -14.5,-51.5 - parent: 30 - uid: 17005 components: - type: Transform pos: 27.5,-30.5 parent: 30 - - uid: 20465 - components: - - type: Transform - pos: -25.5,-48.5 - parent: 30 - proto: PlasticFlapsAirtightClear entities: - - uid: 1952 - components: - - type: Transform - pos: 48.5,24.5 - parent: 30 - uid: 11228 components: - type: Transform @@ -101647,6 +99715,11 @@ entities: - type: Transform pos: 39.5,12.5 parent: 30 + - uid: 17886 + components: + - type: Transform + pos: 48.5,25.5 + parent: 30 - proto: PlushieCarp entities: - uid: 17654 @@ -101689,10 +99762,10 @@ entities: parent: 30 - proto: PlushieSharkPink entities: - - uid: 22194 + - uid: 17526 components: - type: Transform - pos: -54.4992,-66.45244 + pos: -58.458496,-65.4756 parent: 30 - uid: 22217 components: @@ -101739,6 +99812,16 @@ entities: parent: 30 - proto: PortableGeneratorJrPacman entities: + - uid: 11157 + components: + - type: Transform + pos: -7.5,-48.5 + parent: 30 + - uid: 14479 + components: + - type: Transform + pos: -54.5,-62.5 + parent: 30 - uid: 17594 components: - type: Transform @@ -101749,16 +99832,6 @@ entities: - type: Transform pos: -23.5,-28.5 parent: 30 - - uid: 19474 - components: - - type: Transform - pos: -15.5,-32.5 - parent: 30 - - uid: 19475 - components: - - type: Transform - pos: -65.5,-63.5 - parent: 30 - uid: 19476 components: - type: Transform @@ -101786,17 +99859,17 @@ entities: parent: 30 - proto: PortableGeneratorPacman entities: - - uid: 9408 + - uid: 10787 components: - type: Transform - pos: -25.5,-46.5 + pos: -19.5,-36.5 parent: 30 - proto: PortableGeneratorSuperPacman entities: - - uid: 9389 + - uid: 19415 components: - type: Transform - pos: -25.5,-47.5 + pos: -19.5,-37.5 parent: 30 - uid: 21948 components: @@ -101830,11 +99903,6 @@ entities: - type: Transform pos: 40.5,14.5 parent: 30 - - uid: 22802 - components: - - type: Transform - pos: -27.5,-61.5 - parent: 30 - proto: PosterContrabandAtmosiaDeclarationIndependence entities: - uid: 9181 @@ -101896,13 +99964,6 @@ entities: - type: Transform pos: -28.5,34.5 parent: 30 -- proto: PosterContrabandHighEffectEngineering - entities: - - uid: 8360 - components: - - type: Transform - pos: -10.5,-37.5 - parent: 30 - proto: PosterContrabandInterdyne entities: - uid: 12243 @@ -102014,13 +100075,6 @@ entities: - type: Transform pos: -17.5,-13.5 parent: 30 -- proto: PosterLegitBuild - entities: - - uid: 10142 - components: - - type: Transform - pos: -18.5,-33.5 - parent: 30 - proto: PosterLegitCarpMount entities: - uid: 14968 @@ -102252,10 +100306,11 @@ entities: - type: Transform pos: -22.5,-38.5 parent: 30 - - uid: 22543 + - uid: 18185 components: - type: Transform - pos: 19.5,16.5 + rot: 3.141592653589793 rad + pos: 20.5,9.5 parent: 30 - proto: PosterLegitSafetyInternals entities: @@ -102269,17 +100324,11 @@ entities: - type: Transform pos: 3.5,-35.5 parent: 30 - - uid: 22544 + - uid: 19795 components: - type: Transform - pos: 19.5,14.5 - parent: 30 -- proto: PosterLegitSafetyMothDelam - entities: - - uid: 10087 - components: - - type: Transform - pos: -20.5,-39.5 + rot: -1.5707963267948966 rad + pos: 13.5,13.5 parent: 30 - proto: PosterLegitSafetyMothEpi entities: @@ -102315,11 +100364,6 @@ entities: rot: 1.5707963267948966 rad pos: 10.5,-21.5 parent: 30 - - uid: 10088 - components: - - type: Transform - pos: -0.5,-46.5 - parent: 30 - proto: PosterLegitSafetyReport entities: - uid: 2412 @@ -102332,6 +100376,13 @@ entities: - type: Transform pos: 6.5,-14.5 parent: 30 +- proto: PosterLegitSecWatch + entities: + - uid: 20637 + components: + - type: Transform + pos: -6.5,-50.5 + parent: 30 - proto: PosterLegitSpaceCops entities: - uid: 2411 @@ -102509,11 +100560,6 @@ entities: - type: Transform pos: 14.5,-13.5 parent: 30 - - uid: 12668 - components: - - type: Transform - pos: 20.5,16.5 - parent: 30 - uid: 12764 components: - type: Transform @@ -102524,16 +100570,21 @@ entities: - type: Transform pos: 33.5,9.5 parent: 30 - - uid: 12925 - components: - - type: Transform - pos: 12.5,10.5 - parent: 30 - uid: 13376 components: - type: Transform pos: 12.5,18.5 parent: 30 + - uid: 16402 + components: + - type: Transform + pos: 16.5,12.5 + parent: 30 + - uid: 18609 + components: + - type: Transform + pos: 23.5,16.5 + parent: 30 - uid: 20139 components: - type: Transform @@ -102718,6 +100769,16 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} + - uid: 7103 + components: + - type: Transform + pos: 0.5,-37.5 + parent: 30 + - uid: 7110 + components: + - type: Transform + pos: 1.5,-41.5 + parent: 30 - uid: 8613 components: - type: Transform @@ -102734,6 +100795,36 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} + - uid: 10653 + components: + - type: Transform + pos: -22.5,-44.5 + parent: 30 + - uid: 11068 + components: + - type: Transform + pos: -21.5,-49.5 + parent: 30 + - uid: 11080 + components: + - type: Transform + pos: -3.5,-41.5 + parent: 30 + - uid: 11145 + components: + - type: Transform + pos: -10.5,-45.5 + parent: 30 + - uid: 11146 + components: + - type: Transform + pos: -24.5,-46.5 + parent: 30 + - uid: 13971 + components: + - type: Transform + pos: -19.5,-44.5 + parent: 30 - uid: 16045 components: - type: Transform @@ -102766,6 +100857,11 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} + - uid: 16798 + components: + - type: Transform + pos: -63.5,-65.5 + parent: 30 - uid: 16920 components: - type: Transform @@ -102854,38 +100950,16 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 17910 + - uid: 18880 components: - type: Transform - pos: -55.5,-60.5 + pos: -19.5,-39.5 parent: 30 - - type: ContainerContainer - containers: - stash: !type:ContainerSlot {} - - uid: 17911 + - uid: 18991 components: - type: Transform - pos: -68.5,-60.5 + pos: -25.5,-39.5 parent: 30 - - type: ContainerContainer - containers: - stash: !type:ContainerSlot {} - - uid: 19415 - components: - - type: Transform - pos: -57.5,-62.5 - parent: 30 - - type: ContainerContainer - containers: - stash: !type:ContainerSlot {} - - uid: 19416 - components: - - type: Transform - pos: -60.5,-62.5 - parent: 30 - - type: ContainerContainer - containers: - stash: !type:ContainerSlot {} - uid: 19527 components: - type: Transform @@ -102934,21 +101008,6 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} -- proto: PottedPlantRandomPlastic - entities: - - uid: 9615 - components: - - type: Transform - pos: -16.5,-38.5 - parent: 30 - - type: ContainerContainer - containers: - stash: !type:ContainerSlot {} - - uid: 22844 - components: - - type: Transform - pos: -30.5,-57.5 - parent: 30 - proto: PottedPlantRD entities: - uid: 12726 @@ -103010,11 +101069,26 @@ entities: rot: 1.5707963267948966 rad pos: 4.5,-27.5 parent: 30 + - uid: 10005 + components: + - type: Transform + pos: -15.5,-32.5 + parent: 30 - uid: 10311 components: - type: Transform pos: -41.5,27.5 parent: 30 + - uid: 10661 + components: + - type: Transform + pos: -25.5,-42.5 + parent: 30 + - uid: 10795 + components: + - type: Transform + pos: 2.5,-41.5 + parent: 30 - uid: 12106 components: - type: Transform @@ -103030,21 +101104,16 @@ entities: - type: Transform pos: 24.5,10.5 parent: 30 - - uid: 12837 - components: - - type: Transform - pos: 15.5,12.5 - parent: 30 - - uid: 13643 - components: - - type: Transform - pos: -15.5,-43.5 - parent: 30 - uid: 13645 components: - type: Transform pos: 16.5,23.5 parent: 30 + - uid: 18125 + components: + - type: Transform + pos: 16.5,14.5 + parent: 30 - uid: 20992 components: - type: Transform @@ -103052,27 +101121,6 @@ entities: parent: 30 - type: Physics canCollide: False - - uid: 20993 - components: - - type: Transform - pos: -18.5,-35.5 - parent: 30 - - type: Physics - canCollide: False - - uid: 20995 - components: - - type: Transform - pos: -11.5,-35.5 - parent: 30 - - type: Physics - canCollide: False - - uid: 20996 - components: - - type: Transform - pos: 1.5,-44.5 - parent: 30 - - type: Physics - canCollide: False - uid: 20999 components: - type: Transform @@ -103144,6 +101192,18 @@ entities: rot: 3.141592653589793 rad pos: -58.5,-9.5 parent: 30 + - uid: 906 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-52.5 + parent: 30 + - uid: 916 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,-43.5 + parent: 30 - uid: 3203 components: - type: Transform @@ -104214,12 +102274,6 @@ entities: rot: 1.5707963267948966 rad pos: -9.5,-11.5 parent: 30 - - uid: 9103 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-47.5 - parent: 30 - uid: 9250 components: - type: Transform @@ -104236,31 +102290,11 @@ entities: parent: 30 - type: ApcPowerReceiver powerLoad: 0 - - uid: 9433 + - uid: 9700 components: - type: Transform rot: 3.141592653589793 rad - pos: -6.5,-55.5 - parent: 30 - - uid: 9447 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,-42.5 - parent: 30 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 9619 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-51.5 - parent: 30 - - uid: 9705 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-55.5 + pos: -10.5,-31.5 parent: 30 - uid: 9800 components: @@ -104268,41 +102302,65 @@ entities: rot: -1.5707963267948966 rad pos: -40.5,-12.5 parent: 30 - - uid: 9979 + - uid: 9862 components: - type: Transform rot: 1.5707963267948966 rad - pos: -14.5,-47.5 + pos: -2.5,-46.5 + parent: 30 + - uid: 9868 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-56.5 parent: 30 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 10072 components: - type: Transform pos: -56.5,10.5 parent: 30 - - uid: 10092 + - uid: 10585 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-34.5 + parent: 30 + - uid: 10591 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,-53.5 + parent: 30 + - uid: 10622 components: - type: Transform rot: 1.5707963267948966 rad - pos: -13.5,-55.5 + pos: -19.5,-50.5 parent: 30 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 10095 + - uid: 10637 components: - type: Transform - pos: -12.5,-43.5 + rot: 1.5707963267948966 rad + pos: -19.5,-46.5 parent: 30 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 10096 + - uid: 10798 components: - type: Transform - pos: -2.5,-43.5 + rot: -1.5707963267948966 rad + pos: 4.5,-56.5 + parent: 30 + - uid: 10799 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-46.5 + parent: 30 + - uid: 10800 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-52.5 parent: 30 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 10966 components: - type: Transform @@ -104505,77 +102563,6 @@ entities: parent: 30 - type: ApcPowerReceiver powerLoad: 0 - - uid: 11003 - components: - - type: Transform - pos: -22.5,-39.5 - parent: 30 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 11009 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,-46.5 - parent: 30 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 11011 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,-50.5 - parent: 30 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 11013 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -19.5,-44.5 - parent: 30 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 11020 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-41.5 - parent: 30 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 11021 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,-41.5 - parent: 30 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 11024 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-42.5 - parent: 30 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 11025 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-43.5 - parent: 30 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 11026 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-39.5 - parent: 30 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 11027 components: - type: Transform @@ -104584,44 +102571,6 @@ entities: parent: 30 - type: ApcPowerReceiver powerLoad: 0 - - uid: 11028 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-34.5 - parent: 30 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 11031 - components: - - type: Transform - pos: -6.5,-27.5 - parent: 30 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 11033 - components: - - type: Transform - pos: -13.5,-27.5 - parent: 30 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 11034 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,-34.5 - parent: 30 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 11036 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-31.5 - parent: 30 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 11037 components: - type: Transform @@ -104630,6 +102579,27 @@ entities: parent: 30 - type: ApcPowerReceiver powerLoad: 0 + - uid: 11077 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-45.5 + parent: 30 + - uid: 11079 + components: + - type: Transform + pos: -20.5,-39.5 + parent: 30 + - uid: 11083 + components: + - type: Transform + pos: -4.5,-38.5 + parent: 30 + - uid: 11095 + components: + - type: Transform + pos: -10.5,-38.5 + parent: 30 - uid: 11225 components: - type: Transform @@ -104676,30 +102646,6 @@ entities: parent: 30 - type: ApcPowerReceiver powerLoad: 0 - - uid: 11347 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-38.5 - parent: 30 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 11348 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,-38.5 - parent: 30 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 11349 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,-38.5 - parent: 30 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 11427 components: - type: Transform @@ -104708,6 +102654,16 @@ entities: parent: 30 - type: ApcPowerReceiver powerLoad: 0 + - uid: 11444 + components: + - type: Transform + pos: -8.5,-27.5 + parent: 30 + - uid: 11445 + components: + - type: Transform + pos: -17.5,-29.5 + parent: 30 - uid: 11469 components: - type: Transform @@ -104729,6 +102685,17 @@ entities: parent: 30 - type: ApcPowerReceiver powerLoad: 0 + - uid: 11588 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-39.5 + parent: 30 + - uid: 11614 + components: + - type: Transform + pos: -10.5,-47.5 + parent: 30 - uid: 11769 components: - type: Transform @@ -104942,13 +102909,6 @@ entities: parent: 30 - type: ApcPowerReceiver powerLoad: 0 - - uid: 12654 - components: - - type: Transform - pos: 18.5,12.5 - parent: 30 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 12763 components: - type: Transform @@ -104964,13 +102924,6 @@ entities: parent: 30 - type: ApcPowerReceiver powerLoad: 0 - - uid: 13077 - components: - - type: Transform - pos: 12.5,12.5 - parent: 30 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 13363 components: - type: Transform @@ -104986,14 +102939,6 @@ entities: parent: 30 - type: ApcPowerReceiver powerLoad: 0 - - uid: 13365 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,14.5 - parent: 30 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 13366 components: - type: Transform @@ -105092,6 +103037,12 @@ entities: parent: 30 - type: ApcPowerReceiver powerLoad: 0 + - uid: 13974 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,-48.5 + parent: 30 - uid: 14842 components: - type: Transform @@ -105179,6 +103130,48 @@ entities: parent: 30 - type: ApcPowerReceiver powerLoad: 0 + - uid: 18079 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,10.5 + parent: 30 + - uid: 18762 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,14.5 + parent: 30 + - uid: 18787 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -66.5,-64.5 + parent: 30 + - uid: 18796 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -62.5,-65.5 + parent: 30 + - uid: 18879 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-44.5 + parent: 30 + - uid: 19234 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,-47.5 + parent: 30 + - uid: 19420 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,-49.5 + parent: 30 - uid: 19573 components: - type: Transform @@ -105327,29 +103320,29 @@ entities: parent: 30 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22852 - components: - - type: Transform - pos: -36.5,-57.5 - parent: 30 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 22853 +- proto: PoweredlightExterior + entities: + - uid: 833 components: - type: Transform rot: 1.5707963267948966 rad - pos: -41.5,-60.5 + pos: 6.5,-52.5 parent: 30 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 22854 + - uid: 10166 components: - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,-63.5 + pos: -22.5,-58.5 + parent: 30 + - uid: 10801 + components: + - type: Transform + pos: 7.5,-46.5 + parent: 30 + - uid: 11147 + components: + - type: Transform + pos: -12.5,-58.5 parent: 30 - - type: ApcPowerReceiver - powerLoad: 0 - proto: PoweredlightLED entities: - uid: 10291 @@ -105481,12 +103474,6 @@ entities: rot: 1.5707963267948966 rad pos: -5.5,15.5 parent: 30 - - uid: 3196 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-59.5 - parent: 30 - uid: 3201 components: - type: Transform @@ -105499,6 +103486,17 @@ entities: rot: 1.5707963267948966 rad pos: -52.5,5.5 parent: 30 + - uid: 4126 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -53.5,-61.5 + parent: 30 + - uid: 4127 + components: + - type: Transform + pos: -54.5,-62.5 + parent: 30 - uid: 4237 components: - type: Transform @@ -105832,12 +103830,6 @@ entities: rot: 1.5707963267948966 rad pos: -38.5,-11.5 parent: 30 - - uid: 7912 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -54.5,-64.5 - parent: 30 - uid: 8313 components: - type: Transform @@ -105845,17 +103837,11 @@ entities: parent: 30 - type: ApcPowerReceiver powerLoad: 0 - - uid: 9059 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-58.5 - parent: 30 - - uid: 9060 + - uid: 9161 components: - type: Transform rot: 1.5707963267948966 rad - pos: -5.5,-59.5 + pos: 12.5,11.5 parent: 30 - uid: 9225 components: @@ -105865,11 +103851,15 @@ entities: parent: 30 - type: ApcPowerReceiver powerLoad: 0 - - uid: 9634 + - uid: 9998 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -72.5,-59.5 + pos: 16.5,-18.5 + parent: 30 + - uid: 10045 + components: + - type: Transform + pos: -17.5,-34.5 parent: 30 - uid: 10046 components: @@ -105877,6 +103867,11 @@ entities: rot: 1.5707963267948966 rad pos: 23.5,42.5 parent: 30 + - uid: 10170 + components: + - type: Transform + pos: -23.5,-55.5 + parent: 30 - uid: 10252 components: - type: Transform @@ -105889,6 +103884,18 @@ entities: rot: 1.5707963267948966 rad pos: -20.5,15.5 parent: 30 + - uid: 10598 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-56.5 + parent: 30 + - uid: 10797 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-56.5 + parent: 30 - uid: 10997 components: - type: Transform @@ -105897,44 +103904,6 @@ entities: parent: 30 - type: ApcPowerReceiver powerLoad: 0 - - uid: 11005 - components: - - type: Transform - pos: -22.5,-46.5 - parent: 30 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 11007 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -25.5,-50.5 - parent: 30 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 11014 - components: - - type: Transform - pos: -18.5,-34.5 - parent: 30 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 11015 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,-35.5 - parent: 30 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 11030 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,-30.5 - parent: 30 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 11303 components: - type: Transform @@ -105985,6 +103954,18 @@ entities: parent: 30 - type: ApcPowerReceiver powerLoad: 0 + - uid: 12822 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -48.5,-22.5 + parent: 30 + - uid: 12925 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -54.5,-24.5 + parent: 30 - uid: 15014 components: - type: Transform @@ -106045,13 +104026,6 @@ entities: parent: 30 - type: ApcPowerReceiver powerLoad: 0 - - uid: 15349 - components: - - type: Transform - pos: 50.5,24.5 - parent: 30 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 15350 components: - type: Transform @@ -106203,6 +104177,12 @@ entities: parent: 30 - type: ApcPowerReceiver powerLoad: 0 + - uid: 16131 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -77.5,-59.5 + parent: 30 - uid: 16168 components: - type: Transform @@ -106398,6 +104378,46 @@ entities: parent: 30 - type: ApcPowerReceiver powerLoad: 0 + - uid: 17730 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -68.5,-57.5 + parent: 30 + - uid: 17789 + components: + - type: Transform + pos: -70.5,-58.5 + parent: 30 + - uid: 18210 + components: + - type: Transform + pos: -36.5,-39.5 + parent: 30 + - uid: 18359 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -60.5,-60.5 + parent: 30 + - uid: 18375 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 48.5,22.5 + parent: 30 + - uid: 18793 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -58.5,-63.5 + parent: 30 + - uid: 18794 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -58.5,-65.5 + parent: 30 - uid: 18821 components: - type: Transform @@ -106588,49 +104608,8 @@ entities: - uid: 18854 components: - type: Transform - pos: -63.5,-62.5 + pos: -69.5,-62.5 parent: 30 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 18855 - components: - - type: Transform - pos: -66.5,-62.5 - parent: 30 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 18856 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -54.5,-66.5 - parent: 30 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 18857 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -60.5,-67.5 - parent: 30 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 18858 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -60.5,-63.5 - parent: 30 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 19490 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -70.5,-59.5 - parent: 30 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 19579 components: - type: Transform @@ -106807,60 +104786,6 @@ entities: parent: 30 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22845 - components: - - type: Transform - pos: -30.5,-57.5 - parent: 30 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 22846 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,-63.5 - parent: 30 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 22847 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -27.5,-59.5 - parent: 30 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 22848 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -25.5,-59.5 - parent: 30 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 22849 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,-63.5 - parent: 30 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 22850 - components: - - type: Transform - pos: -22.5,-57.5 - parent: 30 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 22851 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,-59.5 - parent: 30 - - type: ApcPowerReceiver - powerLoad: 0 - proto: PoweredSmallLightEmpty entities: - uid: 15072 @@ -106929,11 +104854,6 @@ entities: - type: Transform pos: -3.5,22.5 parent: 30 - - uid: 905 - components: - - type: Transform - pos: -17.5,-32.5 - parent: 30 - uid: 1340 components: - type: Transform @@ -106964,11 +104884,6 @@ entities: - type: Transform pos: -37.5,55.5 parent: 30 - - uid: 5615 - components: - - type: Transform - pos: -13.5,-35.5 - parent: 30 - uid: 6276 components: - type: Transform @@ -106989,15 +104904,15 @@ entities: - type: Transform pos: -38.5,-22.5 parent: 30 - - uid: 8263 + - uid: 7227 components: - type: Transform - pos: -10.5,-38.5 + pos: -9.5,-38.5 parent: 30 - - uid: 8335 + - uid: 8456 components: - type: Transform - pos: -4.5,-38.5 + pos: -5.5,-38.5 parent: 30 - uid: 9196 components: @@ -107019,56 +104934,31 @@ entities: - type: Transform pos: 9.5,-22.5 parent: 30 - - uid: 9417 - components: - - type: Transform - pos: -22.5,-47.5 - parent: 30 - uid: 9439 components: - type: Transform pos: 5.5,-23.5 parent: 30 - - uid: 10194 + - uid: 10126 components: - type: Transform - pos: -14.5,-68.5 + pos: -8.5,-43.5 parent: 30 - - uid: 10202 + - uid: 11086 components: - type: Transform - pos: -20.5,-68.5 - parent: 30 - - uid: 10215 - components: - - type: Transform - pos: -20.5,-69.5 + pos: -9.5,-41.5 parent: 30 - uid: 11255 components: - type: Transform pos: -3.5,-35.5 parent: 30 - - uid: 11265 - components: - - type: Transform - pos: -16.5,-50.5 - parent: 30 - - uid: 11300 - components: - - type: Transform - pos: -18.5,-48.5 - parent: 30 - uid: 11421 components: - type: Transform pos: 1.5,-15.5 parent: 30 - - uid: 11444 - components: - - type: Transform - pos: -21.5,-68.5 - parent: 30 - uid: 11737 components: - type: Transform @@ -107084,6 +104974,28 @@ entities: - type: Transform pos: 17.5,-9.5 parent: 30 + - uid: 12821 + components: + - type: Transform + pos: -52.5,-62.5 + parent: 30 + - uid: 13953 + components: + - type: Transform + pos: -11.5,-33.5 + parent: 30 + - uid: 13967 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-26.5 + parent: 30 + - uid: 13969 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,-50.5 + parent: 30 - uid: 15019 components: - type: Transform @@ -107174,6 +105086,12 @@ entities: - type: Transform pos: -53.5,48.5 parent: 30 + - uid: 19413 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,-37.5 + parent: 30 - uid: 19616 components: - type: Transform @@ -107234,23 +105152,49 @@ entities: - type: Transform pos: 4.5,20.5 parent: 30 - - uid: 22836 +- proto: RadiationCollectorFullTank + entities: + - uid: 9419 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -29.5,-57.5 + pos: -15.5,-60.5 + parent: 30 + - uid: 10677 + components: + - type: Transform + pos: -14.5,-60.5 + parent: 30 + - uid: 11087 + components: + - type: Transform + pos: -19.5,-60.5 + parent: 30 + - uid: 11104 + components: + - type: Transform + pos: -16.5,-60.5 + parent: 30 + - uid: 11108 + components: + - type: Transform + pos: -18.5,-60.5 + parent: 30 + - uid: 19830 + components: + - type: Transform + pos: -20.5,-60.5 parent: 30 - proto: RadioHandheld entities: - - uid: 11289 + - uid: 11081 components: - type: Transform - pos: -19.595512,-44.335434 + pos: -21.680277,-41.431904 parent: 30 - - uid: 11290 + - uid: 19817 components: - type: Transform - pos: -19.361137,-44.44481 + pos: -21.453587,-41.32728 parent: 30 - proto: Railing entities: @@ -107288,6 +105232,30 @@ entities: rot: -1.5707963267948966 rad pos: 7.5,-7.5 parent: 30 + - uid: 13990 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,6.5 + parent: 30 + - uid: 14043 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,6.5 + parent: 30 + - uid: 14457 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,6.5 + parent: 30 + - uid: 18844 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,4.5 + parent: 30 - uid: 21323 components: - type: Transform @@ -107310,8 +105278,34 @@ entities: - type: Transform pos: 6.5,-10.5 parent: 30 +- proto: RailingCorner + entities: + - uid: 13389 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,5.5 + parent: 30 + - uid: 13751 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,6.5 + parent: 30 - proto: RailingCornerSmall entities: + - uid: 14433 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,5.5 + parent: 30 + - uid: 18842 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,4.5 + parent: 30 - uid: 21325 components: - type: Transform @@ -107352,11 +105346,6 @@ entities: - type: Transform pos: -5.5,23.5 parent: 30 - - uid: 22547 - components: - - type: Transform - pos: 41.5,13.5 - parent: 30 - proto: RandomBoard entities: - uid: 5616 @@ -107381,6 +105370,11 @@ entities: parent: 30 - proto: RandomFoodMeal entities: + - uid: 338 + components: + - type: Transform + pos: 18.5,10.5 + parent: 30 - uid: 5003 components: - type: Transform @@ -107410,6 +105404,11 @@ entities: - type: Transform pos: -32.5,23.5 parent: 30 + - uid: 3341 + components: + - type: Transform + pos: -55.5,-67.5 + parent: 30 - uid: 12463 components: - type: Transform @@ -107420,11 +105419,6 @@ entities: - type: Transform pos: -61.5,29.5 parent: 30 - - uid: 18375 - components: - - type: Transform - pos: -63.5,-67.5 - parent: 30 - proto: RandomPainting entities: - uid: 19149 @@ -107464,6 +105458,11 @@ entities: - type: Transform pos: -20.5,-32.5 parent: 30 + - uid: 20623 + components: + - type: Transform + pos: -14.5,-38.5 + parent: 30 - proto: RandomPosterContraband entities: - uid: 2421 @@ -107673,6 +105672,21 @@ entities: - type: Transform pos: 47.5,41.5 parent: 30 + - uid: 20636 + components: + - type: Transform + pos: -26.5,-43.5 + parent: 30 + - uid: 20638 + components: + - type: Transform + pos: -10.5,-46.5 + parent: 30 + - uid: 20639 + components: + - type: Transform + pos: -14.5,-53.5 + parent: 30 - uid: 22088 components: - type: Transform @@ -107724,6 +105738,11 @@ entities: - type: Transform pos: 39.5,19.5 parent: 30 + - uid: 14366 + components: + - type: Transform + pos: 53.5,22.5 + parent: 30 - uid: 15160 components: - type: Transform @@ -107919,16 +105938,6 @@ entities: - type: Transform pos: 45.5,31.5 parent: 30 - - uid: 15990 - components: - - type: Transform - pos: 53.5,24.5 - parent: 30 - - uid: 15991 - components: - - type: Transform - pos: 51.5,24.5 - parent: 30 - uid: 15992 components: - type: Transform @@ -108124,22 +106133,22 @@ entities: parent: 30 - proto: RCD entities: - - uid: 9601 + - uid: 10545 components: - type: Transform - pos: -15.481125,-35.377903 + pos: -5.524026,-35.43381 parent: 30 - proto: RCDAmmo entities: - - uid: 9602 + - uid: 9491 components: - type: Transform - pos: -15.3405,-34.940403 + pos: -5.614659,-35.18134 parent: 30 - - uid: 9603 + - uid: 11059 components: - type: Transform - pos: -15.606125,-34.956028 + pos: -5.3324804,-35.19619 parent: 30 - proto: ReagentContainerFlourSmall entities: @@ -108152,11 +106161,11 @@ entities: tags: [] - proto: Recycler entities: - - uid: 14530 + - uid: 12974 components: - type: Transform rot: 1.5707963267948966 rad - pos: 53.5,22.5 + pos: 49.5,23.5 parent: 30 - proto: ReinforcedGirder entities: @@ -108167,35 +106176,11 @@ entities: parent: 30 - proto: ReinforcedPlasmaWindow entities: - - uid: 3583 + - uid: 4893 components: - type: Transform rot: 1.5707963267948966 rad - pos: -5.5,-56.5 - parent: 30 - - uid: 4406 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-56.5 - parent: 30 - - uid: 4895 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,-56.5 - parent: 30 - - uid: 6271 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,-56.5 - parent: 30 - - uid: 7208 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-56.5 + pos: 2.5,-54.5 parent: 30 - uid: 8537 components: @@ -108274,23 +106259,23 @@ entities: - type: Transform pos: 24.5,-22.5 parent: 30 - - uid: 9058 + - uid: 11122 components: - type: Transform rot: 1.5707963267948966 rad - pos: -9.5,-56.5 + pos: 1.5,-54.5 parent: 30 - - uid: 9061 + - uid: 11130 components: - type: Transform rot: 1.5707963267948966 rad - pos: -10.5,-56.5 + pos: -2.5,-54.5 parent: 30 - - uid: 9063 + - uid: 11136 components: - type: Transform rot: 1.5707963267948966 rad - pos: -4.5,-56.5 + pos: -3.5,-54.5 parent: 30 - uid: 12898 components: @@ -108323,6 +106308,18 @@ entities: - type: Transform pos: 35.5,14.5 parent: 30 + - uid: 13954 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-54.5 + parent: 30 + - uid: 13955 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-54.5 + parent: 30 - uid: 17012 components: - type: Transform @@ -108430,11 +106427,6 @@ entities: - type: Transform pos: -64.5,12.5 parent: 30 - - uid: 795 - components: - - type: Transform - pos: -33.5,-61.5 - parent: 30 - uid: 843 components: - type: Transform @@ -109721,31 +107713,6 @@ entities: - type: Transform pos: -14.5,-17.5 parent: 30 - - uid: 7094 - components: - - type: Transform - pos: -0.5,-52.5 - parent: 30 - - uid: 7095 - components: - - type: Transform - pos: -0.5,-54.5 - parent: 30 - - uid: 7107 - components: - - type: Transform - pos: 1.5,-45.5 - parent: 30 - - uid: 7108 - components: - - type: Transform - pos: 3.5,-45.5 - parent: 30 - - uid: 7125 - components: - - type: Transform - pos: -0.5,-51.5 - parent: 30 - uid: 7158 components: - type: Transform @@ -109817,6 +107784,12 @@ entities: - type: Transform pos: -14.5,-13.5 parent: 30 + - uid: 7912 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,12.5 + parent: 30 - uid: 7996 components: - type: Transform @@ -109873,11 +107846,6 @@ entities: - type: Transform pos: -65.5,42.5 parent: 30 - - uid: 8359 - components: - - type: Transform - pos: -32.5,-61.5 - parent: 30 - uid: 8377 components: - type: Transform @@ -109935,11 +107903,6 @@ entities: rot: 1.5707963267948966 rad pos: 2.5,-26.5 parent: 30 - - uid: 8408 - components: - - type: Transform - pos: 15.5,-18.5 - parent: 30 - uid: 8409 components: - type: Transform @@ -109955,11 +107918,6 @@ entities: - type: Transform pos: 16.5,-12.5 parent: 30 - - uid: 8419 - components: - - type: Transform - pos: 17.5,-18.5 - parent: 30 - uid: 8420 components: - type: Transform @@ -109980,16 +107938,6 @@ entities: - type: Transform pos: 7.5,-22.5 parent: 30 - - uid: 8455 - components: - - type: Transform - pos: -32.5,-62.5 - parent: 30 - - uid: 8456 - components: - - type: Transform - pos: -32.5,-63.5 - parent: 30 - uid: 8457 components: - type: Transform @@ -110290,11 +108238,6 @@ entities: rot: 3.141592653589793 rad pos: -3.5,-31.5 parent: 30 - - uid: 9194 - components: - - type: Transform - pos: 16.5,-20.5 - parent: 30 - uid: 9277 components: - type: Transform @@ -110315,6 +108258,18 @@ entities: - type: Transform pos: -0.5,-32.5 parent: 30 + - uid: 9303 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-50.5 + parent: 30 + - uid: 9316 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-51.5 + parent: 30 - uid: 9321 components: - type: Transform @@ -110330,15 +108285,10 @@ entities: - type: Transform pos: -49.5,-10.5 parent: 30 - - uid: 9585 + - uid: 9495 components: - type: Transform - pos: -17.5,-37.5 - parent: 30 - - uid: 9586 - components: - - type: Transform - pos: -19.5,-37.5 + pos: -16.5,-45.5 parent: 30 - uid: 9597 components: @@ -110350,86 +108300,28 @@ entities: - type: Transform pos: -38.5,-36.5 parent: 30 - - uid: 9638 - components: - - type: Transform - pos: -0.5,-43.5 - parent: 30 - - uid: 9639 - components: - - type: Transform - pos: -14.5,-43.5 - parent: 30 - - uid: 9640 - components: - - type: Transform - pos: 2.5,-53.5 - parent: 30 - - uid: 9641 - components: - - type: Transform - pos: 2.5,-52.5 - parent: 30 - - uid: 9642 - components: - - type: Transform - pos: 2.5,-54.5 - parent: 30 - - uid: 9643 - components: - - type: Transform - pos: -0.5,-50.5 - parent: 30 - - uid: 9644 - components: - - type: Transform - pos: 2.5,-50.5 - parent: 30 - - uid: 9645 - components: - - type: Transform - pos: 2.5,-49.5 - parent: 30 - - uid: 9646 - components: - - type: Transform - pos: 0.5,-47.5 - parent: 30 - - uid: 9647 - components: - - type: Transform - pos: -0.5,-48.5 - parent: 30 - - uid: 9648 - components: - - type: Transform - pos: 2.5,-48.5 - parent: 30 - - uid: 9649 - components: - - type: Transform - pos: -10.5,-42.5 - parent: 30 - - uid: 9650 - components: - - type: Transform - pos: -8.5,-42.5 - parent: 30 - - uid: 9651 - components: - - type: Transform - pos: -6.5,-42.5 - parent: 30 - - uid: 9652 - components: - - type: Transform - pos: -4.5,-42.5 - parent: 30 - uid: 9664 components: - type: Transform pos: 4.5,37.5 parent: 30 + - uid: 9679 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-48.5 + parent: 30 + - uid: 9680 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-49.5 + parent: 30 + - uid: 9702 + components: + - type: Transform + pos: -18.5,-45.5 + parent: 30 - uid: 9706 components: - type: Transform @@ -110450,20 +108342,17 @@ entities: - type: Transform pos: -57.5,5.5 parent: 30 - - uid: 9813 + - uid: 9815 components: - type: Transform - pos: 1.5,-47.5 + rot: -1.5707963267948966 rad + pos: -1.5,-42.5 parent: 30 - - uid: 9817 + - uid: 9820 components: - type: Transform - pos: 1.5,-55.5 - parent: 30 - - uid: 9818 - components: - - type: Transform - pos: 0.5,-55.5 + rot: -1.5707963267948966 rad + pos: 2.5,-42.5 parent: 30 - uid: 9848 components: @@ -110480,21 +108369,41 @@ entities: - type: Transform pos: -32.5,-7.5 parent: 30 + - uid: 10053 + components: + - type: Transform + pos: -15.5,-57.5 + parent: 30 + - uid: 10054 + components: + - type: Transform + pos: -17.5,-57.5 + parent: 30 + - uid: 10058 + components: + - type: Transform + pos: -16.5,-57.5 + parent: 30 + - uid: 10059 + components: + - type: Transform + pos: -19.5,-57.5 + parent: 30 + - uid: 10088 + components: + - type: Transform + pos: -14.5,-57.5 + parent: 30 - uid: 10089 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-26.5 parent: 30 - - uid: 10090 + - uid: 10094 components: - type: Transform - pos: 4.5,-44.5 - parent: 30 - - uid: 10097 - components: - - type: Transform - pos: 4.5,-42.5 + pos: -18.5,-57.5 parent: 30 - uid: 10098 components: @@ -110506,79 +108415,103 @@ entities: - type: Transform pos: 4.5,-38.5 parent: 30 - - uid: 10114 + - uid: 10124 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,-45.5 + rot: -1.5707963267948966 rad + pos: -14.5,-31.5 parent: 30 - - uid: 10115 + - uid: 10139 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,-45.5 + pos: -20.5,-57.5 parent: 30 - - uid: 10131 + - uid: 10152 components: - type: Transform - pos: -16.5,-49.5 + pos: -14.5,-39.5 parent: 30 - - uid: 10132 + - uid: 10185 components: - type: Transform - pos: -18.5,-49.5 - parent: 30 - - uid: 10133 - components: - - type: Transform - pos: -18.5,-52.5 - parent: 30 - - uid: 10134 - components: - - type: Transform - pos: -16.5,-52.5 - parent: 30 - - uid: 10262 - components: - - type: Transform - pos: -33.5,-59.5 - parent: 30 - - uid: 10263 - components: - - type: Transform - pos: -32.5,-59.5 - parent: 30 - - uid: 10264 - components: - - type: Transform - pos: -32.5,-58.5 - parent: 30 - - uid: 10265 - components: - - type: Transform - pos: -32.5,-57.5 - parent: 30 - - uid: 10266 - components: - - type: Transform - pos: -31.5,-59.5 - parent: 30 - - uid: 10267 - components: - - type: Transform - pos: -31.5,-61.5 + rot: -1.5707963267948966 rad + pos: -14.5,-28.5 parent: 30 - uid: 10395 components: - type: Transform pos: 23.5,-16.5 parent: 30 + - uid: 10623 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-29.5 + parent: 30 + - uid: 10656 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-19.5 + parent: 30 - uid: 10743 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-21.5 parent: 30 + - uid: 11073 + components: + - type: Transform + pos: -9.5,-45.5 + parent: 30 + - uid: 11076 + components: + - type: Transform + pos: -16.5,-49.5 + parent: 30 + - uid: 11091 + components: + - type: Transform + pos: -9.5,-43.5 + parent: 30 + - uid: 11106 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,-32.5 + parent: 30 + - uid: 11125 + components: + - type: Transform + pos: -18.5,-49.5 + parent: 30 + - uid: 11139 + components: + - type: Transform + pos: -7.5,-42.5 + parent: 30 + - uid: 11140 + components: + - type: Transform + pos: -5.5,-42.5 + parent: 30 + - uid: 11164 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-17.5 + parent: 30 + - uid: 11270 + components: + - type: Transform + pos: -11.5,-32.5 + parent: 30 + - uid: 11308 + components: + - type: Transform + pos: -14.5,-44.5 + parent: 30 - uid: 11438 components: - type: Transform @@ -110675,10 +108608,11 @@ entities: - type: Transform pos: 28.5,-12.5 parent: 30 - - uid: 12680 + - uid: 12656 components: - type: Transform - pos: 15.5,13.5 + rot: 1.5707963267948966 rad + pos: 15.5,10.5 parent: 30 - uid: 12695 components: @@ -110697,11 +108631,6 @@ entities: rot: -1.5707963267948966 rad pos: 31.5,13.5 parent: 30 - - uid: 12727 - components: - - type: Transform - pos: 13.5,13.5 - parent: 30 - uid: 12729 components: - type: Transform @@ -110727,6 +108656,11 @@ entities: - type: Transform pos: 27.5,17.5 parent: 30 + - uid: 12837 + components: + - type: Transform + pos: -64.5,-66.5 + parent: 30 - uid: 12857 components: - type: Transform @@ -110977,6 +108911,11 @@ entities: - type: Transform pos: 10.5,55.5 parent: 30 + - uid: 13984 + components: + - type: Transform + pos: -6.5,-42.5 + parent: 30 - uid: 14338 components: - type: Transform @@ -110992,11 +108931,6 @@ entities: - type: Transform pos: 27.5,12.5 parent: 30 - - uid: 14513 - components: - - type: Transform - pos: 49.5,23.5 - parent: 30 - uid: 14515 components: - type: Transform @@ -111017,6 +108951,11 @@ entities: - type: Transform pos: 16.5,63.5 parent: 30 + - uid: 14915 + components: + - type: Transform + pos: -22.5,-45.5 + parent: 30 - uid: 15328 components: - type: Transform @@ -111102,6 +109041,11 @@ entities: - type: Transform pos: -56.5,48.5 parent: 30 + - uid: 16803 + components: + - type: Transform + pos: -62.5,-66.5 + parent: 30 - uid: 17039 components: - type: Transform @@ -111594,6 +109538,12 @@ entities: - type: Transform pos: -79.5,-37.5 parent: 30 + - uid: 17593 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-44.5 + parent: 30 - uid: 18006 components: - type: Transform @@ -111714,26 +109664,36 @@ entities: - type: Transform pos: -74.5,-67.5 parent: 30 - - uid: 18185 - components: - - type: Transform - pos: -59.5,-69.5 - parent: 30 - - uid: 18186 - components: - - type: Transform - pos: -58.5,-69.5 - parent: 30 - uid: 18343 components: - type: Transform pos: -52.5,-38.5 parent: 30 + - uid: 18372 + components: + - type: Transform + pos: -63.5,-66.5 + parent: 30 + - uid: 18763 + components: + - type: Transform + pos: -85.5,-46.5 + parent: 30 + - uid: 18764 + components: + - type: Transform + pos: -85.5,-44.5 + parent: 30 - uid: 19066 components: - type: Transform pos: -51.5,-40.5 parent: 30 + - uid: 19373 + components: + - type: Transform + pos: -24.5,-45.5 + parent: 30 - uid: 19632 components: - type: Transform @@ -111979,11 +109939,6 @@ entities: - type: Transform pos: -41.5,-28.5 parent: 30 - - uid: 22637 - components: - - type: Transform - pos: -30.5,-61.5 - parent: 30 - proto: ResearchAndDevelopmentServer entities: - uid: 12746 @@ -112127,10 +110082,10 @@ entities: - type: Transform pos: -42.32744,-20.937243 parent: 30 - - uid: 12822 + - uid: 18172 components: - type: Transform - pos: 16.462046,12.553694 + pos: 17.569016,13.6063385 parent: 30 - proto: SecurityTechFab entities: @@ -112146,16 +110101,16 @@ entities: - Steel - proto: SeedExtractor entities: - - uid: 415 - components: - - type: Transform - pos: -25.5,8.5 - parent: 30 - uid: 2345 components: - type: Transform pos: -45.5,68.5 parent: 30 + - uid: 16134 + components: + - type: Transform + pos: -28.5,7.5 + parent: 30 - uid: 19535 components: - type: Transform @@ -112163,49 +110118,39 @@ entities: parent: 30 - proto: SheetGlass entities: - - uid: 9419 + - uid: 5635 components: - type: Transform - pos: -22.481571,-47.56282 + pos: -25.515194,-43.69366 parent: 30 - - uid: 11281 + - uid: 18170 components: - type: Transform - pos: 0.5411911,-43.91178 - parent: 30 - - uid: 11282 - components: - - type: Transform - pos: 0.5411911,-43.91178 - parent: 30 - - uid: 12820 - components: - - type: Transform - pos: 19.709492,12.540524 - parent: 30 - - uid: 12821 - components: - - type: Transform - pos: 19.80086,12.477194 + pos: 18.613844,13.552378 parent: 30 - uid: 18790 components: - type: Transform - pos: -62.64885,-62.517246 + pos: -52.31846,-62.49577 + parent: 30 + - uid: 18878 + components: + - type: Transform + pos: -15.490766,-37.49464 parent: 30 - proto: SheetPlasma entities: - - uid: 9418 - components: - - type: Transform - pos: -22.465946,-47.515945 - parent: 30 - uid: 11365 components: - type: Transform parent: 11364 - type: Physics canCollide: False + - uid: 18692 + components: + - type: Transform + pos: -15.565023,-37.405533 + parent: 30 - uid: 21729 components: - type: Transform @@ -112233,30 +110178,22 @@ entities: - type: Transform pos: -39.48265,27.446999 parent: 30 - - uid: 11277 - components: - - type: Transform - pos: 0.5568161,-43.31803 - parent: 30 - - uid: 11278 - components: - - type: Transform - pos: 0.5568161,-43.31803 - parent: 30 - uid: 11736 components: - type: Transform pos: 19.262014,2.5731275 parent: 30 - - uid: 12816 + - uid: 19410 components: - type: Transform - pos: 19.2153,12.5261135 + pos: -21.505291,-47.848297 parent: 30 - - uid: 12817 +- proto: SheetPlasteel10 + entities: + - uid: 15989 components: - type: Transform - pos: 19.152752,12.557497 + pos: 19.503614,13.556404 parent: 30 - proto: SheetPlastic entities: @@ -112265,6 +110202,11 @@ entities: - type: Transform pos: 24.539536,9.582489 parent: 30 + - uid: 14827 + components: + - type: Transform + pos: -25.500341,-44.0501 + parent: 30 - proto: SheetRGlass entities: - uid: 779 @@ -112294,20 +110236,40 @@ entities: - type: Transform pos: -37.50003,55.530113 parent: 30 + - uid: 5615 + components: + - type: Transform + pos: -25.544897,-43.30752 + parent: 30 - uid: 6680 components: - type: Transform pos: -38.50112,-3.4785028 parent: 30 - - uid: 8384 + - uid: 9353 components: - type: Transform - pos: 14.431295,-25.50531 + pos: 2.554779,-46.49939 parent: 30 - - uid: 9246 + - uid: 9373 components: - type: Transform - pos: 14.418909,-25.502102 + pos: 3.0953474,-46.49939 + parent: 30 + - uid: 9966 + components: + - type: Transform + pos: 3.409225,-46.49939 + parent: 30 + - uid: 9977 + components: + - type: Transform + pos: 2.432715,-46.481953 + parent: 30 + - uid: 10018 + components: + - type: Transform + pos: 12.534329,-26.430252 parent: 30 - uid: 10245 components: @@ -112324,57 +110286,52 @@ entities: - type: Transform pos: -39.967026,27.431374 parent: 30 - - uid: 11279 + - uid: 10556 components: - type: Transform - pos: 0.5099411,-42.56803 + pos: 2.7814693,-46.481953 parent: 30 - - uid: 11280 + - uid: 10761 components: - type: Transform - pos: 0.5099411,-42.56803 + pos: -21.470598,-47.509216 parent: 30 - - uid: 11701 + - uid: 11289 components: - type: Transform - pos: 14.431295,-25.50531 + pos: 12.415517,-26.22233 + parent: 30 + - uid: 11299 + components: + - type: Transform + pos: 12.593735,-26.22233 parent: 30 - uid: 11735 components: - type: Transform pos: 19.908981,2.569995 parent: 30 - - uid: 12818 - components: - - type: Transform - pos: 18.621367,12.577154 - parent: 30 - - uid: 12819 - components: - - type: Transform - pos: 18.711626,12.51626 - parent: 30 - uid: 15528 components: - type: Transform pos: 17.501102,60.54593 parent: 30 + - uid: 17884 + components: + - type: Transform + pos: 18.973642,13.552378 + parent: 30 - uid: 18791 components: - type: Transform - pos: -62.6176,-62.579746 - parent: 30 - - uid: 20450 - components: - - type: Transform - pos: -23.542912,-39.421722 + pos: -52.674896,-62.391804 parent: 30 - proto: SheetUranium entities: - - uid: 10290 + - uid: 19800 components: - type: Transform - pos: -22.492691,-47.491028 + pos: -15.342251,-37.568897 parent: 30 - proto: Shovel entities: @@ -112724,26 +110681,11 @@ entities: - type: Transform pos: -5.5,12.5 parent: 30 - - uid: 12656 - components: - - type: Transform - pos: 14.5,13.5 - parent: 30 - - uid: 12657 - components: - - type: Transform - pos: 13.5,13.5 - parent: 30 - uid: 12810 components: - type: Transform pos: 24.5,15.5 parent: 30 - - uid: 13075 - components: - - type: Transform - pos: 15.5,13.5 - parent: 30 - uid: 14340 components: - type: Transform @@ -112759,6 +110701,60 @@ entities: - type: Transform pos: 26.5,12.5 parent: 30 + - uid: 14530 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,39.5 + parent: 30 + - uid: 14844 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,34.5 + parent: 30 + - uid: 15075 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,40.5 + parent: 30 + - uid: 15213 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,36.5 + parent: 30 + - uid: 15986 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,33.5 + parent: 30 + - uid: 15987 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,37.5 + parent: 30 + - uid: 18696 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,16.5 + parent: 30 + - uid: 18733 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,15.5 + parent: 30 + - uid: 18734 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,14.5 + parent: 30 - uid: 20394 components: - type: Transform @@ -112807,35 +110803,25 @@ entities: parent: 30 - proto: ShuttersRadiationOpen entities: - - uid: 9182 + - uid: 9408 components: - type: Transform - pos: -10.5,-42.5 + pos: -16.5,-49.5 parent: 30 - - uid: 9339 + - uid: 9410 components: - type: Transform - pos: -14.5,-43.5 + pos: -18.5,-45.5 parent: 30 - - uid: 10741 + - uid: 9411 components: - type: Transform - pos: -4.5,-42.5 + pos: -16.5,-45.5 parent: 30 - - uid: 10742 + - uid: 9415 components: - type: Transform - pos: -6.5,-42.5 - parent: 30 - - uid: 11152 - components: - - type: Transform - pos: -8.5,-42.5 - parent: 30 - - uid: 18692 - components: - - type: Transform - pos: -0.5,-43.5 + pos: -18.5,-49.5 parent: 30 - proto: SignAi entities: @@ -112915,18 +110901,6 @@ entities: - type: Transform pos: -39.5,9.5 parent: 30 - - uid: 3598 - components: - - type: MetaData - name: Janitorial Service Light - - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,-38.5 - parent: 30 - - type: DeviceLinkSource - linkedPorts: - 844: - - Pressed: Toggle - uid: 8570 components: - type: Transform @@ -112936,32 +110910,6 @@ entities: linkedPorts: 9068: - Pressed: Toggle - - uid: 8818 - components: - - type: Transform - pos: -13.5,-56.5 - parent: 30 - - type: DeviceLinkSource - linkedPorts: - 9827: - - Pressed: Toggle - 9826: - - Pressed: Toggle - 9825: - - Pressed: Toggle - - uid: 8821 - components: - - type: Transform - pos: -1.5,-56.5 - parent: 30 - - type: DeviceLinkSource - linkedPorts: - 9830: - - Pressed: Toggle - 9829: - - Pressed: Toggle - 9828: - - Pressed: Toggle - uid: 9038 components: - type: Transform @@ -113082,24 +111030,6 @@ entities: - Pressed: Toggle 13729: - Pressed: Toggle - - uid: 15985 - components: - - type: Transform - pos: 50.5,25.5 - parent: 30 - - type: DeviceLinkSource - linkedPorts: - 13751: - - Pressed: Toggle - - uid: 15986 - components: - - type: Transform - pos: 53.5,25.5 - parent: 30 - - type: DeviceLinkSource - linkedPorts: - 14512: - - Pressed: Toggle - uid: 20392 components: - type: Transform @@ -113131,21 +111061,6 @@ entities: linkedPorts: 5556: - Pressed: Toggle - - uid: 20399 - components: - - type: MetaData - name: Shutters - - type: Transform - pos: 16.5,13.5 - parent: 30 - - type: DeviceLinkSource - linkedPorts: - 12656: - - Pressed: Toggle - 12657: - - Pressed: Toggle - 13075: - - Pressed: Toggle - uid: 20446 components: - type: Transform @@ -113180,17 +111095,6 @@ entities: - Pressed: Toggle - proto: SignalButtonDirectional entities: - - uid: 3115 - components: - - type: MetaData - name: Janitorial Service Light - - type: Transform - pos: 12.5,13.5 - parent: 30 - - type: DeviceLinkSource - linkedPorts: - 961: - - Pressed: Toggle - uid: 3180 components: - type: Transform @@ -113358,18 +111262,6 @@ entities: - Pressed: Toggle 7562: - Pressed: Toggle - - uid: 8393 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,-48.5 - parent: 30 - - type: DeviceLinkSource - linkedPorts: - 9404: - - Pressed: Toggle - 9405: - - Pressed: Toggle - uid: 8607 components: - type: Transform @@ -113380,20 +111272,6 @@ entities: linkedPorts: 6882: - Pressed: Toggle - - uid: 8609 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,-45.5 - parent: 30 - - type: SignalSwitch - state: True - - type: DeviceLinkSource - linkedPorts: - 9405: - - Pressed: Toggle - 9404: - - Pressed: Toggle - uid: 8610 components: - type: Transform @@ -113461,6 +111339,17 @@ entities: linkedPorts: 6415: - Pressed: DoorBolt + - uid: 18213 + components: + - type: MetaData + name: janitor light button + - type: Transform + pos: 18.5,17.5 + parent: 30 + - type: DeviceLinkSource + linkedPorts: + 16403: + - Pressed: Toggle - uid: 20432 components: - type: Transform @@ -113489,6 +111378,141 @@ entities: - Pressed: Toggle 2313: - Pressed: Toggle +- proto: SignalSwitch + entities: + - uid: 11021 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,-38.5 + parent: 30 + - type: DeviceLinkSource + linkedPorts: + 9533: + - On: Open + - Off: Close + 11028: + - On: Open + - Off: Close + 11015: + - On: Open + - Off: Close +- proto: SignalSwitchDirectional + entities: + - uid: 402 + components: + - type: MetaData + name: shutters switch + - type: Transform + pos: 17.5,17.5 + parent: 30 + - type: DeviceLinkSource + linkedPorts: + 18696: + - On: Open + - Off: Close + 18733: + - On: Open + - Off: Close + 18734: + - On: Open + - Off: Close + - uid: 3131 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,-47.5 + parent: 30 + - type: DeviceLinkSource + linkedPorts: + 9415: + - On: Open + - Off: Close + 9408: + - On: Open + - Off: Close + 9410: + - On: Open + - Off: Close + 9411: + - On: Open + - Off: Close + - uid: 9164 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-54.5 + parent: 30 + - type: DeviceLinkSource + linkedPorts: + 9678: + - On: Open + - Off: Close + 9065: + - On: Open + - Off: Close + 9064: + - On: Open + - Off: Close + - uid: 9214 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-54.5 + parent: 30 + - type: DeviceLinkSource + linkedPorts: + 9690: + - On: Open + - Off: Close + 9302: + - On: Open + - Off: Close + 9691: + - On: Open + - Off: Close + - uid: 12697 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,35.5 + parent: 30 + - type: DeviceLinkSource + linkedPorts: + 15213: + - On: Open + - Off: Close + 15987: + - On: Open + - Off: Close + - uid: 14525 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,32.5 + parent: 30 + - type: DeviceLinkSource + linkedPorts: + 15986: + - On: Open + - Off: Close + 14844: + - On: Open + - Off: Close + - uid: 15975 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,38.5 + parent: 30 + - type: DeviceLinkSource + linkedPorts: + 14530: + - On: Open + - Off: Close + 15075: + - On: Open + - Off: Close - proto: SignArmory entities: - uid: 1927 @@ -113532,6 +111556,18 @@ entities: - type: Transform pos: -2.5,28.5 parent: 30 +- proto: SignCans + entities: + - uid: 20624 + components: + - type: Transform + pos: 18.5,-20.5 + parent: 30 + - uid: 20627 + components: + - type: Transform + pos: 15.5,-19.5 + parent: 30 - proto: SignCargo entities: - uid: 8405 @@ -113575,17 +111611,6 @@ entities: parent: 30 - proto: SignCryogenicsMed entities: - - uid: 6679 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,-42.5 - parent: 30 - - uid: 9950 - components: - - type: Transform - pos: 2.5,-51.5 - parent: 30 - uid: 15233 components: - type: Transform @@ -113593,12 +111618,6 @@ entities: parent: 30 - proto: SignDangerMed entities: - - uid: 6678 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-42.5 - parent: 30 - uid: 17038 components: - type: Transform @@ -114046,43 +112065,16 @@ entities: - type: Transform pos: -41.5,20.5 parent: 30 - - uid: 6684 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,-42.5 - parent: 30 - - uid: 6699 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,-42.5 - parent: 30 - uid: 6889 components: - type: Transform pos: -36.5,-1.5 parent: 30 - - uid: 9363 - components: - - type: Transform - pos: -5.5,-37.5 - parent: 30 - - uid: 9449 - components: - - type: Transform - pos: -25.5,-45.5 - parent: 30 - uid: 9464 components: - type: Transform pos: -4.5,-28.5 parent: 30 - - uid: 9465 - components: - - type: Transform - pos: -11.5,-36.5 - parent: 30 - uid: 15973 components: - type: Transform @@ -114093,6 +112085,23 @@ entities: - type: Transform pos: -62.5,44.5 parent: 30 + - uid: 20628 + components: + - type: Transform + pos: -9.5,-42.5 + parent: 30 +- proto: SignEngine + entities: + - uid: 20633 + components: + - type: Transform + pos: -8.5,-42.5 + parent: 30 + - uid: 20634 + components: + - type: Transform + pos: -13.5,-46.5 + parent: 30 - proto: SignEngineering entities: - uid: 9193 @@ -114121,17 +112130,28 @@ entities: parent: 30 - proto: SignFire entities: - - uid: 6639 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,-42.5 - parent: 30 - uid: 9264 components: - type: Transform pos: 23.5,-15.5 parent: 30 + - uid: 20621 + components: + - type: Transform + pos: 3.5,-42.5 + parent: 30 +- proto: SignFlammableMed + entities: + - uid: 20631 + components: + - type: Transform + pos: 4.5,-54.5 + parent: 30 + - uid: 20632 + components: + - type: Transform + pos: -5.5,-54.5 + parent: 30 - proto: SignGravity entities: - uid: 5603 @@ -114182,7 +112202,12 @@ entities: - uid: 18813 components: - type: Transform - pos: -57.5,-61.5 + pos: -71.5,-58.5 + parent: 30 + - uid: 20629 + components: + - type: Transform + pos: -63.5,-61.5 parent: 30 - proto: SignMagneticsMed entities: @@ -114302,16 +112327,16 @@ entities: - type: Transform pos: 12.5,43.5 parent: 30 - - uid: 10143 - components: - - type: Transform - pos: -19.5,-45.5 - parent: 30 - - uid: 10144 + - uid: 20622 components: - type: Transform pos: -15.5,-45.5 parent: 30 + - uid: 20630 + components: + - type: Transform + pos: -19.5,-45.5 + parent: 30 - proto: SignRedOne entities: - uid: 16140 @@ -114364,10 +112389,11 @@ entities: - type: Transform pos: 11.5,13.5 parent: 30 - - uid: 13389 + - uid: 17707 components: - type: Transform - pos: 16.5,16.5 + rot: 3.141592653589793 rad + pos: 15.5,13.5 parent: 30 - proto: SignSecurearea entities: @@ -114473,30 +112499,16 @@ entities: - type: Transform pos: 21.5,-20.5 parent: 30 + - uid: 9194 + components: + - type: Transform + pos: -0.5,-42.5 + parent: 30 - uid: 10386 components: - type: Transform pos: 17.5,-15.5 parent: 30 - - uid: 21458 - components: - - type: Transform - pos: -13.5,-42.5 - parent: 30 -- proto: SignSomethingOld - entities: - - uid: 10018 - components: - - type: Transform - pos: -1.5,-42.5 - parent: 30 -- proto: SignSomethingOld2 - entities: - - uid: 10017 - components: - - type: Transform - pos: -3.5,-42.5 - parent: 30 - proto: SignSpace entities: - uid: 385 @@ -114566,20 +112578,10 @@ entities: parent: 30 - proto: SignTelecomms entities: - - uid: 22655 + - uid: 20635 components: - type: Transform - pos: -19.5,-47.5 - parent: 30 - - uid: 22656 - components: - - type: Transform - pos: -28.5,-59.5 - parent: 30 - - uid: 22803 - components: - - type: Transform - pos: -21.5,-57.5 + pos: -11.5,-36.5 parent: 30 - proto: SignToolStorage entities: @@ -114597,25 +112599,13 @@ entities: parent: 30 - proto: SingularityGenerator entities: - - uid: 9407 + - uid: 19419 components: - type: Transform - pos: -22.5,-48.5 + pos: -16.5,-34.5 parent: 30 - proto: Sink entities: - - uid: 402 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -28.5,6.5 - parent: 30 - - uid: 403 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -28.5,12.5 - parent: 30 - uid: 449 components: - type: Transform @@ -114715,6 +112705,24 @@ entities: - type: Transform pos: -12.5,11.5 parent: 30 + - uid: 11065 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,-47.5 + parent: 30 + - uid: 12640 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,8.5 + parent: 30 + - uid: 17714 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,10.5 + parent: 30 - uid: 18011 components: - type: Transform @@ -114726,12 +112734,6 @@ entities: - type: Transform pos: -56.5,52.5 parent: 30 - - uid: 22541 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,14.5 - parent: 30 - proto: SmartFridge entities: - uid: 315 @@ -114756,6 +112758,11 @@ entities: parent: 30 - proto: SMESBasic entities: + - uid: 3115 + components: + - type: Transform + pos: -56.5,-63.5 + parent: 30 - uid: 5472 components: - type: MetaData @@ -114763,36 +112770,35 @@ entities: - type: Transform pos: 12.5,41.5 parent: 30 - - uid: 9410 + - uid: 8237 components: - type: Transform - pos: -24.5,-50.5 + pos: -15.5,-28.5 parent: 30 - - uid: 9411 + - uid: 8819 components: - type: Transform - pos: -24.5,-49.5 + pos: -19.5,-46.5 parent: 30 - - uid: 9496 + - uid: 9581 components: - - type: MetaData - name: SMES Bank 3 - type: Transform - pos: -6.5,-34.5 + pos: -6.5,-43.5 parent: 30 - - uid: 9497 + - uid: 9583 components: - - type: MetaData - name: SMES Bank 2 - type: Transform - pos: -7.5,-34.5 + pos: -5.5,-43.5 parent: 30 - - uid: 9498 + - uid: 11176 components: - - type: MetaData - name: SMES Bank 1 - type: Transform - pos: -8.5,-34.5 + pos: -7.5,-47.5 + parent: 30 + - uid: 11278 + components: + - type: Transform + pos: -7.5,-43.5 parent: 30 - uid: 15299 components: @@ -114801,6 +112807,11 @@ entities: - type: Transform pos: 51.5,31.5 parent: 30 + - uid: 15991 + components: + - type: Transform + pos: -56.5,-62.5 + parent: 30 - uid: 16277 components: - type: MetaData @@ -114808,20 +112819,6 @@ entities: - type: Transform pos: -65.5,44.5 parent: 30 - - uid: 18774 - components: - - type: MetaData - name: Chapelroid SMES 2 - - type: Transform - pos: -69.5,-63.5 - parent: 30 - - uid: 18775 - components: - - type: MetaData - name: Chapelroid SMES 1 - - type: Transform - pos: -69.5,-62.5 - parent: 30 - uid: 20046 components: - type: MetaData @@ -114829,17 +112826,17 @@ entities: - type: Transform pos: -0.5,84.5 parent: 30 - - uid: 20619 +- proto: SMESBasicEmpty + entities: + - uid: 9481 components: - type: Transform - pos: -15.5,-28.5 + pos: -15.5,-35.5 parent: 30 - - uid: 22658 + - uid: 9498 components: - - type: MetaData - name: Telecomms SMES - type: Transform - pos: -25.5,-62.5 + pos: -15.5,-34.5 parent: 30 - proto: SoapHomemade entities: @@ -116261,12 +114258,20 @@ entities: - type: Transform pos: 4.5,34.5 parent: 30 -- proto: SpawnMobCrabAtmos +- proto: SpawnMobCow entities: - - uid: 20359 + - uid: 18819 components: - type: Transform - pos: 17.5,-27.5 + rot: 1.5707963267948966 rad + pos: -26.5,6.5 + parent: 30 +- proto: SpawnMobCrabAtmos + entities: + - uid: 19831 + components: + - type: Transform + pos: 10.5,-25.5 parent: 30 - proto: SpawnMobFoxRenault entities: @@ -116277,10 +114282,11 @@ entities: parent: 30 - proto: SpawnMobGoat entities: - - uid: 7677 + - uid: 14336 components: - type: Transform - pos: -16.5,14.5 + rot: -1.5707963267948966 rad + pos: -27.5,5.5 parent: 30 - proto: SpawnMobKangarooWillow entities: @@ -116352,13 +114358,6 @@ entities: - type: Transform pos: -24.5,52.5 parent: 30 -- proto: SpawnMobSlothPaperwork - entities: - - uid: 19570 - components: - - type: Transform - pos: -57.5,-64.5 - parent: 30 - proto: SpawnMobSmile entities: - uid: 7441 @@ -116483,10 +114482,10 @@ entities: parent: 30 - proto: SpawnPointChiefEngineer entities: - - uid: 9587 + - uid: 9494 components: - type: Transform - pos: -16.5,-35.5 + pos: -7.5,-33.5 parent: 30 - proto: SpawnPointChiefMedicalOfficer entities: @@ -116571,10 +114570,10 @@ entities: parent: 30 - proto: SpawnPointLibrarian entities: - - uid: 19562 + - uid: 18604 components: - type: Transform - pos: -58.5,-65.5 + pos: -66.5,-62.5 parent: 30 - proto: SpawnPointMedicalDoctor entities: @@ -116810,47 +114809,102 @@ entities: parent: 30 - proto: SpawnPointStationEngineer entities: - - uid: 9579 + - uid: 9366 components: - type: Transform - pos: -23.5,-41.5 + pos: -23.5,-48.5 parent: 30 - - uid: 9580 + - uid: 9503 components: - type: Transform - pos: -24.5,-41.5 + pos: -6.5,-44.5 parent: 30 - - uid: 9581 + - uid: 9506 components: - type: Transform - pos: -23.5,-42.5 + pos: -22.5,-48.5 parent: 30 - - uid: 20346 + - uid: 9644 components: - type: Transform - pos: -24.5,-42.5 + pos: -22.5,-49.5 + parent: 30 + - uid: 9646 + components: + - type: Transform + pos: -24.5,-49.5 + parent: 30 + - uid: 9647 + components: + - type: Transform + pos: -23.5,-47.5 + parent: 30 + - uid: 9652 + components: + - type: Transform + pos: -23.5,-49.5 + parent: 30 + - uid: 9890 + components: + - type: Transform + pos: -23.5,-40.5 + parent: 30 + - uid: 9974 + components: + - type: Transform + pos: -24.5,-47.5 + parent: 30 + - uid: 10554 + components: + - type: Transform + pos: -24.5,-48.5 + parent: 30 + - uid: 10613 + components: + - type: Transform + pos: -20.5,-40.5 + parent: 30 + - uid: 11347 + components: + - type: Transform + pos: -22.5,-47.5 parent: 30 - proto: SpawnPointTechnicalAssistant entities: - - uid: 20802 + - uid: 9343 components: - type: Transform - pos: -21.5,-42.5 + pos: -24.5,-48.5 parent: 30 - - uid: 20803 + - uid: 9359 components: - type: Transform - pos: -21.5,-41.5 + pos: -7.5,-44.5 parent: 30 - - uid: 20885 + - uid: 9363 components: - type: Transform - pos: -22.5,-42.5 + pos: -23.5,-48.5 parent: 30 - - uid: 20886 + - uid: 9648 components: - type: Transform - pos: -22.5,-41.5 + pos: -22.5,-48.5 + parent: 30 + - uid: 9986 + components: + - type: Transform + pos: -23.5,-39.5 + parent: 30 + - uid: 10583 + components: + - type: Transform + pos: -23.5,-49.5 + parent: 30 + - uid: 10584 + components: + - type: Transform + pos: -23.5,-47.5 parent: 30 - proto: SpawnPointWarden entities: @@ -116868,6 +114922,16 @@ entities: parent: 30 - proto: SpawnVendingMachineRestockFoodDrink entities: + - uid: 11463 + components: + - type: Transform + pos: -69.5,-58.5 + parent: 30 + - uid: 16130 + components: + - type: Transform + pos: -70.5,-58.5 + parent: 30 - uid: 22422 components: - type: Transform @@ -117363,25 +115427,20 @@ entities: - type: Transform pos: 14.5,-28.5 parent: 30 - - uid: 9794 + - uid: 9066 components: - type: Transform - pos: -12.5,-43.5 + pos: -1.5,-43.5 parent: 30 - - uid: 9998 + - uid: 9882 components: - type: Transform - pos: -13.5,-43.5 + pos: -0.5,-43.5 parent: 30 - - uid: 10000 + - uid: 10561 components: - type: Transform - pos: -11.5,-43.5 - parent: 30 - - uid: 10001 - components: - - type: Transform - pos: -10.5,-43.5 + pos: -2.5,-43.5 parent: 30 - uid: 13342 components: @@ -117493,26 +115552,20 @@ entities: - type: Transform pos: -0.5,-11.5 parent: 30 - - uid: 9406 + - uid: 8239 components: - - type: MetaData - name: West Engineering Substation - type: Transform - pos: -22.5,-46.5 + pos: -16.5,-28.5 parent: 30 - - uid: 9570 + - uid: 9403 components: - - type: MetaData - name: East Engineering Substation - type: Transform - pos: 3.5,-37.5 + pos: -19.5,-48.5 parent: 30 - - uid: 10533 + - uid: 11175 components: - - type: MetaData - name: Singulo Substation - type: Transform - pos: -16.5,-51.5 + pos: -15.5,-39.5 parent: 30 - uid: 11374 components: @@ -117535,12 +115588,10 @@ entities: - type: Transform pos: 12.5,51.5 parent: 30 - - uid: 17718 + - uid: 18769 components: - - type: MetaData - name: Chapelroid Substation - type: Transform - pos: -52.5,-59.5 + pos: -56.5,-65.5 parent: 30 - uid: 18922 components: @@ -117563,12 +115614,12 @@ entities: - type: Transform pos: -24.5,41.5 parent: 30 - - uid: 22659 +- proto: SubstationBasicEmpty + entities: + - uid: 11345 components: - - type: MetaData - name: Telecomms Substation - type: Transform - pos: -27.5,-62.5 + pos: -15.5,-36.5 parent: 30 - proto: SubstationWallBasic entities: @@ -117615,22 +115666,27 @@ entities: parent: 30 - proto: SuitStorageCE entities: - - uid: 773 + - uid: 10649 components: - type: Transform - pos: -19.5,-36.5 + pos: -9.5,-36.5 parent: 30 - proto: SuitStorageEngi entities: - - uid: 9436 + - uid: 7111 components: - type: Transform - pos: -8.5,-38.5 + pos: -8.5,-41.5 parent: 30 - - uid: 9591 + - uid: 7123 components: - type: Transform - pos: -6.5,-38.5 + pos: -6.5,-41.5 + parent: 30 + - uid: 7124 + components: + - type: Transform + pos: -4.5,-41.5 parent: 30 - proto: SuitStorageEVA entities: @@ -117867,50 +115923,6 @@ entities: id: Conference Room - proto: SurveillanceCameraEngineering entities: - - uid: 788 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-48.5 - parent: 30 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: TEG Cold Loop - - uid: 8233 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,-57.5 - parent: 30 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: TEG West Hot Room - - uid: 8293 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,-53.5 - parent: 30 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Singulo Walkway - - uid: 8296 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,-39.5 - parent: 30 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Engi Locker Room - uid: 9253 components: - type: Transform @@ -117922,70 +115934,6 @@ entities: - SurveillanceCameraEngineering nameSet: True id: Atmos Storage - - uid: 9429 - components: - - type: Transform - pos: -8.5,-55.5 - parent: 30 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: TEG South - - uid: 9692 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,-49.5 - parent: 30 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: TEG Hot Loop - - uid: 9703 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-57.5 - parent: 30 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: TEG East Hot Room - - uid: 9704 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-43.5 - parent: 30 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: TEG North - - uid: 21209 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,-38.5 - parent: 30 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: 'Engineering ' - - uid: 21210 - components: - - type: Transform - pos: -10.5,-31.5 - parent: 30 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: AME Room - uid: 21211 components: - type: Transform @@ -118019,23 +115967,6 @@ entities: - SurveillanceCameraEngineering nameSet: True id: Atmospherics Desk - - uid: 21217 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-34.5 - parent: 30 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Chief Engineer's Room - - uid: 21218 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,-42.5 - parent: 30 - uid: 21219 components: - type: Transform @@ -118068,28 +115999,6 @@ entities: - SurveillanceCameraEngineering nameSet: True id: Atmos Tanks - - uid: 21279 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-33.5 - parent: 30 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: SMES Bank - - uid: 21280 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,-46.5 - parent: 30 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Engineering Supply - uid: 21281 components: - type: Transform @@ -118111,39 +116020,6 @@ entities: - SurveillanceCameraEngineering nameSet: True id: Atmos Hall - - uid: 22811 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,-57.5 - parent: 30 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Telecomms Exterior - - uid: 22838 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -41.5,-60.5 - parent: 30 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Telecomms - - uid: 22839 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,-59.5 - parent: 30 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Telecomms Entrance - proto: SurveillanceCameraGeneral entities: - uid: 1039 @@ -118189,17 +116065,6 @@ entities: - SurveillanceCameraGeneral nameSet: True id: Game Room - - uid: 21229 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -54.5,-64.5 - parent: 30 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Library - uid: 21231 components: - type: Transform @@ -118451,61 +116316,54 @@ entities: id: Psychology - proto: SurveillanceCameraRouterCommand entities: + - uid: 11177 + components: + - type: Transform + pos: -10.5,-31.5 + parent: 30 - uid: 20980 components: - type: Transform pos: 7.5,41.5 parent: 30 - - uid: 22824 - components: - - type: Transform - pos: -38.5,-60.5 - parent: 30 -- proto: SurveillanceCameraRouterConstructed - entities: - - uid: 22832 - components: - - type: Transform - pos: -40.5,-57.5 - parent: 30 - proto: SurveillanceCameraRouterEngineering entities: - - uid: 22807 + - uid: 19183 components: - type: Transform - pos: -38.5,-57.5 + pos: -8.5,-31.5 parent: 30 - proto: SurveillanceCameraRouterGeneral entities: - - uid: 21228 + - uid: 9387 components: - type: Transform - pos: -68.5,-63.5 + pos: -12.5,-31.5 parent: 30 - - uid: 22819 + - uid: 18191 components: - type: Transform - pos: -40.5,-63.5 + pos: -52.5,-59.5 parent: 30 - proto: SurveillanceCameraRouterMedical entities: - - uid: 22809 + - uid: 19184 components: - type: Transform - pos: -38.5,-62.5 + pos: -6.5,-27.5 parent: 30 - proto: SurveillanceCameraRouterScience entities: + - uid: 11156 + components: + - type: Transform + pos: -8.5,-27.5 + parent: 30 - uid: 12747 components: - type: Transform pos: 31.5,15.5 parent: 30 - - uid: 22810 - components: - - type: Transform - pos: -38.5,-63.5 - parent: 30 - proto: SurveillanceCameraRouterSecurity entities: - uid: 1946 @@ -118513,43 +116371,43 @@ entities: - type: Transform pos: -37.5,56.5 parent: 30 - - uid: 22820 + - uid: 9970 components: - type: Transform - pos: -35.5,-63.5 + pos: -6.5,-31.5 parent: 30 - proto: SurveillanceCameraRouterService entities: + - uid: 11348 + components: + - type: Transform + pos: -12.5,-27.5 + parent: 30 - uid: 21220 components: - type: Transform pos: -13.5,17.5 parent: 30 - - uid: 22821 - components: - - type: Transform - pos: -35.5,-57.5 - parent: 30 - proto: SurveillanceCameraRouterSupply entities: - - uid: 22808 + - uid: 10552 components: - type: Transform - pos: -38.5,-58.5 + pos: -10.5,-27.5 parent: 30 - proto: SurveillanceCameraScience entities: - - uid: 21186 + - uid: 9990 components: - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,12.5 + rot: -1.5707963267948966 rad + pos: 17.5,13.5 parent: 30 - type: SurveillanceCamera setupAvailableNetworks: - SurveillanceCameraScience nameSet: True - id: RND + id: Reception - uid: 21187 components: - type: Transform @@ -118941,20 +116799,6 @@ entities: - SurveillanceCameraSupply nameSet: True id: Quartermaster's Room -- proto: SurveillanceCameraWirelessRouterConstructed - entities: - - uid: 22831 - components: - - type: Transform - pos: -40.5,-59.5 - parent: 30 -- proto: SurveillanceCameraWirelessRouterEntertainment - entities: - - uid: 22818 - components: - - type: Transform - pos: -40.5,-58.5 - parent: 30 - proto: SynthesizerInstrument entities: - uid: 15112 @@ -119336,6 +117180,11 @@ entities: - type: Transform pos: -51.5,55.5 parent: 30 + - uid: 3130 + components: + - type: Transform + pos: -25.5,-43.5 + parent: 30 - uid: 3528 components: - type: Transform @@ -119346,11 +117195,32 @@ entities: - type: Transform pos: -39.5,18.5 parent: 30 + - uid: 4987 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-32.5 + parent: 30 + - uid: 5238 + components: + - type: Transform + pos: -24.5,-44.5 + parent: 30 + - uid: 5240 + components: + - type: Transform + pos: -25.5,-42.5 + parent: 30 - uid: 5414 components: - type: Transform pos: 5.5,29.5 parent: 30 + - uid: 5444 + components: + - type: Transform + pos: -25.5,-44.5 + parent: 30 - uid: 6278 components: - type: Transform @@ -119496,11 +117366,6 @@ entities: - type: Transform pos: 13.5,-25.5 parent: 30 - - uid: 9244 - components: - - type: Transform - pos: 14.5,-25.5 - parent: 30 - uid: 9245 components: - type: Transform @@ -119516,41 +117381,45 @@ entities: - type: Transform pos: 14.5,-15.5 parent: 30 - - uid: 9430 + - uid: 9414 components: - type: Transform - pos: -24.5,-39.5 - parent: 30 - - uid: 9431 - components: - - type: Transform - pos: -23.5,-39.5 + rot: 3.141592653589793 rad + pos: -7.5,-34.5 parent: 30 - uid: 9442 components: - type: Transform pos: 5.5,-26.5 parent: 30 - - uid: 9479 + - uid: 9523 components: - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-34.5 + parent: 30 + - uid: 9531 + components: + - type: Transform + pos: -5.5,-34.5 + parent: 30 + - uid: 9532 + components: + - type: Transform + pos: -9.5,-34.5 + parent: 30 + - uid: 9591 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-32.5 + parent: 30 + - uid: 10123 + components: + - type: Transform + rot: -1.5707963267948966 rad pos: -17.5,-29.5 parent: 30 - - uid: 9480 - components: - - type: Transform - pos: -17.5,-30.5 - parent: 30 - - uid: 9481 - components: - - type: Transform - pos: -17.5,-28.5 - parent: 30 - - uid: 9482 - components: - - type: Transform - pos: -17.5,-31.5 - parent: 30 - uid: 10407 components: - type: Transform @@ -119566,6 +117435,40 @@ entities: - type: Transform pos: -47.5,63.5 parent: 30 + - uid: 10593 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,-50.5 + parent: 30 + - uid: 10680 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-47.5 + parent: 30 + - uid: 10790 + components: + - type: Transform + pos: 2.5,-41.5 + parent: 30 + - uid: 10794 + components: + - type: Transform + pos: 3.5,-41.5 + parent: 30 + - uid: 11063 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,-50.5 + parent: 30 + - uid: 11174 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-47.5 + parent: 30 - uid: 11247 components: - type: Transform @@ -119581,55 +117484,10 @@ entities: - type: Transform pos: -3.5,-33.5 parent: 30 - - uid: 11272 + - uid: 11336 components: - type: Transform - pos: 0.5,-44.5 - parent: 30 - - uid: 11273 - components: - - type: Transform - pos: 0.5,-43.5 - parent: 30 - - uid: 11274 - components: - - type: Transform - pos: 0.5,-42.5 - parent: 30 - - uid: 11285 - components: - - type: Transform - pos: -19.5,-44.5 - parent: 30 - - uid: 11286 - components: - - type: Transform - pos: -15.5,-44.5 - parent: 30 - - uid: 11287 - components: - - type: Transform - pos: -15.5,-43.5 - parent: 30 - - uid: 11288 - components: - - type: Transform - pos: -15.5,-42.5 - parent: 30 - - uid: 11302 - components: - - type: Transform - pos: 1.5,-44.5 - parent: 30 - - uid: 11306 - components: - - type: Transform - pos: -11.5,-35.5 - parent: 30 - - uid: 11307 - components: - - type: Transform - pos: -11.5,-34.5 + pos: -5.5,-35.5 parent: 30 - uid: 11473 components: @@ -119702,6 +117560,12 @@ entities: - type: Transform pos: 25.5,31.5 parent: 30 + - uid: 12657 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,13.5 + parent: 30 - uid: 12761 components: - type: Transform @@ -119712,10 +117576,23 @@ entities: - type: Transform pos: 24.5,10.5 parent: 30 - - uid: 12835 + - uid: 12836 components: - type: Transform - pos: 14.5,10.5 + rot: -1.5707963267948966 rad + pos: -17.5,5.5 + parent: 30 + - uid: 12838 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,16.5 + parent: 30 + - uid: 12839 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,15.5 parent: 30 - uid: 12841 components: @@ -119778,6 +117655,16 @@ entities: - type: Transform pos: 15.5,60.5 parent: 30 + - uid: 14868 + components: + - type: Transform + pos: -22.5,-41.5 + parent: 30 + - uid: 14895 + components: + - type: Transform + pos: -22.5,-39.5 + parent: 30 - uid: 15052 components: - type: Transform @@ -119808,6 +117695,12 @@ entities: - type: Transform pos: 47.5,44.5 parent: 30 + - uid: 15988 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,14.5 + parent: 30 - uid: 16117 components: - type: Transform @@ -119893,11 +117786,39 @@ entities: - type: Transform pos: -81.5,-61.5 parent: 30 + - uid: 18215 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,13.5 + parent: 30 + - uid: 18770 + components: + - type: Transform + pos: 18.5,10.5 + parent: 30 + - uid: 18815 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,13.5 + parent: 30 + - uid: 18996 + components: + - type: Transform + pos: -21.5,-40.5 + parent: 30 - uid: 19068 components: - type: Transform pos: -51.5,-46.5 parent: 30 + - uid: 19178 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-47.5 + parent: 30 - uid: 19399 components: - type: Transform @@ -119908,6 +117829,33 @@ entities: - type: Transform pos: -49.5,6.5 parent: 30 + - uid: 19402 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,-47.5 + parent: 30 + - uid: 19403 + components: + - type: Transform + pos: -21.5,-41.5 + parent: 30 + - uid: 19404 + components: + - type: Transform + pos: -22.5,-40.5 + parent: 30 + - uid: 19405 + components: + - type: Transform + pos: -21.5,-39.5 + parent: 30 + - uid: 19409 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,-48.5 + parent: 30 - uid: 19528 components: - type: Transform @@ -119948,6 +117896,12 @@ entities: - type: Transform pos: -28.5,-43.5 parent: 30 + - uid: 19782 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-26.5 + parent: 30 - uid: 20272 components: - type: Transform @@ -120048,12 +118002,6 @@ entities: - type: Transform pos: -49.5,50.5 parent: 30 - - uid: 22835 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,-57.5 - parent: 30 - proto: TableCarpet entities: - uid: 1535 @@ -120158,11 +118106,6 @@ entities: parent: 30 - proto: TableGlass entities: - - uid: 416 - components: - - type: Transform - pos: -25.5,11.5 - parent: 30 - uid: 907 components: - type: Transform @@ -120322,26 +118265,6 @@ entities: - type: Transform pos: 27.5,14.5 parent: 30 - - uid: 12830 - components: - - type: Transform - pos: 19.5,12.5 - parent: 30 - - uid: 12838 - components: - - type: Transform - pos: 16.5,12.5 - parent: 30 - - uid: 12839 - components: - - type: Transform - pos: 15.5,12.5 - parent: 30 - - uid: 12840 - components: - - type: Transform - pos: 18.5,12.5 - parent: 30 - uid: 13088 components: - type: Transform @@ -120352,6 +118275,11 @@ entities: - type: Transform pos: -4.5,-10.5 parent: 30 + - uid: 16137 + components: + - type: Transform + pos: -28.5,11.5 + parent: 30 - uid: 20282 components: - type: Transform @@ -120666,30 +118594,30 @@ entities: - type: Transform pos: -27.5,43.5 parent: 30 - - uid: 9326 + - uid: 9059 components: - type: Transform - pos: -18.5,-35.5 + pos: 3.5,-46.5 parent: 30 - - uid: 9328 + - uid: 9658 components: - type: Transform - pos: -15.5,-34.5 + pos: -2.5,-45.5 parent: 30 - - uid: 9359 + - uid: 9660 components: - type: Transform - pos: -15.5,-35.5 + pos: 2.5,-46.5 parent: 30 - - uid: 9576 + - uid: 9674 components: - type: Transform - pos: -19.5,-35.5 + pos: 4.5,-46.5 parent: 30 - - uid: 9609 + - uid: 9682 components: - type: Transform - pos: -17.5,-35.5 + pos: -2.5,-46.5 parent: 30 - uid: 9803 components: @@ -120706,26 +118634,6 @@ entities: - type: Transform pos: -26.5,41.5 parent: 30 - - uid: 10002 - components: - - type: Transform - pos: -1.5,-45.5 - parent: 30 - - uid: 10003 - components: - - type: Transform - pos: -1.5,-44.5 - parent: 30 - - uid: 10004 - components: - - type: Transform - pos: -13.5,-45.5 - parent: 30 - - uid: 10005 - components: - - type: Transform - pos: -13.5,-44.5 - parent: 30 - uid: 10246 components: - type: Transform @@ -120761,11 +118669,6 @@ entities: - type: Transform pos: 4.5,-27.5 parent: 30 - - uid: 12699 - components: - - type: Transform - pos: 14.5,13.5 - parent: 30 - uid: 12847 components: - type: Transform @@ -121085,6 +118988,11 @@ entities: - type: Transform pos: -30.5,51.5 parent: 30 + - uid: 3361 + components: + - type: Transform + pos: -58.5,-63.5 + parent: 30 - uid: 4956 components: - type: Transform @@ -121275,6 +119183,12 @@ entities: - type: Transform pos: -8.5,-20.5 parent: 30 + - uid: 10231 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -62.5,-65.5 + parent: 30 - uid: 11353 components: - type: Transform @@ -121305,11 +119219,36 @@ entities: - type: Transform pos: 2.5,-10.5 parent: 30 + - uid: 12635 + components: + - type: Transform + pos: -66.5,-64.5 + parent: 30 + - uid: 12818 + components: + - type: Transform + pos: -62.5,-64.5 + parent: 30 + - uid: 12830 + components: + - type: Transform + pos: -58.5,-65.5 + parent: 30 - uid: 13583 components: - type: Transform pos: 40.5,40.5 parent: 30 + - uid: 14447 + components: + - type: Transform + pos: -65.5,-64.5 + parent: 30 + - uid: 14505 + components: + - type: Transform + pos: -65.5,-63.5 + parent: 30 - uid: 15238 components: - type: Transform @@ -121420,30 +119359,10 @@ entities: - type: Transform pos: -53.5,-53.5 parent: 30 - - uid: 19417 + - uid: 18356 components: - type: Transform - pos: -57.5,-67.5 - parent: 30 - - uid: 19418 - components: - - type: Transform - pos: -57.5,-65.5 - parent: 30 - - uid: 19419 - components: - - type: Transform - pos: -57.5,-63.5 - parent: 30 - - uid: 19420 - components: - - type: Transform - pos: -60.5,-67.5 - parent: 30 - - uid: 19421 - components: - - type: Transform - pos: -60.5,-65.5 + pos: -69.5,-63.5 parent: 30 - uid: 19495 components: @@ -121505,16 +119424,6 @@ entities: - type: Transform pos: -27.5,15.5 parent: 30 - - uid: 22304 - components: - - type: Transform - pos: -54.5,-63.5 - parent: 30 - - uid: 22305 - components: - - type: Transform - pos: -60.5,-63.5 - parent: 30 - proto: TargetClown entities: - uid: 1228 @@ -121525,191 +119434,156 @@ entities: parent: 30 - proto: TegCenter entities: - - uid: 16040 + - uid: 9817 components: - type: Transform rot: 1.5707963267948966 rad - pos: -7.5,-50.5 + pos: -0.5,-50.5 parent: 30 - proto: TegCirculator entities: - - uid: 15013 + - uid: 11286 components: - type: Transform - pos: -6.5,-50.5 + pos: 0.5,-50.5 parent: 30 - type: PointLight color: '#FF3300FF' - - uid: 16038 + - uid: 11292 components: - type: Transform rot: 3.141592653589793 rad - pos: -8.5,-50.5 + pos: -1.5,-50.5 parent: 30 - type: PointLight color: '#FF3300FF' -- proto: TelecomServer +- proto: TelecomServerFilledCargo entities: - - uid: 22621 + - uid: 10551 components: - type: Transform - pos: -37.5,-58.5 + pos: -10.5,-28.5 parent: 30 - - type: ContainerContainer - containers: - key_slots: !type:Container - showEnts: False - occludes: True - ents: - - 22622 - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - - uid: 22812 +- proto: TelecomServerFilledCommand + entities: + - uid: 9972 components: - type: Transform - pos: -35.5,-61.5 + pos: -10.5,-30.5 parent: 30 - - type: ContainerContainer - containers: - key_slots: !type:Container - showEnts: False - occludes: True - ents: - - 22813 - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - - uid: 22814 +- proto: TelecomServerFilledCommon + entities: + - uid: 9389 components: - type: Transform - pos: -37.5,-60.5 + pos: -12.5,-30.5 parent: 30 - - type: ContainerContainer - containers: - key_slots: !type:Container - showEnts: False - occludes: True - ents: - - 22815 - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - - uid: 22816 +- proto: TelecomServerFilledEngineering + entities: + - uid: 10550 components: - type: Transform - pos: -40.5,-61.5 + pos: -8.5,-30.5 parent: 30 - - type: ContainerContainer - containers: - key_slots: !type:Container - showEnts: False - occludes: True - ents: - - 22817 - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - - uid: 22822 +- proto: TelecomServerFilledMedical + entities: + - uid: 19181 components: - type: Transform - pos: -37.5,-57.5 + pos: -6.5,-28.5 parent: 30 - - type: ContainerContainer - containers: - key_slots: !type:Container - showEnts: False - occludes: True - ents: - - 22823 - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - - uid: 22825 +- proto: TelecomServerFilledScience + entities: + - uid: 19185 components: - type: Transform - pos: -37.5,-63.5 + pos: -8.5,-28.5 parent: 30 - - type: ContainerContainer - containers: - key_slots: !type:Container - showEnts: False - occludes: True - ents: - - 22826 - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - - uid: 22827 +- proto: TelecomServerFilledSecurity + entities: + - uid: 11161 components: - type: Transform - pos: -37.5,-62.5 + pos: -6.5,-30.5 parent: 30 - - type: ContainerContainer - containers: - key_slots: !type:Container - showEnts: False - occludes: True - ents: - - 22828 - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - - uid: 22829 +- proto: TelecomServerFilledService + entities: + - uid: 19179 components: - type: Transform - pos: -35.5,-59.5 + pos: -12.5,-28.5 + parent: 30 +- proto: TeslaCoil + entities: + - uid: 5732 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-55.5 + parent: 30 + - uid: 6095 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-56.5 + parent: 30 + - uid: 6271 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-54.5 + parent: 30 + - uid: 6678 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-56.5 + parent: 30 + - uid: 6679 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-55.5 + parent: 30 + - uid: 13902 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-54.5 + parent: 30 +- proto: TeslaGenerator + entities: + - uid: 19411 + components: + - type: Transform + pos: -16.5,-35.5 + parent: 30 +- proto: TeslaGroundingRod + entities: + - uid: 10004 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-54.5 + parent: 30 + - uid: 10140 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,-54.5 + parent: 30 + - uid: 11110 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,-54.5 + parent: 30 + - uid: 13952 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-54.5 parent: 30 - - type: ContainerContainer - containers: - key_slots: !type:Container - showEnts: False - occludes: True - ents: - - 22830 - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - proto: TintedWindow entities: - uid: 289 @@ -121757,16 +119631,6 @@ entities: - type: Transform pos: -67.5,-41.5 parent: 30 - - uid: 17707 - components: - - type: Transform - pos: -69.5,-60.5 - parent: 30 - - uid: 17709 - components: - - type: Transform - pos: -69.5,-59.5 - parent: 30 - uid: 18697 components: - type: Transform @@ -121863,13 +119727,6 @@ entities: - type: Transform pos: -21.467775,23.567343 parent: 30 -- proto: ToolboxElectrical - entities: - - uid: 11308 - components: - - type: Transform - pos: -11.510529,-34.394146 - parent: 30 - proto: ToolboxElectricalFilled entities: - uid: 1628 @@ -121882,10 +119739,15 @@ entities: - type: Transform pos: -32.56638,31.48925 parent: 30 - - uid: 11313 + - uid: 19180 components: - type: Transform - pos: -24.449165,-39.212135 + pos: 3.3810787,-41.40624 + parent: 30 + - uid: 19374 + components: + - type: Transform + pos: -24.790539,-50.361137 parent: 30 - uid: 20299 components: @@ -121924,6 +119786,11 @@ entities: - type: Transform pos: -6.509716,45.635574 parent: 30 + - uid: 10003 + components: + - type: Transform + pos: -11.488707,-33.250866 + parent: 30 - uid: 11256 components: - type: Transform @@ -121958,10 +119825,10 @@ entities: - type: Transform pos: -24.487177,31.504875 parent: 30 - - uid: 11309 + - uid: 11271 components: - type: Transform - pos: -11.510529,-34.706646 + pos: -8.522053,-43.420155 parent: 30 - uid: 12823 components: @@ -121973,21 +119840,16 @@ entities: - type: Transform pos: -57.478386,27.672016 parent: 30 - - uid: 18793 + - uid: 18771 components: - type: Transform - pos: -67.52385,-62.454746 + pos: -53.3416,-62.69514 parent: 30 - uid: 20300 components: - type: Transform pos: 6.5231524,64.57765 parent: 30 - - uid: 22842 - components: - - type: Transform - pos: -29.484652,-57.340546 - parent: 30 - proto: ToyAi entities: - uid: 20307 @@ -122074,10 +119936,10 @@ entities: - type: Transform pos: -39.368607,18.074919 parent: 30 - - uid: 11269 + - uid: 13976 components: - type: Transform - pos: -17.424835,-30.14346 + pos: -10.716881,-47.33087 parent: 30 - uid: 22448 components: @@ -122213,63 +120075,49 @@ entities: - Left: Forward - Right: Reverse - Middle: Off - - uid: 15987 - components: - - type: Transform - pos: 50.5,23.5 - parent: 30 - - type: DeviceLinkSource - linkedPorts: - 14525: - - Middle: Off - - Right: Reverse - - Left: Forward - 14524: - - Middle: Off - - Right: Reverse - - Left: Forward - 14523: - - Middle: Off - - Right: Reverse - - Left: Forward - 14522: - - Middle: Off - - Right: Reverse - - Left: Forward - - uid: 15988 + - uid: 18373 components: - type: Transform pos: 51.5,23.5 parent: 30 - type: DeviceLinkSource linkedPorts: - 14526: - - Middle: Off - - Right: Reverse + 12943: - Left: Forward - 14527: - - Middle: Off - Right: Reverse - - Left: Forward - 14528: - Middle: Off - - Right: Reverse + 12944: - Left: Forward - 14529: + - Right: Reverse - Middle: Off - - Right: Reverse + 12961: - Left: Forward - - uid: 15989 - components: - - type: Transform - pos: 53.5,23.5 - parent: 30 - - type: DeviceLinkSource - linkedPorts: - 14530: + - Right: Reverse - Middle: Off - - Right: Reverse + 12973: - Left: Forward + - Right: Reverse + - Middle: Off + 18374: + - Left: Forward + - Right: Reverse + - Middle: Off + 12974: + - Left: Reverse + - Right: Forward + - Middle: Off + 12983: + - Left: Forward + - Right: Reverse + - Middle: Off + 13034: + - Left: Forward + - Right: Reverse + - Middle: Off + 13048: + - Left: Forward + - Right: Reverse + - Middle: Off - proto: UnfinishedMachineFrame entities: - uid: 7826 @@ -122282,36 +120130,6 @@ entities: - type: Transform pos: -38.5,-18.5 parent: 30 - - uid: 10191 - components: - - type: Transform - pos: -24.5,-68.5 - parent: 30 - - uid: 10192 - components: - - type: Transform - pos: -25.5,-68.5 - parent: 30 - - uid: 10195 - components: - - type: Transform - pos: -23.5,-68.5 - parent: 30 - - uid: 10211 - components: - - type: Transform - pos: -24.5,-69.5 - parent: 30 - - uid: 10212 - components: - - type: Transform - pos: -23.5,-69.5 - parent: 30 - - uid: 10214 - components: - - type: Transform - pos: -25.5,-69.5 - parent: 30 - uid: 12797 components: - type: Transform @@ -122584,12 +120402,10 @@ entities: - type: Transform pos: -52.5,65.5 parent: 30 - - uid: 12811 + - uid: 17709 components: - - type: MetaData - name: Hot drinks machine - type: Transform - pos: 20.5,14.5 + pos: 20.5,16.5 parent: 30 - uid: 21318 components: @@ -122607,10 +120423,10 @@ entities: parent: 30 - proto: VendingMachineCuraDrobe entities: - - uid: 18842 + - uid: 18357 components: - type: Transform - pos: -59.5,-68.5 + pos: -68.5,-63.5 parent: 30 - proto: VendingMachineDetDrobe entities: @@ -122644,10 +120460,10 @@ entities: parent: 30 - proto: VendingMachineEngiDrobe entities: - - uid: 9432 + - uid: 19406 components: - type: Transform - pos: -25.5,-39.5 + pos: -21.5,-46.5 parent: 30 - proto: VendingMachineEngivend entities: @@ -122734,10 +120550,10 @@ entities: parent: 30 - proto: VendingMachineNutri entities: - - uid: 414 + - uid: 16135 components: - type: Transform - pos: -25.5,9.5 + pos: -28.5,9.5 parent: 30 - proto: VendingMachineRoboDrobe entities: @@ -122764,10 +120580,10 @@ entities: parent: 30 - proto: VendingMachineSciDrobe entities: - - uid: 12842 + - uid: 18761 components: - type: Transform - pos: 17.5,12.5 + pos: 16.5,10.5 parent: 30 - proto: VendingMachineSec entities: @@ -122785,10 +120601,10 @@ entities: parent: 30 - proto: VendingMachineSeeds entities: - - uid: 413 + - uid: 16136 components: - type: Transform - pos: -25.5,10.5 + pos: -28.5,13.5 parent: 30 - proto: VendingMachineSeedsUnlocked entities: @@ -122856,6 +120672,11 @@ entities: - type: Transform pos: 7.5,-27.5 parent: 30 + - uid: 13970 + components: + - type: Transform + pos: -15.5,-44.5 + parent: 30 - proto: VendingMachineTheater entities: - uid: 654 @@ -123124,6 +120945,51 @@ entities: - type: Transform pos: -4.5,24.5 parent: 30 + - uid: 403 + components: + - type: Transform + pos: -51.5,-66.5 + parent: 30 + - uid: 413 + components: + - type: Transform + pos: -51.5,-62.5 + parent: 30 + - uid: 414 + components: + - type: Transform + pos: -51.5,-63.5 + parent: 30 + - uid: 415 + components: + - type: Transform + pos: -56.5,-66.5 + parent: 30 + - uid: 416 + components: + - type: Transform + pos: -55.5,-66.5 + parent: 30 + - uid: 434 + components: + - type: Transform + pos: -57.5,-66.5 + parent: 30 + - uid: 435 + components: + - type: Transform + pos: -54.5,-66.5 + parent: 30 + - uid: 490 + components: + - type: Transform + pos: -51.5,-61.5 + parent: 30 + - uid: 494 + components: + - type: Transform + pos: -53.5,-66.5 + parent: 30 - uid: 570 components: - type: Transform @@ -123274,6 +121140,11 @@ entities: - type: Transform pos: -45.5,9.5 parent: 30 + - uid: 961 + components: + - type: Transform + pos: -51.5,-60.5 + parent: 30 - uid: 992 components: - type: Transform @@ -124163,6 +122034,11 @@ entities: - type: Transform pos: -42.5,58.5 parent: 30 + - uid: 1952 + components: + - type: Transform + pos: -51.5,-65.5 + parent: 30 - uid: 2034 components: - type: Transform @@ -124208,6 +122084,11 @@ entities: - type: Transform pos: -42.5,61.5 parent: 30 + - uid: 2088 + components: + - type: Transform + pos: -51.5,-64.5 + parent: 30 - uid: 2102 components: - type: Transform @@ -124558,6 +122439,12 @@ entities: - type: Transform pos: -51.5,6.5 parent: 30 + - uid: 3153 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,-26.5 + parent: 30 - uid: 3200 components: - type: Transform @@ -125449,11 +123336,23 @@ entities: - type: Transform pos: -13.5,45.5 parent: 30 + - uid: 6272 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,-57.5 + parent: 30 - uid: 6273 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,-57.5 + rot: 3.141592653589793 rad + pos: -25.5,-57.5 + parent: 30 + - uid: 6274 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,-58.5 parent: 30 - uid: 6294 components: @@ -125635,6 +123534,18 @@ entities: - type: Transform pos: 15.5,47.5 parent: 30 + - uid: 6466 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,-60.5 + parent: 30 + - uid: 6468 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,-54.5 + parent: 30 - uid: 6486 components: - type: Transform @@ -125775,17 +123686,29 @@ entities: - type: Transform pos: 28.5,44.5 parent: 30 + - uid: 6600 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,-55.5 + parent: 30 + - uid: 6601 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,-54.5 + parent: 30 - uid: 6602 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-60.5 + rot: -1.5707963267948966 rad + pos: -21.5,-57.5 parent: 30 - uid: 6603 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,-56.5 + rot: -1.5707963267948966 rad + pos: -24.5,-56.5 parent: 30 - uid: 6607 components: @@ -125822,6 +123745,12 @@ entities: - type: Transform pos: -4.5,-5.5 parent: 30 + - uid: 6639 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,-57.5 + parent: 30 - uid: 6647 components: - type: Transform @@ -125907,6 +123836,36 @@ entities: - type: Transform pos: -10.5,-11.5 parent: 30 + - uid: 6670 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,-61.5 + parent: 30 + - uid: 6684 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,-56.5 + parent: 30 + - uid: 6699 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,-54.5 + parent: 30 + - uid: 6711 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,-57.5 + parent: 30 + - uid: 6714 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-53.5 + parent: 30 - uid: 6735 components: - type: Transform @@ -125972,6 +123931,12 @@ entities: - type: Transform pos: -43.5,-22.5 parent: 30 + - uid: 7094 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,-62.5 + parent: 30 - uid: 7127 components: - type: Transform @@ -125982,18 +123947,6 @@ entities: - type: Transform pos: -3.5,18.5 parent: 30 - - uid: 7219 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,-59.5 - parent: 30 - - uid: 7220 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-59.5 - parent: 30 - uid: 7242 components: - type: Transform @@ -126024,6 +123977,42 @@ entities: - type: Transform pos: -31.5,-22.5 parent: 30 + - uid: 7444 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,-76.5 + parent: 30 + - uid: 7667 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,-76.5 + parent: 30 + - uid: 7669 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,-76.5 + parent: 30 + - uid: 7670 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,-67.5 + parent: 30 + - uid: 7671 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,-68.5 + parent: 30 + - uid: 7672 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,-69.5 + parent: 30 - uid: 7713 components: - type: Transform @@ -126077,6 +124066,18 @@ entities: rot: 3.141592653589793 rad pos: 0.5,-13.5 parent: 30 + - uid: 7770 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,-71.5 + parent: 30 + - uid: 7771 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,-72.5 + parent: 30 - uid: 7772 components: - type: Transform @@ -126088,21 +124089,104 @@ entities: - type: Transform pos: -35.5,-27.5 parent: 30 + - uid: 7914 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,-73.5 + parent: 30 - uid: 7959 components: - type: Transform pos: -34.5,-14.5 parent: 30 + - uid: 7965 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,-74.5 + parent: 30 - uid: 7969 components: - type: Transform pos: -35.5,-14.5 parent: 30 + - uid: 8004 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,-75.5 + parent: 30 + - uid: 8005 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,-76.5 + parent: 30 - uid: 8025 components: - type: Transform pos: -35.5,-26.5 parent: 30 + - uid: 8137 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,-76.5 + parent: 30 + - uid: 8225 + components: + - type: Transform + pos: -7.5,-63.5 + parent: 30 + - uid: 8226 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,-64.5 + parent: 30 + - uid: 8228 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,-63.5 + parent: 30 + - uid: 8230 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,-65.5 + parent: 30 + - uid: 8231 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-28.5 + parent: 30 + - uid: 8255 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-76.5 + parent: 30 + - uid: 8258 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,-76.5 + parent: 30 + - uid: 8260 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,-76.5 + parent: 30 + - uid: 8263 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-76.5 + parent: 30 - uid: 8272 components: - type: Transform @@ -126721,6 +124805,24 @@ entities: - type: Transform pos: 25.5,-35.5 parent: 30 + - uid: 8794 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,-66.5 + parent: 30 + - uid: 8795 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,-76.5 + parent: 30 + - uid: 8799 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,-59.5 + parent: 30 - uid: 8816 components: - type: Transform @@ -126731,24 +124833,6 @@ entities: - type: Transform pos: -41.5,-22.5 parent: 30 - - uid: 8823 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-61.5 - parent: 30 - - uid: 8824 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-61.5 - parent: 30 - - uid: 8825 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,-61.5 - parent: 30 - uid: 8826 components: - type: Transform @@ -126811,6 +124895,30 @@ entities: - type: Transform pos: 18.5,-12.5 parent: 30 + - uid: 9102 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-57.5 + parent: 30 + - uid: 9103 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-58.5 + parent: 30 + - uid: 9104 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-52.5 + parent: 30 + - uid: 9129 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-58.5 + parent: 30 - uid: 9132 components: - type: Transform @@ -126965,6 +125073,18 @@ entities: rot: 1.5707963267948966 rad pos: -0.5,-26.5 parent: 30 + - uid: 9234 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-53.5 + parent: 30 + - uid: 9244 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-54.5 + parent: 30 - uid: 9255 components: - type: Transform @@ -127030,10 +125150,17 @@ entities: - type: Transform pos: -4.5,-32.5 parent: 30 - - uid: 9294 + - uid: 9288 components: - type: Transform - pos: 4.5,-43.5 + rot: 1.5707963267948966 rad + pos: 5.5,-58.5 + parent: 30 + - uid: 9289 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-58.5 parent: 30 - uid: 9296 components: @@ -127045,11 +125172,6 @@ entities: - type: Transform pos: 4.5,-39.5 parent: 30 - - uid: 9320 - components: - - type: Transform - pos: -5.5,-37.5 - parent: 30 - uid: 9325 components: - type: Transform @@ -127105,6 +125227,12 @@ entities: - type: Transform pos: -20.5,-32.5 parent: 30 + - uid: 9339 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-45.5 + parent: 30 - uid: 9340 components: - type: Transform @@ -127180,30 +125308,17 @@ entities: - type: Transform pos: -16.5,-33.5 parent: 30 - - uid: 9364 + - uid: 9367 components: - type: Transform - pos: -9.5,-37.5 + rot: 1.5707963267948966 rad + pos: 4.5,-54.5 parent: 30 - - uid: 9366 + - uid: 9368 components: - type: Transform - pos: -20.5,-38.5 - parent: 30 - - uid: 9371 - components: - - type: Transform - pos: -20.5,-45.5 - parent: 30 - - uid: 9372 - components: - - type: Transform - pos: -21.5,-45.5 - parent: 30 - - uid: 9373 - components: - - type: Transform - pos: -22.5,-45.5 + rot: 1.5707963267948966 rad + pos: -1.5,-54.5 parent: 30 - uid: 9374 components: @@ -127265,11 +125380,6 @@ entities: - type: Transform pos: -26.5,-45.5 parent: 30 - - uid: 9387 - components: - - type: Transform - pos: -25.5,-45.5 - parent: 30 - uid: 9388 components: - type: Transform @@ -127305,45 +125415,17 @@ entities: - type: Transform pos: -24.5,-51.5 parent: 30 - - uid: 9396 - components: - - type: Transform - pos: -23.5,-51.5 - parent: 30 - - uid: 9397 - components: - - type: Transform - pos: -22.5,-51.5 - parent: 30 - - uid: 9398 - components: - - type: Transform - pos: -21.5,-51.5 - parent: 30 - - uid: 9399 - components: - - type: Transform - pos: -21.5,-50.5 - parent: 30 - - uid: 9400 - components: - - type: Transform - pos: -21.5,-49.5 - parent: 30 - - uid: 9401 - components: - - type: Transform - pos: -21.5,-48.5 - parent: 30 - uid: 9402 components: - type: Transform - pos: -21.5,-47.5 + rot: 3.141592653589793 rad + pos: -12.5,-57.5 parent: 30 - - uid: 9403 + - uid: 9413 components: - type: Transform - pos: -21.5,-46.5 + rot: -1.5707963267948966 rad + pos: -10.5,-33.5 parent: 30 - uid: 9423 components: @@ -127415,11 +125497,6 @@ entities: - type: Transform pos: -17.5,-27.5 parent: 30 - - uid: 9469 - components: - - type: Transform - pos: -18.5,-27.5 - parent: 30 - uid: 9470 components: - type: Transform @@ -127440,21 +125517,83 @@ entities: - type: Transform pos: -18.5,-31.5 parent: 30 + - uid: 9487 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-53.5 + parent: 30 + - uid: 9507 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-55.5 + parent: 30 + - uid: 9508 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-55.5 + parent: 30 + - uid: 9509 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-54.5 + parent: 30 + - uid: 9510 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-57.5 + parent: 30 + - uid: 9511 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-57.5 + parent: 30 + - uid: 9513 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-57.5 + parent: 30 + - uid: 9514 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-55.5 + parent: 30 + - uid: 9515 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-43.5 + parent: 30 + - uid: 9516 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-76.5 + parent: 30 + - uid: 9517 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,-76.5 + parent: 30 + - uid: 9528 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-53.5 + parent: 30 - uid: 9582 components: - type: Transform pos: -15.5,-33.5 parent: 30 - - uid: 9583 - components: - - type: Transform - pos: -15.5,-37.5 - parent: 30 - - uid: 9584 - components: - - type: Transform - pos: -16.5,-37.5 - parent: 30 - uid: 9599 components: - type: Transform @@ -127465,33 +125604,87 @@ entities: - type: Transform pos: -18.5,-33.5 parent: 30 + - uid: 9601 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-76.5 + parent: 30 + - uid: 9602 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-76.5 + parent: 30 + - uid: 9603 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,-76.5 + parent: 30 + - uid: 9604 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-76.5 + parent: 30 + - uid: 9605 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-61.5 + parent: 30 + - uid: 9606 + components: + - type: Transform + pos: -7.5,-71.5 + parent: 30 + - uid: 9607 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-76.5 + parent: 30 + - uid: 9609 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-74.5 + parent: 30 + - uid: 9641 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-56.5 + parent: 30 + - uid: 9642 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-58.5 + parent: 30 + - uid: 9643 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-58.5 + parent: 30 - uid: 9663 components: - type: Transform pos: -10.5,-5.5 parent: 30 - - uid: 9674 + - uid: 9692 components: - type: Transform - pos: 2.5,-47.5 + rot: 3.141592653589793 rad + pos: 5.5,-45.5 parent: 30 - - uid: 9680 + - uid: 9693 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-56.5 - parent: 30 - - uid: 9681 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-57.5 - parent: 30 - - uid: 9691 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-59.5 + rot: 3.141592653589793 rad + pos: 5.5,-46.5 parent: 30 - uid: 9714 components: @@ -127509,311 +125702,169 @@ entities: rot: 3.141592653589793 rad pos: -53.5,34.5 parent: 30 + - uid: 9822 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-42.5 + parent: 30 - uid: 9855 components: - type: Transform pos: -31.5,-14.5 parent: 30 - - uid: 9903 + - uid: 9863 components: - type: Transform rot: -1.5707963267948966 rad - pos: 2.5,-55.5 + pos: -6.5,-53.5 parent: 30 - - uid: 9904 + - uid: 9877 components: - type: Transform rot: -1.5707963267948966 rad - pos: -0.5,-55.5 + pos: -12.5,-53.5 parent: 30 - - uid: 9906 + - uid: 9878 components: - type: Transform rot: -1.5707963267948966 rad - pos: 4.5,-45.5 + pos: -11.5,-53.5 parent: 30 - - uid: 9907 + - uid: 9881 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-45.5 + pos: -27.5,-63.5 parent: 30 - - uid: 9908 + - uid: 9991 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-51.5 + rot: 3.141592653589793 rad + pos: -7.5,-57.5 parent: 30 - - uid: 9923 + - uid: 10002 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-47.5 + rot: 3.141592653589793 rad + pos: -8.5,-57.5 parent: 30 - - uid: 9924 + - uid: 10012 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-46.5 + rot: 3.141592653589793 rad + pos: -8.5,-70.5 parent: 30 - - uid: 9925 + - uid: 10013 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-45.5 + rot: 3.141592653589793 rad + pos: -8.5,-73.5 parent: 30 - - uid: 9927 + - uid: 10014 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-45.5 - parent: 30 - - uid: 9959 - components: - - type: Transform - pos: -0.5,-44.5 - parent: 30 - - uid: 9961 - components: - - type: Transform - pos: -0.5,-42.5 - parent: 30 - - uid: 9962 - components: - - type: Transform - pos: -1.5,-42.5 - parent: 30 - - uid: 9963 - components: - - type: Transform - pos: -2.5,-42.5 - parent: 30 - - uid: 9964 - components: - - type: Transform - pos: -3.5,-42.5 - parent: 30 - - uid: 9966 - components: - - type: Transform - pos: -5.5,-42.5 - parent: 30 - - uid: 9970 - components: - - type: Transform - pos: -9.5,-42.5 - parent: 30 - - uid: 9972 - components: - - type: Transform - pos: -11.5,-42.5 - parent: 30 - - uid: 9973 - components: - - type: Transform - pos: -12.5,-42.5 - parent: 30 - - uid: 9974 - components: - - type: Transform - pos: -13.5,-42.5 - parent: 30 - - uid: 9975 - components: - - type: Transform - pos: -14.5,-42.5 - parent: 30 - - uid: 9977 - components: - - type: Transform - pos: -14.5,-44.5 - parent: 30 - - uid: 9978 - components: - - type: Transform - pos: -14.5,-45.5 - parent: 30 - - uid: 9985 - components: - - type: Transform - pos: -14.5,-52.5 - parent: 30 - - uid: 9986 - components: - - type: Transform - pos: -14.5,-53.5 - parent: 30 - - uid: 9987 - components: - - type: Transform - pos: -14.5,-54.5 - parent: 30 - - uid: 9988 - components: - - type: Transform - pos: -14.5,-55.5 - parent: 30 - - uid: 10019 - components: - - type: Transform - pos: -14.5,-56.5 - parent: 30 - - uid: 10020 - components: - - type: Transform - pos: -13.5,-56.5 - parent: 30 - - uid: 10021 - components: - - type: Transform - pos: -0.5,-56.5 - parent: 30 - - uid: 10022 - components: - - type: Transform - pos: -1.5,-56.5 - parent: 30 - - uid: 10042 - components: - - type: Transform - pos: -13.5,-60.5 - parent: 30 - - uid: 10043 - components: - - type: Transform - pos: -12.5,-60.5 - parent: 30 - - uid: 10044 - components: - - type: Transform - pos: -11.5,-60.5 - parent: 30 - - uid: 10045 - components: - - type: Transform - pos: -11.5,-61.5 - parent: 30 - - uid: 10049 - components: - - type: Transform - pos: -1.5,-60.5 + rot: 3.141592653589793 rad + pos: -8.5,-69.5 parent: 30 - uid: 10050 components: - type: Transform - pos: -2.5,-60.5 + rot: -1.5707963267948966 rad + pos: -13.5,-56.5 parent: 30 - uid: 10051 components: - type: Transform - pos: -3.5,-60.5 + rot: -1.5707963267948966 rad + pos: -13.5,-57.5 parent: 30 - uid: 10052 components: - type: Transform - pos: -3.5,-61.5 + rot: -1.5707963267948966 rad + pos: -13.5,-54.5 parent: 30 - - uid: 10053 + - uid: 10092 components: - type: Transform - pos: -4.5,-61.5 + rot: 3.141592653589793 rad + pos: -8.5,-62.5 parent: 30 - - uid: 10054 + - uid: 10096 components: - type: Transform - pos: -5.5,-61.5 + rot: -1.5707963267948966 rad + pos: -8.5,-53.5 parent: 30 - - uid: 10058 + - uid: 10097 components: - type: Transform - pos: -9.5,-61.5 - parent: 30 - - uid: 10059 - components: - - type: Transform - pos: -10.5,-61.5 + rot: -1.5707963267948966 rad + pos: -7.5,-53.5 parent: 30 - uid: 10112 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,-45.5 + pos: -13.5,-77.5 parent: 30 - uid: 10113 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,-45.5 + rot: 3.141592653589793 rad + pos: -8.5,-60.5 + parent: 30 + - uid: 10114 + components: + - type: Transform + pos: -27.5,-71.5 + parent: 30 + - uid: 10115 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-67.5 + parent: 30 + - uid: 10116 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-65.5 parent: 30 - uid: 10117 components: - type: Transform - pos: -19.5,-52.5 + rot: 3.141592653589793 rad + pos: -8.5,-71.5 parent: 30 - uid: 10118 components: - type: Transform - pos: -19.5,-51.5 + rot: 3.141592653589793 rad + pos: -8.5,-63.5 parent: 30 - uid: 10119 components: - type: Transform - pos: -19.5,-50.5 - parent: 30 - - uid: 10120 - components: - - type: Transform - pos: -19.5,-49.5 + rot: 3.141592653589793 rad + pos: -8.5,-66.5 parent: 30 - uid: 10121 components: - type: Transform - pos: -19.5,-48.5 + rot: 3.141592653589793 rad + pos: -8.5,-59.5 parent: 30 - uid: 10122 components: - type: Transform - pos: -19.5,-47.5 + rot: 3.141592653589793 rad + pos: -8.5,-58.5 parent: 30 - - uid: 10123 + - uid: 10134 components: - type: Transform - pos: -19.5,-46.5 - parent: 30 - - uid: 10124 - components: - - type: Transform - pos: -15.5,-46.5 - parent: 30 - - uid: 10125 - components: - - type: Transform - pos: -15.5,-47.5 - parent: 30 - - uid: 10126 - components: - - type: Transform - pos: -15.5,-48.5 - parent: 30 - - uid: 10127 - components: - - type: Transform - pos: -15.5,-49.5 - parent: 30 - - uid: 10128 - components: - - type: Transform - pos: -15.5,-50.5 - parent: 30 - - uid: 10129 - components: - - type: Transform - pos: -15.5,-51.5 - parent: 30 - - uid: 10130 - components: - - type: Transform - pos: -15.5,-52.5 + rot: 1.5707963267948966 rad + pos: 7.5,-43.5 parent: 30 - uid: 10208 components: @@ -127830,10 +125881,57 @@ entities: - type: Transform pos: -58.5,-10.5 parent: 30 - - uid: 10268 + - uid: 10558 components: - type: Transform - pos: -32.5,-64.5 + rot: 3.141592653589793 rad + pos: 7.5,-44.5 + parent: 30 + - uid: 10640 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-43.5 + parent: 30 + - uid: 10648 + components: + - type: Transform + pos: -15.5,-38.5 + parent: 30 + - uid: 10651 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-75.5 + parent: 30 + - uid: 10676 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-57.5 + parent: 30 + - uid: 10678 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-57.5 + parent: 30 + - uid: 10726 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-55.5 + parent: 30 + - uid: 10727 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-54.5 + parent: 30 + - uid: 10768 + components: + - type: Transform + pos: -19.5,-38.5 parent: 30 - uid: 10944 components: @@ -127855,16 +125953,67 @@ entities: - type: Transform pos: 25.5,-21.5 parent: 30 - - uid: 11164 + - uid: 11019 components: - type: Transform - pos: -33.5,-64.5 + pos: -20.5,-38.5 + parent: 30 + - uid: 11039 + components: + - type: Transform + pos: -21.5,-77.5 + parent: 30 + - uid: 11057 + components: + - type: Transform + pos: -14.5,-38.5 + parent: 30 + - uid: 11067 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-47.5 + parent: 30 + - uid: 11107 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-56.5 + parent: 30 + - uid: 11123 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-54.5 + parent: 30 + - uid: 11126 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,-54.5 + parent: 30 + - uid: 11127 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-53.5 + parent: 30 + - uid: 11144 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-51.5 parent: 30 - uid: 11195 components: - type: Transform pos: 29.5,-12.5 parent: 30 + - uid: 11260 + components: + - type: Transform + pos: -71.5,-64.5 + parent: 30 - uid: 11371 components: - type: Transform @@ -127895,10 +126044,20 @@ entities: - type: Transform pos: -29.5,-48.5 parent: 30 - - uid: 11588 + - uid: 11460 components: - type: Transform - pos: -34.5,-64.5 + pos: -57.5,-67.5 + parent: 30 + - uid: 11465 + components: + - type: Transform + pos: -58.5,-67.5 + parent: 30 + - uid: 11585 + components: + - type: Transform + pos: -61.5,-67.5 parent: 30 - uid: 11590 components: @@ -128081,11 +126240,6 @@ entities: - type: Transform pos: 23.5,-12.5 parent: 30 - - uid: 12213 - components: - - type: Transform - pos: -35.5,-64.5 - parent: 30 - uid: 12244 components: - type: Transform @@ -128141,6 +126295,11 @@ entities: - type: Transform pos: 12.5,13.5 parent: 30 + - uid: 12629 + components: + - type: Transform + pos: -60.5,-67.5 + parent: 30 - uid: 12630 components: - type: Transform @@ -128166,41 +126325,6 @@ entities: - type: Transform pos: 17.5,9.5 parent: 30 - - uid: 12635 - components: - - type: Transform - pos: 16.5,14.5 - parent: 30 - - uid: 12636 - components: - - type: Transform - pos: 16.5,16.5 - parent: 30 - - uid: 12637 - components: - - type: Transform - pos: 16.5,13.5 - parent: 30 - - uid: 12638 - components: - - type: Transform - pos: 17.5,13.5 - parent: 30 - - uid: 12639 - components: - - type: Transform - pos: 18.5,13.5 - parent: 30 - - uid: 12640 - components: - - type: Transform - pos: 19.5,13.5 - parent: 30 - - uid: 12641 - components: - - type: Transform - pos: 19.5,14.5 - parent: 30 - uid: 12642 components: - type: Transform @@ -128241,6 +126365,12 @@ entities: - type: Transform pos: 24.5,13.5 parent: 30 + - uid: 12663 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-52.5 + parent: 30 - uid: 12670 components: - type: Transform @@ -129157,6 +127287,12 @@ entities: - type: Transform pos: 48.5,18.5 parent: 30 + - uid: 13643 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-57.5 + parent: 30 - uid: 13647 components: - type: Transform @@ -129232,11 +127368,50 @@ entities: - type: Transform pos: 10.5,58.5 parent: 30 + - uid: 13901 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,-53.5 + parent: 30 + - uid: 14334 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,13.5 + parent: 30 + - uid: 14506 + components: + - type: Transform + pos: -68.5,-64.5 + parent: 30 + - uid: 14507 + components: + - type: Transform + pos: -69.5,-64.5 + parent: 30 + - uid: 14508 + components: + - type: Transform + pos: -70.5,-64.5 + parent: 30 + - uid: 14538 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,-51.5 + parent: 30 - uid: 14539 components: - type: Transform pos: 32.5,-12.5 parent: 30 + - uid: 14590 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,-51.5 + parent: 30 - uid: 14646 components: - type: Transform @@ -129440,6 +127615,12 @@ entities: - type: Transform pos: 46.5,15.5 parent: 30 + - uid: 16040 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-42.5 + parent: 30 - uid: 16104 components: - type: Transform @@ -129584,6 +127765,11 @@ entities: rot: 1.5707963267948966 rad pos: -58.5,37.5 parent: 30 + - uid: 16777 + components: + - type: Transform + pos: -67.5,-66.5 + parent: 30 - uid: 16784 components: - type: Transform @@ -129644,6 +127830,16 @@ entities: - type: Transform pos: -61.5,41.5 parent: 30 + - uid: 16995 + components: + - type: Transform + pos: -5.5,-37.5 + parent: 30 + - uid: 16996 + components: + - type: Transform + pos: -9.5,-37.5 + parent: 30 - uid: 17016 components: - type: Transform @@ -129869,16 +128065,6 @@ entities: - type: Transform pos: -84.5,-43.5 parent: 30 - - uid: 17526 - components: - - type: Transform - pos: -85.5,-44.5 - parent: 30 - - uid: 17527 - components: - - type: Transform - pos: -85.5,-46.5 - parent: 30 - uid: 17528 components: - type: Transform @@ -130037,23 +128223,21 @@ entities: rot: 1.5707963267948966 rad pos: -51.5,-59.5 parent: 30 - - uid: 17714 + - uid: 17728 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -51.5,-60.5 + rot: 3.141592653589793 rad + pos: 15.5,13.5 parent: 30 - - uid: 17715 + - uid: 17775 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -52.5,-60.5 + pos: -68.5,-66.5 parent: 30 - - uid: 17717 + - uid: 17776 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -53.5,-60.5 + pos: -68.5,-65.5 parent: 30 - uid: 17804 components: @@ -130143,20 +128327,11 @@ entities: - type: Transform pos: -35.5,-36.5 parent: 30 - - uid: 18079 - components: - - type: Transform - pos: -53.5,-68.5 - parent: 30 - uid: 18081 components: - type: Transform - pos: -54.5,-68.5 - parent: 30 - - uid: 18085 - components: - - type: Transform - pos: -57.5,-69.5 + rot: 3.141592653589793 rad + pos: 16.5,13.5 parent: 30 - uid: 18103 components: @@ -130268,10 +128443,37 @@ entities: - type: Transform pos: -81.5,-57.5 parent: 30 - - uid: 18184 + - uid: 18186 components: - type: Transform - pos: -60.5,-69.5 + pos: -61.5,-66.5 + parent: 30 + - uid: 18187 + components: + - type: Transform + pos: -66.5,-66.5 + parent: 30 + - uid: 18205 + components: + - type: Transform + pos: -59.5,-67.5 + parent: 30 + - uid: 18765 + components: + - type: Transform + pos: -52.5,-66.5 + parent: 30 + - uid: 18775 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -65.5,-66.5 + parent: 30 + - uid: 18860 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,-51.5 parent: 30 - uid: 18925 components: @@ -130283,10 +128485,15 @@ entities: - type: Transform pos: -43.5,-24.5 parent: 30 - - uid: 19765 + - uid: 19784 components: - type: Transform - pos: -36.5,-64.5 + pos: -4.5,-37.5 + parent: 30 + - uid: 19794 + components: + - type: Transform + pos: -10.5,-37.5 parent: 30 - uid: 19854 components: @@ -131153,21 +129360,6 @@ entities: - type: Transform pos: -2.5,84.5 parent: 30 - - uid: 20343 - components: - - type: Transform - pos: -37.5,-64.5 - parent: 30 - - uid: 20396 - components: - - type: Transform - pos: -38.5,-64.5 - parent: 30 - - uid: 20397 - components: - - type: Transform - pos: -39.5,-64.5 - parent: 30 - uid: 20442 components: - type: Transform @@ -131343,11 +129535,6 @@ entities: - type: Transform pos: -27.5,-48.5 parent: 30 - - uid: 21469 - components: - - type: Transform - pos: -40.5,-64.5 - parent: 30 - uid: 21592 components: - type: Transform @@ -131358,291 +129545,6 @@ entities: - type: Transform pos: -40.5,-28.5 parent: 30 - - uid: 22438 - components: - - type: Transform - pos: -41.5,-64.5 - parent: 30 - - uid: 22550 - components: - - type: Transform - pos: -42.5,-64.5 - parent: 30 - - uid: 22551 - components: - - type: Transform - pos: -42.5,-63.5 - parent: 30 - - uid: 22552 - components: - - type: Transform - pos: -42.5,-62.5 - parent: 30 - - uid: 22553 - components: - - type: Transform - pos: -42.5,-61.5 - parent: 30 - - uid: 22554 - components: - - type: Transform - pos: -42.5,-60.5 - parent: 30 - - uid: 22555 - components: - - type: Transform - pos: -42.5,-59.5 - parent: 30 - - uid: 22556 - components: - - type: Transform - pos: -42.5,-58.5 - parent: 30 - - uid: 22557 - components: - - type: Transform - pos: -42.5,-57.5 - parent: 30 - - uid: 22558 - components: - - type: Transform - pos: -42.5,-56.5 - parent: 30 - - uid: 22559 - components: - - type: Transform - pos: -41.5,-56.5 - parent: 30 - - uid: 22560 - components: - - type: Transform - pos: -40.5,-56.5 - parent: 30 - - uid: 22561 - components: - - type: Transform - pos: -39.5,-56.5 - parent: 30 - - uid: 22562 - components: - - type: Transform - pos: -38.5,-56.5 - parent: 30 - - uid: 22563 - components: - - type: Transform - pos: -37.5,-56.5 - parent: 30 - - uid: 22564 - components: - - type: Transform - pos: -36.5,-56.5 - parent: 30 - - uid: 22565 - components: - - type: Transform - pos: -35.5,-56.5 - parent: 30 - - uid: 22566 - components: - - type: Transform - pos: -34.5,-56.5 - parent: 30 - - uid: 22567 - components: - - type: Transform - pos: -33.5,-56.5 - parent: 30 - - uid: 22568 - components: - - type: Transform - pos: -32.5,-56.5 - parent: 30 - - uid: 22569 - components: - - type: Transform - pos: -24.5,-59.5 - parent: 30 - - uid: 22570 - components: - - type: Transform - pos: -24.5,-60.5 - parent: 30 - - uid: 22571 - components: - - type: Transform - pos: -24.5,-61.5 - parent: 30 - - uid: 22572 - components: - - type: Transform - pos: -24.5,-62.5 - parent: 30 - - uid: 22573 - components: - - type: Transform - pos: -24.5,-63.5 - parent: 30 - - uid: 22574 - components: - - type: Transform - pos: -24.5,-64.5 - parent: 30 - - uid: 22575 - components: - - type: Transform - pos: -25.5,-64.5 - parent: 30 - - uid: 22576 - components: - - type: Transform - pos: -26.5,-64.5 - parent: 30 - - uid: 22577 - components: - - type: Transform - pos: -27.5,-64.5 - parent: 30 - - uid: 22578 - components: - - type: Transform - pos: -28.5,-64.5 - parent: 30 - - uid: 22579 - components: - - type: Transform - pos: -29.5,-64.5 - parent: 30 - - uid: 22580 - components: - - type: Transform - pos: -30.5,-64.5 - parent: 30 - - uid: 22581 - components: - - type: Transform - pos: -31.5,-64.5 - parent: 30 - - uid: 22582 - components: - - type: Transform - pos: -31.5,-56.5 - parent: 30 - - uid: 22583 - components: - - type: Transform - pos: -30.5,-56.5 - parent: 30 - - uid: 22584 - components: - - type: Transform - pos: -29.5,-56.5 - parent: 30 - - uid: 22585 - components: - - type: Transform - pos: -28.5,-56.5 - parent: 30 - - uid: 22586 - components: - - type: Transform - pos: -27.5,-56.5 - parent: 30 - - uid: 22587 - components: - - type: Transform - pos: -26.5,-56.5 - parent: 30 - - uid: 22588 - components: - - type: Transform - pos: -25.5,-56.5 - parent: 30 - - uid: 22589 - components: - - type: Transform - pos: -24.5,-56.5 - parent: 30 - - uid: 22590 - components: - - type: Transform - pos: -24.5,-57.5 - parent: 30 - - uid: 22591 - components: - - type: Transform - pos: -23.5,-59.5 - parent: 30 - - uid: 22592 - components: - - type: Transform - pos: -23.5,-56.5 - parent: 30 - - uid: 22593 - components: - - type: Transform - pos: -22.5,-56.5 - parent: 30 - - uid: 22594 - components: - - type: Transform - pos: -21.5,-56.5 - parent: 30 - - uid: 22595 - components: - - type: Transform - pos: -21.5,-57.5 - parent: 30 - - uid: 22596 - components: - - type: Transform - pos: -21.5,-59.5 - parent: 30 - - uid: 22597 - components: - - type: Transform - pos: -22.5,-59.5 - parent: 30 - - uid: 22639 - components: - - type: Transform - pos: -28.5,-59.5 - parent: 30 - - uid: 22640 - components: - - type: Transform - pos: -28.5,-60.5 - parent: 30 - - uid: 22641 - components: - - type: Transform - pos: -28.5,-61.5 - parent: 30 - - uid: 22642 - components: - - type: Transform - pos: -28.5,-62.5 - parent: 30 - - uid: 22643 - components: - - type: Transform - pos: -28.5,-63.5 - parent: 30 - - uid: 22644 - components: - - type: Transform - pos: -28.5,-57.5 - parent: 30 - - uid: 22649 - components: - - type: Transform - pos: -33.5,-63.5 - parent: 30 - - uid: 22650 - components: - - type: Transform - pos: -33.5,-57.5 - parent: 30 - proto: WallSolid entities: - uid: 3 @@ -132710,6 +130612,11 @@ entities: - type: Transform pos: -8.5,17.5 parent: 30 + - uid: 801 + components: + - type: Transform + pos: 14.5,-25.5 + parent: 30 - uid: 830 components: - type: Transform @@ -134008,6 +131915,11 @@ entities: rot: -1.5707963267948966 rad pos: -1.5,-5.5 parent: 30 + - uid: 6642 + components: + - type: Transform + pos: -14.5,-53.5 + parent: 30 - uid: 6732 components: - type: Transform @@ -134159,6 +132071,11 @@ entities: - type: Transform pos: -37.5,-19.5 parent: 30 + - uid: 7221 + components: + - type: Transform + pos: -0.5,-37.5 + parent: 30 - uid: 7234 components: - type: Transform @@ -134933,16 +132850,6 @@ entities: - type: Transform pos: 9.5,-30.5 parent: 30 - - uid: 8525 - components: - - type: Transform - pos: 12.5,-26.5 - parent: 30 - - uid: 8526 - components: - - type: Transform - pos: 9.5,-26.5 - parent: 30 - uid: 8534 components: - type: Transform @@ -135004,50 +132911,85 @@ entities: - type: Transform pos: 3.5,-35.5 parent: 30 - - uid: 9288 - components: - - type: Transform - pos: -4.5,-37.5 - parent: 30 - - uid: 9289 - components: - - type: Transform - pos: -0.5,-37.5 - parent: 30 - uid: 9299 components: - type: Transform pos: -42.5,-0.5 parent: 30 - - uid: 9324 + - uid: 9482 components: - type: Transform - pos: -10.5,-37.5 + pos: -6.5,-51.5 parent: 30 - - uid: 9348 + - uid: 9483 components: - type: Transform - pos: -14.5,-28.5 + pos: -5.5,-46.5 parent: 30 - - uid: 9367 + - uid: 9485 components: - type: Transform - pos: -20.5,-39.5 + pos: -9.5,-46.5 parent: 30 - - uid: 9370 + - uid: 9486 components: - type: Transform - pos: -20.5,-44.5 + pos: -6.5,-49.5 parent: 30 - - uid: 9450 + - uid: 9488 components: - type: Transform - pos: -14.5,-30.5 + pos: -13.5,-46.5 parent: 30 - - uid: 9451 + - uid: 9489 components: - type: Transform - pos: -14.5,-31.5 + pos: 3.5,-42.5 + parent: 30 + - uid: 9496 + components: + - type: Transform + pos: -4.5,-42.5 + parent: 30 + - uid: 9497 + components: + - type: Transform + pos: -3.5,-42.5 + parent: 30 + - uid: 9524 + components: + - type: Transform + pos: -6.5,-46.5 + parent: 30 + - uid: 9525 + components: + - type: Transform + pos: -2.5,-42.5 + parent: 30 + - uid: 9526 + components: + - type: Transform + pos: -19.5,-45.5 + parent: 30 + - uid: 9527 + components: + - type: Transform + pos: -6.5,-50.5 + parent: 30 + - uid: 9529 + components: + - type: Transform + pos: -14.5,-46.5 + parent: 30 + - uid: 9530 + components: + - type: Transform + pos: -0.5,-38.5 + parent: 30 + - uid: 9634 + components: + - type: Transform + pos: -57.5,-65.5 parent: 30 - uid: 9684 components: @@ -135084,6 +133026,41 @@ entities: - type: Transform pos: 29.5,43.5 parent: 30 + - uid: 9870 + components: + - type: Transform + pos: -20.5,-46.5 + parent: 30 + - uid: 9871 + components: + - type: Transform + pos: -20.5,-48.5 + parent: 30 + - uid: 9872 + components: + - type: Transform + pos: -20.5,-47.5 + parent: 30 + - uid: 9873 + components: + - type: Transform + pos: -25.5,-45.5 + parent: 30 + - uid: 9874 + components: + - type: Transform + pos: -21.5,-45.5 + parent: 30 + - uid: 9879 + components: + - type: Transform + pos: -20.5,-45.5 + parent: 30 + - uid: 9883 + components: + - type: Transform + pos: -6.5,-47.5 + parent: 30 - uid: 9916 components: - type: Transform @@ -135164,10 +133141,135 @@ entities: - type: Transform pos: -9.5,-15.5 parent: 30 - - uid: 11019 + - uid: 9959 components: - type: Transform - pos: -0.5,-38.5 + pos: -7.5,-46.5 + parent: 30 + - uid: 9961 + components: + - type: Transform + pos: -8.5,-46.5 + parent: 30 + - uid: 9962 + components: + - type: Transform + pos: -10.5,-46.5 + parent: 30 + - uid: 9963 + components: + - type: Transform + pos: -3.5,-46.5 + parent: 30 + - uid: 10011 + components: + - type: Transform + pos: 14.5,-22.5 + parent: 30 + - uid: 10135 + components: + - type: Transform + pos: -6.5,-48.5 + parent: 30 + - uid: 10228 + components: + - type: Transform + pos: -57.5,-64.5 + parent: 30 + - uid: 10236 + components: + - type: Transform + pos: -65.5,-61.5 + parent: 30 + - uid: 10237 + components: + - type: Transform + pos: -59.5,-61.5 + parent: 30 + - uid: 10546 + components: + - type: Transform + pos: -3.5,-45.5 + parent: 30 + - uid: 10548 + components: + - type: Transform + pos: -4.5,-46.5 + parent: 30 + - uid: 10549 + components: + - type: Transform + pos: -0.5,-42.5 + parent: 30 + - uid: 10753 + components: + - type: Transform + pos: -3.5,-43.5 + parent: 30 + - uid: 10756 + components: + - type: Transform + pos: -14.5,-52.5 + parent: 30 + - uid: 10757 + components: + - type: Transform + pos: -14.5,-51.5 + parent: 30 + - uid: 10758 + components: + - type: Transform + pos: -14.5,-50.5 + parent: 30 + - uid: 10759 + components: + - type: Transform + pos: 1.5,-42.5 + parent: 30 + - uid: 11060 + components: + - type: Transform + pos: -6.5,-52.5 + parent: 30 + - uid: 11071 + components: + - type: Transform + pos: -14.5,-45.5 + parent: 30 + - uid: 11072 + components: + - type: Transform + pos: -14.5,-49.5 + parent: 30 + - uid: 11074 + components: + - type: Transform + pos: -14.5,-47.5 + parent: 30 + - uid: 11075 + components: + - type: Transform + pos: -14.5,-48.5 + parent: 30 + - uid: 11089 + components: + - type: Transform + pos: -15.5,-49.5 + parent: 30 + - uid: 11090 + components: + - type: Transform + pos: -15.5,-45.5 + parent: 30 + - uid: 11092 + components: + - type: Transform + pos: -8.5,-42.5 + parent: 30 + - uid: 11141 + components: + - type: Transform + pos: -9.5,-42.5 parent: 30 - uid: 11198 components: @@ -135189,10 +133291,15 @@ entities: - type: Transform pos: 29.5,-0.5 parent: 30 - - uid: 11339 + - uid: 11259 components: - type: Transform - pos: -14.5,-38.5 + pos: -66.5,-61.5 + parent: 30 + - uid: 11261 + components: + - type: Transform + pos: -63.5,-61.5 parent: 30 - uid: 11352 components: @@ -135204,6 +133311,16 @@ entities: - type: Transform pos: 2.5,-7.5 parent: 30 + - uid: 11457 + components: + - type: Transform + pos: -67.5,-61.5 + parent: 30 + - uid: 11459 + components: + - type: Transform + pos: -60.5,-61.5 + parent: 30 - uid: 11597 components: - type: Transform @@ -135339,10 +133456,16 @@ entities: - type: Transform pos: -43.5,-17.5 parent: 30 - - uid: 12659 + - uid: 12636 components: - type: Transform - pos: 20.5,13.5 + pos: -58.5,-61.5 + parent: 30 + - uid: 12638 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -64.5,-61.5 parent: 30 - uid: 12660 components: @@ -135701,6 +133824,31 @@ entities: - type: Transform pos: 21.5,54.5 parent: 30 + - uid: 13983 + components: + - type: Transform + pos: -20.5,-49.5 + parent: 30 + - uid: 13985 + components: + - type: Transform + pos: -20.5,-50.5 + parent: 30 + - uid: 14480 + components: + - type: Transform + pos: -67.5,-63.5 + parent: 30 + - uid: 14481 + components: + - type: Transform + pos: -67.5,-64.5 + parent: 30 + - uid: 14513 + components: + - type: Transform + pos: -54.5,-59.5 + parent: 30 - uid: 14725 components: - type: Transform @@ -135731,6 +133879,11 @@ entities: - type: Transform pos: 14.5,49.5 parent: 30 + - uid: 14808 + components: + - type: Transform + pos: -19.5,-49.5 + parent: 30 - uid: 14966 components: - type: Transform @@ -136259,11 +134412,6 @@ entities: - type: Transform pos: -81.5,-41.5 parent: 30 - - uid: 17544 - components: - - type: Transform - pos: -55.5,-68.5 - parent: 30 - uid: 17569 components: - type: Transform @@ -136274,11 +134422,6 @@ entities: - type: Transform pos: -54.5,-58.5 parent: 30 - - uid: 17685 - components: - - type: Transform - pos: -56.5,-68.5 - parent: 30 - uid: 17686 components: - type: Transform @@ -136414,41 +134557,6 @@ entities: - type: Transform pos: -57.5,-61.5 parent: 30 - - uid: 17723 - components: - - type: Transform - pos: -60.5,-61.5 - parent: 30 - - uid: 17724 - components: - - type: Transform - pos: -61.5,-61.5 - parent: 30 - - uid: 17725 - components: - - type: Transform - pos: -62.5,-61.5 - parent: 30 - - uid: 17726 - components: - - type: Transform - pos: -63.5,-61.5 - parent: 30 - - uid: 17728 - components: - - type: Transform - pos: -65.5,-61.5 - parent: 30 - - uid: 17729 - components: - - type: Transform - pos: -66.5,-61.5 - parent: 30 - - uid: 17730 - components: - - type: Transform - pos: -67.5,-61.5 - parent: 30 - uid: 17731 components: - type: Transform @@ -136459,11 +134567,6 @@ entities: - type: Transform pos: -69.5,-61.5 parent: 30 - - uid: 17734 - components: - - type: Transform - pos: -61.5,-65.5 - parent: 30 - uid: 17736 components: - type: Transform @@ -136579,16 +134682,6 @@ entities: - type: Transform pos: -61.5,-66.5 parent: 30 - - uid: 17775 - components: - - type: Transform - pos: -63.5,-66.5 - parent: 30 - - uid: 17776 - components: - - type: Transform - pos: -62.5,-66.5 - parent: 30 - uid: 17777 components: - type: Transform @@ -136629,11 +134722,6 @@ entities: - type: Transform pos: -66.5,-66.5 parent: 30 - - uid: 17785 - components: - - type: Transform - pos: -61.5,-62.5 - parent: 30 - uid: 17786 components: - type: Transform @@ -136642,22 +134730,12 @@ entities: - uid: 17787 components: - type: Transform - pos: -61.5,-63.5 + pos: -57.5,-62.5 parent: 30 - uid: 17788 components: - type: Transform - pos: -61.5,-64.5 - parent: 30 - - uid: 17790 - components: - - type: Transform - pos: -53.5,-67.5 - parent: 30 - - uid: 17791 - components: - - type: Transform - pos: -53.5,-66.5 + pos: -57.5,-63.5 parent: 30 - uid: 17999 components: @@ -136724,56 +134802,16 @@ entities: - type: Transform pos: -38.5,-30.5 parent: 30 - - uid: 18070 - components: - - type: Transform - pos: -56.5,-62.5 - parent: 30 - - uid: 18071 - components: - - type: Transform - pos: -53.5,-65.5 - parent: 30 - - uid: 18072 - components: - - type: Transform - pos: -53.5,-64.5 - parent: 30 - - uid: 18073 - components: - - type: Transform - pos: -57.5,-68.5 - parent: 30 - - uid: 18074 - components: - - type: Transform - pos: -53.5,-63.5 - parent: 30 - - uid: 18075 - components: - - type: Transform - pos: -53.5,-62.5 - parent: 30 - uid: 18076 components: - type: Transform pos: -54.5,-61.5 parent: 30 - - uid: 18077 - components: - - type: Transform - pos: -54.5,-60.5 - parent: 30 - uid: 18082 components: - type: Transform pos: -61.5,-67.5 parent: 30 - - uid: 18086 - components: - - type: Transform - pos: -64.5,-66.5 - parent: 30 - uid: 18087 components: - type: Transform @@ -136894,21 +134932,11 @@ entities: - type: Transform pos: -76.5,-50.5 parent: 30 - - uid: 18125 - components: - - type: Transform - pos: -61.5,-68.5 - parent: 30 - uid: 18169 components: - type: Transform pos: -71.5,-61.5 parent: 30 - - uid: 18170 - components: - - type: Transform - pos: -71.5,-59.5 - parent: 30 - uid: 18171 components: - type: Transform @@ -137002,21 +135030,6 @@ entities: - type: Transform pos: -43.5,2.5 parent: 30 - - uid: 22216 - components: - - type: Transform - pos: -60.5,-68.5 - parent: 30 - - uid: 22645 - components: - - type: Transform - pos: -27.5,-60.5 - parent: 30 - - uid: 22646 - components: - - type: Transform - pos: -25.5,-60.5 - parent: 30 - proto: WallSolidRust entities: - uid: 223 @@ -137363,6 +135376,13 @@ entities: parent: 30 - type: Physics canCollide: False +- proto: WardrobeAtmosphericsFilled + entities: + - uid: 8418 + components: + - type: Transform + pos: 16.5,-20.5 + parent: 30 - proto: WardrobeBlackFilled entities: - uid: 9942 @@ -137518,29 +135538,16 @@ entities: - 0 - proto: WardrobeEngineeringFilled entities: - - uid: 8228 + - uid: 7112 components: - type: Transform - pos: -9.5,-38.5 + pos: -7.5,-41.5 + parent: 30 + - uid: 7148 + components: + - type: Transform + pos: -5.5,-41.5 parent: 30 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - proto: WardrobeFormal entities: - uid: 19618 @@ -137932,6 +135939,11 @@ entities: - type: Transform pos: -51.5,69.5 parent: 30 + - uid: 14476 + components: + - type: Transform + pos: -55.5,-65.5 + parent: 30 - uid: 16216 components: - type: Transform @@ -137952,11 +135964,6 @@ entities: - type: Transform pos: -60.5,-20.5 parent: 30 - - uid: 18786 - components: - - type: Transform - pos: -62.5,-65.5 - parent: 30 - uid: 19532 components: - type: Transform @@ -137964,16 +135971,16 @@ entities: parent: 30 - proto: WaterTankHighCapacity entities: - - uid: 399 - components: - - type: Transform - pos: -23.5,5.5 - parent: 30 - uid: 452 components: - type: Transform pos: -30.5,10.5 parent: 30 + - uid: 13365 + components: + - type: Transform + pos: -23.5,5.5 + parent: 30 - proto: WaterVaporCanister entities: - uid: 8773 @@ -138058,13 +136065,6 @@ entities: parent: 30 - type: Physics canCollide: False - - uid: 20994 - components: - - type: Transform - pos: -15.5,-34.5 - parent: 30 - - type: Physics - canCollide: False - uid: 20998 components: - type: Transform @@ -138214,10 +136214,10 @@ entities: parent: 30 - proto: WelderIndustrialAdvanced entities: - - uid: 9596 + - uid: 13977 components: - type: Transform - pos: -17.366865,-29.492481 + pos: -8.390148,-47.43978 parent: 30 - proto: WelderMini entities: @@ -138253,6 +136253,11 @@ entities: - type: Transform pos: 9.5,-25.5 parent: 30 + - uid: 10147 + components: + - type: Transform + pos: -54.5,-65.5 + parent: 30 - uid: 14811 components: - type: Transform @@ -138268,11 +136273,6 @@ entities: - type: Transform pos: -52.5,39.5 parent: 30 - - uid: 18787 - components: - - type: Transform - pos: -63.5,-65.5 - parent: 30 - uid: 19813 components: - type: Transform @@ -138335,12 +136335,6 @@ entities: - type: Transform pos: 4.5,-4.5 parent: 30 - - uid: 12696 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,13.5 - parent: 30 - uid: 20484 components: - type: Transform @@ -138520,10 +136514,11 @@ entities: - type: Transform pos: 18.5,24.5 parent: 30 - - uid: 12697 + - uid: 13241 components: - type: Transform - pos: 14.5,13.5 + rot: -1.5707963267948966 rad + pos: 16.5,15.5 parent: 30 - uid: 21708 components: @@ -138610,6 +136605,14 @@ entities: rot: 1.5707963267948966 rad pos: -49.5,52.5 parent: 30 +- proto: WindoorSecureServiceLocked + entities: + - uid: 11458 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -65.5,-62.5 + parent: 30 - proto: Window entities: - uid: 5 @@ -138877,16 +136880,6 @@ entities: - type: Transform pos: 10.5,-6.5 parent: 30 - - uid: 9368 - components: - - type: Transform - pos: -20.5,-40.5 - parent: 30 - - uid: 9369 - components: - - type: Transform - pos: -20.5,-43.5 - parent: 30 - uid: 9837 components: - type: Transform @@ -139427,30 +137420,6 @@ entities: - type: Transform pos: -23.5,4.5 parent: 30 - - uid: 9976 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,4.5 - parent: 30 - - uid: 11259 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,4.5 - parent: 30 - - uid: 11260 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -25.5,4.5 - parent: 30 - - uid: 11261 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,4.5 - parent: 30 - uid: 12728 components: - type: Transform @@ -139499,6 +137468,24 @@ entities: rot: 1.5707963267948966 rad pos: 42.5,41.5 parent: 30 + - uid: 14051 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,16.5 + parent: 30 + - uid: 14329 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,14.5 + parent: 30 + - uid: 14356 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 52.5,23.5 + parent: 30 - uid: 15152 components: - type: Transform @@ -139866,30 +137853,6 @@ entities: rot: 1.5707963267948966 rad pos: -35.5,-34.5 parent: 30 - - uid: 21191 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -27.5,4.5 - parent: 30 - - uid: 21451 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -28.5,4.5 - parent: 30 - - uid: 21452 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,4.5 - parent: 30 - - uid: 21453 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,4.5 - parent: 30 - uid: 22456 components: - type: Transform @@ -139960,11 +137923,6 @@ entities: - type: Transform pos: -14.474685,-24.503119 parent: 30 - - uid: 9483 - components: - - type: Transform - pos: -17.403442,-29.451271 - parent: 30 - uid: 18182 components: - type: Transform From da5918c9519de6c32c9e9082dee5e2bad3774caa Mon Sep 17 00:00:00 2001 From: lzk <124214523+lzk228@users.noreply.github.com> Date: Mon, 29 Jul 2024 08:19:43 +0200 Subject: [PATCH 28/89] FINALLY FIX APPROVER IN CARGO INVOICE!!! (#29690) * OH DEAR LORD I WASTED 2 HOURS ON THIS STUPID SHIT!!! * change some logic --- Content.Server/Cargo/Systems/CargoSystem.Orders.cs | 14 +++++++------- Content.Shared/Cargo/CargoOrderData.cs | 2 +- .../Locale/en-US/cargo/cargo-console-component.ftl | 2 +- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/Content.Server/Cargo/Systems/CargoSystem.Orders.cs b/Content.Server/Cargo/Systems/CargoSystem.Orders.cs index dd408755e6..7a2a3d474a 100644 --- a/Content.Server/Cargo/Systems/CargoSystem.Orders.cs +++ b/Content.Server/Cargo/Systems/CargoSystem.Orders.cs @@ -177,6 +177,10 @@ namespace Content.Server.Cargo.Systems RaiseLocalEvent(ref ev); ev.FulfillmentEntity ??= station.Value; + _idCardSystem.TryFindIdCard(player, out var idCard); + // ReSharper disable once ConditionalAccessQualifierIsNonNullableAccordingToAPIContract + order.SetApproverData(idCard.Comp?.FullName, idCard.Comp?.JobTitle); + if (!ev.Handled) { ev.FulfillmentEntity = TryFulfillOrder((station.Value, stationData), order, orderDatabase); @@ -189,18 +193,13 @@ namespace Content.Server.Cargo.Systems } } - _idCardSystem.TryFindIdCard(player, out var idCard); - // ReSharper disable once ConditionalAccessQualifierIsNonNullableAccordingToAPIContract - order.SetApproverData(idCard.Comp?.FullName, idCard.Comp?.JobTitle); + order.Approved = true; _audio.PlayPvs(component.ConfirmSound, uid); - var approverName = idCard.Comp?.FullName ?? Loc.GetString("access-reader-unknown-id"); - var approverJob = idCard.Comp?.JobTitle ?? Loc.GetString("access-reader-unknown-id"); var message = Loc.GetString("cargo-console-unlock-approved-order-broadcast", ("productName", Loc.GetString(order.ProductName)), ("orderAmount", order.OrderQuantity), - ("approverName", approverName), - ("approverJob", approverJob), + ("approver", order.Approver ?? string.Empty), ("cost", cost)); _radio.SendRadioMessage(uid, message, component.AnnouncementChannel, uid, escapeMarkup: false); ConsolePopup(args.Actor, Loc.GetString("cargo-console-trade-station", ("destination", MetaData(ev.FulfillmentEntity.Value).EntityName))); @@ -421,6 +420,7 @@ namespace Content.Server.Cargo.Systems // Approve it now order.SetApproverData(dest, sender); + order.Approved = true; // Log order addition _adminLogger.Add(LogType.Action, LogImpact.Low, diff --git a/Content.Shared/Cargo/CargoOrderData.cs b/Content.Shared/Cargo/CargoOrderData.cs index ce05d92236..5645cc454d 100644 --- a/Content.Shared/Cargo/CargoOrderData.cs +++ b/Content.Shared/Cargo/CargoOrderData.cs @@ -48,7 +48,7 @@ namespace Content.Shared.Cargo // public int RequesterId; [DataField] public string Reason { get; private set; } - public bool Approved => Approver is not null; + public bool Approved; [DataField] public string? Approver; diff --git a/Resources/Locale/en-US/cargo/cargo-console-component.ftl b/Resources/Locale/en-US/cargo/cargo-console-component.ftl index 3c032488b5..7114924c02 100644 --- a/Resources/Locale/en-US/cargo/cargo-console-component.ftl +++ b/Resources/Locale/en-US/cargo/cargo-console-component.ftl @@ -30,7 +30,7 @@ cargo-console-snip-snip = Order trimmed to capacity cargo-console-insufficient-funds = Insufficient funds (require {$cost}) cargo-console-unfulfilled = No room to fulfill order cargo-console-trade-station = Sent to {$destination} -cargo-console-unlock-approved-order-broadcast = [bold]{$productName} x{$orderAmount}[/bold], which cost [bold]{$cost}[/bold], was approved by [bold]{$approverName}, {$approverJob}[/bold] +cargo-console-unlock-approved-order-broadcast = [bold]{$productName} x{$orderAmount}[/bold], which cost [bold]{$cost}[/bold], was approved by [bold]{$approver}[/bold] cargo-console-paper-print-name = Order #{$orderNumber} cargo-console-paper-print-text = From 4a13212bc331616ae1a788c03f67624480521ebe Mon Sep 17 00:00:00 2001 From: PJBot Date: Mon, 29 Jul 2024 06:20:54 +0000 Subject: [PATCH 29/89] Automatic changelog update --- Resources/Changelog/Changelog.yml | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 49a49dfc7b..f6f8c795f3 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,12 +1,4 @@ Entries: -- author: FungiFellow - changes: - - message: Syndi-Cats now have a Wideswing, 80% Explosion Resist, 6/6/15 Pierce/Slash/Structural - and step over glass shards with trained feline agility. - type: Tweak - id: 6497 - time: '2024-04-29T17:09:30.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/27408 - author: ShadowCommander changes: - message: Fixed microwave construction not creating a microwave on completion. @@ -3781,3 +3773,10 @@ id: 6996 time: '2024-07-28T08:32:27.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/30424 +- author: lzk228 + changes: + - message: Fixed permanent absence of the approver string in cargo invoice. + type: Fix + id: 6997 + time: '2024-07-29T06:19:43.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/29690 From c4ef5e4205f8bcd01e8559c82148ddd9e8e5cbc5 Mon Sep 17 00:00:00 2001 From: lzk <124214523+lzk228@users.noreply.github.com> Date: Mon, 29 Jul 2024 08:31:05 +0200 Subject: [PATCH 30/89] Update marathon (#30442) --- Resources/Maps/marathon.yml | 612 ++++++++++++++++++++++++++++-------- 1 file changed, 485 insertions(+), 127 deletions(-) diff --git a/Resources/Maps/marathon.yml b/Resources/Maps/marathon.yml index 0bb7ea2aed..2d0f821d20 100644 --- a/Resources/Maps/marathon.yml +++ b/Resources/Maps/marathon.yml @@ -608,6 +608,9 @@ entities: 2919: 2,-44 2920: 3,-44 2921: 4,-44 + 3045: 4,-51 + 3049: -4,-48 + 3050: -3,-48 - node: color: '#FFFFFFFF' id: BotGreyscale @@ -648,6 +651,11 @@ entities: 2265: 39,9 2896: -14,-38 2897: -12,-38 + 3035: -5,-54 + 3036: -4,-54 + 3046: -4,-50 + 3047: 4,-49 + 3048: 4,-50 - node: color: '#FFFFFFFF' id: BrickTileDarkBox @@ -4345,7 +4353,6 @@ entities: decals: 2863: 14,-20 2864: 14,-19 - 2933: -3,-52 - node: color: '#FFFFFFFF' id: WarnCornerSmallNW @@ -4629,7 +4636,6 @@ entities: 2423: -47,-10 2424: -47,-9 2880: -14,-52 - 2926: 1,-51 3007: -19,-54 3008: -19,-55 - node: @@ -4675,8 +4681,6 @@ entities: 2928: -1,-52 2929: 0,-52 2930: 0,-52 - 2935: -4,-48 - 2936: -3,-48 2937: -2,-48 2938: -1,-48 2939: 0,-48 @@ -4685,6 +4689,8 @@ entities: 2942: 3,-48 2943: 4,-48 3004: -18,-53 + 3051: -4,-48 + 3052: -3,-48 - node: angle: -3.141592653589793 rad color: '#FFFFFFFF' @@ -10959,7 +10965,7 @@ entities: pos: -20.5,-5.5 parent: 30 - type: Door - secondsUntilStateChange: -17234.736 + secondsUntilStateChange: -19125.69 state: Opening - type: DeviceLinkSource lastSignals: @@ -59650,34 +59656,11 @@ entities: parent: 30 - proto: Emitter entities: - - uid: 194 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,-71.5 - parent: 30 - - uid: 9818 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,-74.5 - parent: 30 - uid: 10654 components: - type: Transform pos: -13.5,-60.5 parent: 30 - - uid: 11088 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,-63.5 - parent: 30 - - uid: 11272 - components: - - type: Transform - pos: -21.5,-60.5 - parent: 30 - uid: 13319 components: - type: Transform @@ -63473,6 +63456,20 @@ entities: parent: 30 - type: AtmosPipeColor color: '#947507FF' + - uid: 9218 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-56.5 + parent: 30 + - uid: 9293 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-56.5 + parent: 30 + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 12869 components: - type: Transform @@ -64168,6 +64165,14 @@ entities: parent: 30 - type: AtmosPipeColor color: '#EB9834FF' + - uid: 9213 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-55.5 + parent: 30 + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 9262 components: - type: Transform @@ -64175,6 +64180,14 @@ entities: parent: 30 - type: AtmosPipeColor color: '#FF0000FF' + - uid: 9295 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-57.5 + parent: 30 + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 9428 components: - type: Transform @@ -64244,6 +64257,14 @@ entities: parent: 30 - type: AtmosPipeColor color: '#EB9834FF' + - uid: 9790 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-57.5 + parent: 30 + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 9813 components: - type: Transform @@ -64307,6 +64328,14 @@ entities: parent: 30 - type: AtmosPipeColor color: '#FF0000FF' + - uid: 11130 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-52.5 + parent: 30 + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 11167 components: - type: Transform @@ -64330,6 +64359,14 @@ entities: parent: 30 - type: AtmosPipeColor color: '#FF0000FF' + - uid: 11272 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-49.5 + parent: 30 + - type: AtmosPipeColor + color: '#03FCD3FF' - uid: 11668 components: - type: Transform @@ -64813,6 +64850,74 @@ entities: parent: 30 - type: AtmosPipeColor color: '#FF0000FF' + - uid: 20642 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-51.5 + parent: 30 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 20645 + components: + - type: Transform + pos: 7.5,-49.5 + parent: 30 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 20647 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-52.5 + parent: 30 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 20654 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-50.5 + parent: 30 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 20663 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-51.5 + parent: 30 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 20667 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-50.5 + parent: 30 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 20671 + components: + - type: Transform + pos: -1.5,-49.5 + parent: 30 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 20672 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-48.5 + parent: 30 + - uid: 20674 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-49.5 + parent: 30 + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 21262 components: - type: Transform @@ -74307,39 +74412,14 @@ entities: parent: 30 - type: AtmosPipeColor color: '#EB9834FF' - - uid: 9174 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-48.5 - parent: 30 - - type: AtmosPipeColor - color: '#EB9834FF' - - uid: 9182 - components: - - type: Transform - pos: 1.5,-54.5 - parent: 30 - - uid: 9213 - components: - - type: Transform - pos: -3.5,-54.5 - parent: 30 - - uid: 9216 - components: - - type: Transform - pos: -4.5,-54.5 - parent: 30 - uid: 9217 components: - type: Transform - pos: 2.5,-54.5 - parent: 30 - - uid: 9218 - components: - - type: Transform - pos: 3.5,-54.5 + rot: 3.141592653589793 rad + pos: -3.5,-55.5 parent: 30 + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 9261 components: - type: Transform @@ -74347,23 +74427,14 @@ entities: parent: 30 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 9293 - components: - - type: Transform - pos: -2.5,-54.5 - parent: 30 - uid: 9294 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,-49.5 parent: 30 - - uid: 9295 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,-50.5 - parent: 30 + - type: AtmosPipeColor + color: '#03FCD3FF' - uid: 9320 components: - type: Transform @@ -74542,12 +74613,6 @@ entities: parent: 30 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 9651 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,-51.5 - parent: 30 - uid: 9670 components: - type: Transform @@ -75136,6 +75201,14 @@ entities: parent: 30 - type: AtmosPipeColor color: '#0000FFFF' + - uid: 9966 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-54.5 + parent: 30 + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 9979 components: - type: Transform @@ -75597,6 +75670,14 @@ entities: parent: 30 - type: AtmosPipeColor color: '#EB9834FF' + - uid: 11088 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-54.5 + parent: 30 + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 11100 components: - type: Transform @@ -78735,6 +78816,14 @@ entities: parent: 30 - type: AtmosPipeColor color: '#FF0000FF' + - uid: 13955 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-49.5 + parent: 30 + - type: AtmosPipeColor + color: '#03FCD3FF' - uid: 13956 components: - type: Transform @@ -81221,6 +81310,103 @@ entities: parent: 30 - type: AtmosPipeColor color: '#0000FFFF' + - uid: 20640 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-52.5 + parent: 30 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 20641 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-52.5 + parent: 30 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 20643 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-51.5 + parent: 30 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 20646 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-51.5 + parent: 30 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 20650 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-52.5 + parent: 30 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 20651 + components: + - type: Transform + pos: 3.5,-54.5 + parent: 30 + - uid: 20652 + components: + - type: Transform + pos: 2.5,-54.5 + parent: 30 + - uid: 20658 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-51.5 + parent: 30 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 20659 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-49.5 + parent: 30 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 20660 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-51.5 + parent: 30 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 20661 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-51.5 + parent: 30 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 20662 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-49.5 + parent: 30 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 20669 + components: + - type: Transform + pos: -3.5,-51.5 + parent: 30 + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 21264 components: - type: Transform @@ -83338,6 +83524,13 @@ entities: parent: 30 - type: AtmosPipeColor color: '#FF0000FF' + - uid: 9353 + components: + - type: Transform + pos: 3.5,-49.5 + parent: 30 + - type: AtmosPipeColor + color: '#03FCD3FF' - uid: 9444 components: - type: Transform @@ -83422,6 +83615,14 @@ entities: parent: 30 - type: AtmosPipeColor color: '#0000FFFF' + - uid: 9818 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-55.5 + parent: 30 + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 9847 components: - type: Transform @@ -84425,6 +84626,20 @@ entities: parent: 30 - type: AtmosPipeColor color: '#0000FFFF' + - uid: 20668 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-50.5 + parent: 30 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 20673 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-48.5 + parent: 30 - uid: 22014 components: - type: Transform @@ -84526,6 +84741,24 @@ entities: rot: 1.5707963267948966 rad pos: -5.5,-8.5 parent: 30 + - uid: 20655 + components: + - type: Transform + pos: -3.5,-47.5 + parent: 30 + - uid: 20656 + components: + - type: Transform + pos: -2.5,-47.5 + parent: 30 + - uid: 20657 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-50.5 + parent: 30 + - type: AtmosPipeColor + color: '#03FCD3FF' - proto: GasPressurePump entities: - uid: 337 @@ -84620,6 +84853,12 @@ entities: parent: 30 - type: AtmosPipeColor color: '#EB9834FF' + - uid: 9182 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-48.5 + parent: 30 - uid: 12922 components: - type: Transform @@ -84631,6 +84870,13 @@ entities: - type: Transform pos: 38.5,10.5 parent: 30 + - uid: 20670 + components: + - type: Transform + pos: -3.5,-49.5 + parent: 30 + - type: AtmosPipeColor + color: '#FF0000FF' - proto: GasThermoMachineFreezer entities: - uid: 482 @@ -84705,6 +84951,25 @@ entities: parent: 30 - proto: GasValve entities: + - uid: 20648 + components: + - type: Transform + pos: -4.5,-53.5 + parent: 30 + - type: GasValve + open: False + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 20649 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-53.5 + parent: 30 + - type: GasValve + open: False + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 21274 components: - type: MetaData @@ -87594,17 +87859,37 @@ entities: color: '#FF0000FF' - proto: GasVolumePump entities: - - uid: 9790 + - uid: 9216 components: - type: Transform - pos: 0.5,-49.5 + pos: -5.5,-56.5 parent: 30 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9373 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-51.5 + parent: 30 + - type: AtmosPipeColor + color: '#03FCD3FF' - uid: 10044 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-51.5 parent: 30 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 20653 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-49.5 + parent: 30 + - type: AtmosPipeColor + color: '#03FCD3FF' - proto: GeneratorRTG entities: - uid: 2402 @@ -87704,6 +87989,12 @@ entities: - type: Transform pos: -66.5,-52.5 parent: 30 + - uid: 194 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-54.5 + parent: 30 - uid: 317 components: - type: Transform @@ -88861,6 +89152,12 @@ entities: - type: Transform pos: -60.5,5.5 parent: 30 + - uid: 4893 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-54.5 + parent: 30 - uid: 5018 components: - type: Transform @@ -90152,6 +90449,12 @@ entities: - type: Transform pos: -1.5,-31.5 parent: 30 + - uid: 9174 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-54.5 + parent: 30 - uid: 9185 components: - type: Transform @@ -90667,6 +90970,12 @@ entities: rot: -1.5707963267948966 rad pos: -12.5,-32.5 parent: 30 + - uid: 11136 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-54.5 + parent: 30 - uid: 11137 components: - type: Transform @@ -91196,6 +91505,12 @@ entities: - type: Transform pos: 40.5,36.5 parent: 30 + - uid: 13954 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-54.5 + parent: 30 - uid: 13973 components: - type: Transform @@ -93490,6 +93805,36 @@ entities: - type: Transform pos: -36.5,-36.5 parent: 30 + - uid: 20664 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-54.5 + parent: 30 + - uid: 20666 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-51.5 + parent: 30 + - uid: 20675 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-50.5 + parent: 30 + - uid: 20676 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-49.5 + parent: 30 + - uid: 20677 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-48.5 + parent: 30 - uid: 20969 components: - type: Transform @@ -94289,6 +94634,29 @@ entities: - type: Transform pos: -43.530403,66.65333 parent: 30 +- proto: HeatExchanger + entities: + - uid: 9651 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-56.5 + parent: 30 + - uid: 11122 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-56.5 + parent: 30 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 20644 + components: + - type: Transform + pos: 7.5,-50.5 + parent: 30 + - type: AtmosPipeColor + color: '#03FCD3FF' - proto: HighSecCommandLocked entities: - uid: 2128 @@ -104763,6 +105131,11 @@ entities: parent: 30 - type: ApcPowerReceiver powerLoad: 0 + - uid: 20665 + components: + - type: Transform + pos: 6.5,-44.5 + parent: 30 - uid: 21112 components: - type: Transform @@ -106176,12 +106549,6 @@ entities: parent: 30 - proto: ReinforcedPlasmaWindow entities: - - uid: 4893 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-54.5 - parent: 30 - uid: 8537 components: - type: Transform @@ -106259,24 +106626,6 @@ entities: - type: Transform pos: 24.5,-22.5 parent: 30 - - uid: 11122 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-54.5 - parent: 30 - - uid: 11130 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-54.5 - parent: 30 - - uid: 11136 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-54.5 - parent: 30 - uid: 12898 components: - type: Transform @@ -106308,18 +106657,6 @@ entities: - type: Transform pos: 35.5,14.5 parent: 30 - - uid: 13954 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-54.5 - parent: 30 - - uid: 13955 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-54.5 - parent: 30 - uid: 17012 components: - type: Transform @@ -106340,6 +106677,42 @@ entities: - type: Transform pos: -59.5,57.5 parent: 30 + - uid: 20678 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-54.5 + parent: 30 + - uid: 20679 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-54.5 + parent: 30 + - uid: 20680 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-54.5 + parent: 30 + - uid: 20681 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-54.5 + parent: 30 + - uid: 20682 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-54.5 + parent: 30 + - uid: 20683 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-54.5 + parent: 30 - proto: ReinforcedWindow entities: - uid: 66 @@ -110246,21 +110619,6 @@ entities: - type: Transform pos: -38.50112,-3.4785028 parent: 30 - - uid: 9353 - components: - - type: Transform - pos: 2.554779,-46.49939 - parent: 30 - - uid: 9373 - components: - - type: Transform - pos: 3.0953474,-46.49939 - parent: 30 - - uid: 9966 - components: - - type: Transform - pos: 3.409225,-46.49939 - parent: 30 - uid: 9977 components: - type: Transform From 14a8e94f1e8bdfa349ec33a8bca98a02e3ab4439 Mon Sep 17 00:00:00 2001 From: Mervill Date: Sun, 28 Jul 2024 23:35:50 -0700 Subject: [PATCH 31/89] Fix punctuation in anchored / unanchored examine text (#30439) fix punctuation in anchored / unachored examine text --- Resources/Locale/en-US/examine/examine-system.ftl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Resources/Locale/en-US/examine/examine-system.ftl b/Resources/Locale/en-US/examine/examine-system.ftl index 243ba57257..fae6360e9b 100644 --- a/Resources/Locale/en-US/examine/examine-system.ftl +++ b/Resources/Locale/en-US/examine/examine-system.ftl @@ -6,6 +6,6 @@ examine-system-cant-see-entity = You can't make out whatever that is. examine-verb-name = Basic -examinable-anchored = It is [color=darkgreen]anchored[/color] to the floor +examinable-anchored = It is [color=darkgreen]anchored[/color] to the floor. -examinable-unanchored = It is [color=darkred]unanchored[/color] from the floor +examinable-unanchored = It is [color=darkred]unanchored[/color] from the floor. From 0dd22c31d185a35b7115a1f37aa3644018bbe2cd Mon Sep 17 00:00:00 2001 From: JIPDawg <51352440+JIPDawg@users.noreply.github.com> Date: Sun, 28 Jul 2024 23:49:28 -0700 Subject: [PATCH 32/89] Change unused OpenScoreboardWindow to ToggleRoundEndSummaryWindow and bind it to F9 (#30438) Change unused OpenScoreboardWindow to ToggleRoundEndSummaryWindow --- Resources/keybinds.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Resources/keybinds.yml b/Resources/keybinds.yml index c11f59d17c..0b38a64922 100644 --- a/Resources/keybinds.yml +++ b/Resources/keybinds.yml @@ -455,8 +455,8 @@ binds: - function: OpenDecalSpawnWindow type: State key: F8 -- function: OpenScoreboardWindow - type: State +- function: ToggleRoundEndSummaryWindow + type: Toggle key: F9 - function: OpenSandboxWindow type: State From c586561a9e29d2d7fa825c9aca8d9c71dd753d0a Mon Sep 17 00:00:00 2001 From: PJBot Date: Mon, 29 Jul 2024 06:50:35 +0000 Subject: [PATCH 33/89] Automatic changelog update --- Resources/Changelog/Changelog.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index f6f8c795f3..ee7b78158c 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: ShadowCommander - changes: - - message: Fixed microwave construction not creating a microwave on completion. - type: Fix - id: 6498 - time: '2024-04-30T00:19:08.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/27500 - author: lzk228 changes: - message: Barozine is removed from hydroponics mutatuions. @@ -3780,3 +3773,10 @@ id: 6997 time: '2024-07-29T06:19:43.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/29690 +- author: JIPDawg + changes: + - message: F9 is correctly bound to the Round End Summary window by default now. + type: Fix + id: 6998 + time: '2024-07-29T06:49:28.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/30438 From ec19f9f4a9bbc6b57625314ab55a555775c29d81 Mon Sep 17 00:00:00 2001 From: Mervill Date: Mon, 29 Jul 2024 00:28:17 -0700 Subject: [PATCH 34/89] Make the powered examine text fully client predicted (#30441) * Make the powered examine text fully client predicted * switch to using the Entity API for the examine event --- .../Power/EntitySystems/PowerReceiverSystem.cs | 9 ++++++++- .../Power/EntitySystems/PowerReceiverSystem.cs | 16 +++++----------- .../EntitySystems/SharedPowerReceiverSystem.cs | 13 +++++++++++-- 3 files changed, 24 insertions(+), 14 deletions(-) diff --git a/Content.Client/Power/EntitySystems/PowerReceiverSystem.cs b/Content.Client/Power/EntitySystems/PowerReceiverSystem.cs index 4d56592c23..61e20f751c 100644 --- a/Content.Client/Power/EntitySystems/PowerReceiverSystem.cs +++ b/Content.Client/Power/EntitySystems/PowerReceiverSystem.cs @@ -1,6 +1,7 @@ -using Content.Client.Power.Components; +using Content.Client.Power.Components; using Content.Shared.Power.Components; using Content.Shared.Power.EntitySystems; +using Content.Shared.Examine; using Robust.Shared.GameStates; namespace Content.Client.Power.EntitySystems; @@ -10,9 +11,15 @@ public sealed class PowerReceiverSystem : SharedPowerReceiverSystem public override void Initialize() { base.Initialize(); + SubscribeLocalEvent(OnExamined); SubscribeLocalEvent(OnHandleState); } + private void OnExamined(Entity ent, ref ExaminedEvent args) + { + args.PushMarkup(GetExamineText(ent.Comp.Powered)); + } + private void OnHandleState(EntityUid uid, ApcPowerReceiverComponent component, ref ComponentHandleState args) { if (args.Current is not ApcPowerReceiverComponentState state) diff --git a/Content.Server/Power/EntitySystems/PowerReceiverSystem.cs b/Content.Server/Power/EntitySystems/PowerReceiverSystem.cs index 191d3fc4bd..9b15bdfd28 100644 --- a/Content.Server/Power/EntitySystems/PowerReceiverSystem.cs +++ b/Content.Server/Power/EntitySystems/PowerReceiverSystem.cs @@ -46,6 +46,11 @@ namespace Content.Server.Power.EntitySystems _provQuery = GetEntityQuery(); } + private void OnExamined(Entity ent, ref ExaminedEvent args) + { + args.PushMarkup(GetExamineText(ent.Comp.Powered)); + } + private void OnGetVerbs(EntityUid uid, ApcPowerReceiverComponent component, GetVerbsEvent args) { if (!_adminManager.HasAdminFlag(args.User, AdminFlags.Admin)) @@ -61,17 +66,6 @@ namespace Content.Server.Power.EntitySystems }); } - /// - ///Adds some markup to the examine text of whatever object is using this component to tell you if it's powered or not, even if it doesn't have an icon state to do this for you. - /// - private void OnExamined(EntityUid uid, ApcPowerReceiverComponent component, ExaminedEvent args) - { - args.PushMarkup(Loc.GetString("power-receiver-component-on-examine-main", - ("stateText", Loc.GetString( component.Powered - ? "power-receiver-component-on-examine-powered" - : "power-receiver-component-on-examine-unpowered")))); - } - private void OnProviderShutdown(EntityUid uid, ApcPowerProviderComponent component, ComponentShutdown args) { foreach (var receiver in component.LinkedReceivers) diff --git a/Content.Shared/Power/EntitySystems/SharedPowerReceiverSystem.cs b/Content.Shared/Power/EntitySystems/SharedPowerReceiverSystem.cs index be2a9dc3ab..37ac751889 100644 --- a/Content.Shared/Power/EntitySystems/SharedPowerReceiverSystem.cs +++ b/Content.Shared/Power/EntitySystems/SharedPowerReceiverSystem.cs @@ -1,6 +1,15 @@ -namespace Content.Shared.Power.EntitySystems; +using Content.Shared.Examine; +using Content.Shared.Power.Components; + +namespace Content.Shared.Power.EntitySystems; public abstract class SharedPowerReceiverSystem : EntitySystem { - + protected string GetExamineText(bool powered) + { + return Loc.GetString("power-receiver-component-on-examine-main", + ("stateText", Loc.GetString(powered + ? "power-receiver-component-on-examine-powered" + : "power-receiver-component-on-examine-unpowered"))); + } } From 0e4bc4cefcc79c60ca619078f6942bafe013fe62 Mon Sep 17 00:00:00 2001 From: Maishul <140472900+githubuser508@users.noreply.github.com> Date: Mon, 29 Jul 2024 01:29:27 -0700 Subject: [PATCH 35/89] Candles Crate (#29736) * First attempt at adding crate * Changed loose candles to candle boxes * Corrected minor typo * Removed a change to the development preset * Buffed crate to 2 of each box * Hopefully removes strange not-change in the repo * Updated description to be clearer. --------- Co-authored-by: elee-github --- .../Prototypes/Catalog/Cargo/cargo_service.yml | 9 +++++++++ .../Prototypes/Catalog/Fills/Crates/service.yml | 13 +++++++++++++ 2 files changed, 22 insertions(+) diff --git a/Resources/Prototypes/Catalog/Cargo/cargo_service.yml b/Resources/Prototypes/Catalog/Cargo/cargo_service.yml index 0f930ddfd6..4701d50c01 100644 --- a/Resources/Prototypes/Catalog/Cargo/cargo_service.yml +++ b/Resources/Prototypes/Catalog/Cargo/cargo_service.yml @@ -198,3 +198,12 @@ category: cargoproduct-category-name-service group: market +- type: cargoProduct + id: ServiceCandles + icon: + sprite: Objects/Misc/candles.rsi + state: candle-big + product: CrateCandles + cost: 500 + category: cargoproduct-category-name-service + group: market diff --git a/Resources/Prototypes/Catalog/Fills/Crates/service.yml b/Resources/Prototypes/Catalog/Fills/Crates/service.yml index 3950c4f8fd..693ddab14e 100644 --- a/Resources/Prototypes/Catalog/Fills/Crates/service.yml +++ b/Resources/Prototypes/Catalog/Fills/Crates/service.yml @@ -333,3 +333,16 @@ prob: 0.1 - id: ShardGlassPlasma prob: 0.1 + +- type: entity + id: CrateCandles + parent: CrateGenericSteel + name: candles crate + description: Contains 4 boxes of candles, 2 large and 2 small. For atmosphere or something. + components: + - type: StorageFill + contents: + - id: BoxCandle + amount: 2 + - id: BoxCandleSmall + amount: 2 From a9fc5a4b94f32e629b87ee9184a3ad4801f90a64 Mon Sep 17 00:00:00 2001 From: PJBot Date: Mon, 29 Jul 2024 08:30:33 +0000 Subject: [PATCH 36/89] Automatic changelog update --- Resources/Changelog/Changelog.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index ee7b78158c..08edf140d0 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: lzk228 - changes: - - message: Barozine is removed from hydroponics mutatuions. - type: Remove - id: 6499 - time: '2024-04-30T03:01:38.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/27512 - author: DogZeroX changes: - message: Changed the announcement of the immovable rod event. @@ -3780,3 +3773,10 @@ id: 6998 time: '2024-07-29T06:49:28.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/30438 +- author: githubuser508 + changes: + - message: Candles crate and the ability for Cargo to order it. + type: Add + id: 6999 + time: '2024-07-29T08:29:27.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/29736 From cf7e6807707f4fe1554d1f1edcc7bacd881d78e8 Mon Sep 17 00:00:00 2001 From: thecopbennet Date: Mon, 29 Jul 2024 04:31:05 -0400 Subject: [PATCH 37/89] turns "nosmoking sign" into "no smoking sign" (#30444) add a space Co-authored-by: thecopbennet --- .../Prototypes/Entities/Structures/Wallmounts/Signs/signs.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Resources/Prototypes/Entities/Structures/Wallmounts/Signs/signs.yml b/Resources/Prototypes/Entities/Structures/Wallmounts/Signs/signs.yml index c6ecb5fd30..1308eff1be 100644 --- a/Resources/Prototypes/Entities/Structures/Wallmounts/Signs/signs.yml +++ b/Resources/Prototypes/Entities/Structures/Wallmounts/Signs/signs.yml @@ -660,7 +660,7 @@ - type: entity parent: BaseSign id: SignNosmoking - name: nosmoking sign + name: no smoking sign description: A sign indicating that smoking is not allowed in the vicinity. components: - type: Sprite From 3db33d944f1c5cb1ecbdd0510282a27e8ff0255c Mon Sep 17 00:00:00 2001 From: Alzore <140123969+Blackern5000@users.noreply.github.com> Date: Mon, 29 Jul 2024 04:57:04 -0500 Subject: [PATCH 38/89] Increase the contents of the emergency oxygen and fire lockers (#29230) * 201 asphyxiation damage * A bit less oxygen --- .../Prototypes/Catalog/Fills/Lockers/misc.yml | 87 ++++++++++++------- 1 file changed, 55 insertions(+), 32 deletions(-) diff --git a/Resources/Prototypes/Catalog/Fills/Lockers/misc.yml b/Resources/Prototypes/Catalog/Fills/Lockers/misc.yml index b49fa383bc..a5b06fca03 100644 --- a/Resources/Prototypes/Catalog/Fills/Lockers/misc.yml +++ b/Resources/Prototypes/Catalog/Fills/Lockers/misc.yml @@ -20,16 +20,16 @@ components: - type: StorageFill contents: - - id: ClothingOuterSuitEmergency - id: ClothingMaskBreath + - id: ClothingOuterSuitEmergency - id: EmergencyOxygenTankFilled - prob: 0.80 - orGroup: EmergencyTankOrRegularTank + prob: 0.5 + orGroup: OxygenTank - id: OxygenTankFilled - prob: 0.20 - orGroup: EmergencyTankOrRegularTank + prob: 0.5 + orGroup: OxygenTank - id: ToolboxEmergencyFilled - prob: 0.4 + prob: 0.5 - id: MedkitOxygenFilled prob: 0.2 - id: WeaponFlareGun @@ -44,16 +44,16 @@ components: - type: StorageFill contents: - - id: ClothingOuterSuitEmergency - id: ClothingMaskBreath + - id: ClothingOuterSuitEmergency - id: EmergencyOxygenTankFilled - prob: 0.80 - orGroup: EmergencyTankOrRegularTank + prob: 0.5 + orGroup: OxygenTank - id: OxygenTankFilled - prob: 0.20 - orGroup: EmergencyTankOrRegularTank + prob: 0.5 + orGroup: OxygenTank - id: ToolboxEmergencyFilled - prob: 0.4 + prob: 0.5 - id: MedkitOxygenFilled prob: 0.2 - id: WeaponFlareGun @@ -69,39 +69,62 @@ - type: StorageFill contents: - id: ClothingMaskBreath + - id: ClothingOuterSuitEmergency - id: EmergencyNitrogenTankFilled - prob: 0.80 - orGroup: EmergencyTankOrRegularTank + prob: 0.5 + orGroup: NitrogenTank - id: NitrogenTankFilled - prob: 0.20 - orGroup: EmergencyTankOrRegularTank + prob: 0.5 + orGroup: NitrogenTank - type: entity id: ClosetFireFilled parent: ClosetFire suffix: Filled components: - - type: StorageFill - contents: - - id: ClothingOuterSuitFire - - id: ClothingHeadHelmetFire - - id: ClothingMaskGas - - id: OxygenTankFilled - - id: FireExtinguisher - prob: 0.25 + - type: StorageFill + contents: + - id: ClothingOuterSuitFire + - id: ClothingHeadHelmetFire + - id: ClothingMaskGas + - id: EmergencyOxygenTankFilled + prob: 0.5 + orGroup: OxygenTank + - id: OxygenTankFilled + prob: 0.5 + orGroup: OxygenTank + - id: CrowbarRed + - id: FireExtinguisher + prob: 0.98 + orGroup: FireExtinguisher + - id: SprayBottleWater #It's just budget cut after budget cut man + prob: 0.02 + orGroup: FireExtinguisher + - type: entity id: ClosetWallFireFilledRandom parent: ClosetWallFire suffix: Filled components: - - type: StorageFill - contents: - - id: ClothingOuterSuitFire - - id: ClothingHeadHelmetFire - - id: ClothingMaskGas - - id: OxygenTankFilled - - id: FireExtinguisher - prob: 0.25 + - type: StorageFill + contents: + - id: ClothingOuterSuitFire + - id: ClothingHeadHelmetFire + - id: ClothingMaskGas + - id: EmergencyOxygenTankFilled + prob: 0.5 + orGroup: OxygenTank + - id: OxygenTankFilled + prob: 0.5 + orGroup: OxygenTank + - id: CrowbarRed + - id: FireExtinguisher + prob: 0.98 + orGroup: FireExtinguisher + - id: SprayBottleWater #It's just budget cut after budget cut man + prob: 0.02 + orGroup: FireExtinguisher + - type: entity id: ClosetMaintenanceFilledRandom suffix: Filled, Random From 7244b9b912404995270fdbee0be9cd7ce0621a60 Mon Sep 17 00:00:00 2001 From: PJBot Date: Mon, 29 Jul 2024 09:58:10 +0000 Subject: [PATCH 39/89] Automatic changelog update --- Resources/Changelog/Changelog.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 08edf140d0..827805d951 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: DogZeroX - changes: - - message: Changed the announcement of the immovable rod event. - type: Tweak - id: 6500 - time: '2024-04-30T04:05:14.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/27515 - author: DogZeroX changes: - message: Flares looped sound no longer have a massive range, and are much quieter. @@ -3780,3 +3773,10 @@ id: 6999 time: '2024-07-29T08:29:27.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/29736 +- author: Blackern5000 + changes: + - message: Emergency oxygen and fire lockers now generally contain more supplies + type: Tweak + id: 7000 + time: '2024-07-29T09:57:04.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/29230 From 6114a88628027360b1132f22f292bcfa0600e884 Mon Sep 17 00:00:00 2001 From: end <72604018+laok233@users.noreply.github.com> Date: Mon, 29 Jul 2024 14:37:31 +0200 Subject: [PATCH 40/89] N2O color change (#30383) --- Resources/Prototypes/Atmospherics/gases.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Resources/Prototypes/Atmospherics/gases.yml b/Resources/Prototypes/Atmospherics/gases.yml index 4a72f655d8..5c54b5a015 100644 --- a/Resources/Prototypes/Atmospherics/gases.yml +++ b/Resources/Prototypes/Atmospherics/gases.yml @@ -84,7 +84,7 @@ specificHeat: 40 heatCapacityRatio: 1.3 molarMass: 44 - color: 2887E8 + color: 8F00FF reagent: NitrousOxide pricePerMole: 1 From 7761f86b998f63db9320d97a0d84e00a05954a2d Mon Sep 17 00:00:00 2001 From: Moomoobeef <62638182+Moomoobeef@users.noreply.github.com> Date: Mon, 29 Jul 2024 07:52:39 -0500 Subject: [PATCH 41/89] added wearable lizard plushie (#30400) --- .../Prototypes/Entities/Objects/Fun/toys.yml | 6 ++++++ .../Fun/toys.rsi/lizard-equipped-HELMET.png | Bin 0 -> 564 bytes Resources/Textures/Objects/Fun/toys.rsi/meta.json | 6 +++++- 3 files changed, 11 insertions(+), 1 deletion(-) create mode 100644 Resources/Textures/Objects/Fun/toys.rsi/lizard-equipped-HELMET.png diff --git a/Resources/Prototypes/Entities/Objects/Fun/toys.yml b/Resources/Prototypes/Entities/Objects/Fun/toys.yml index 33a322cb25..20c92b0901 100644 --- a/Resources/Prototypes/Entities/Objects/Fun/toys.yml +++ b/Resources/Prototypes/Entities/Objects/Fun/toys.yml @@ -301,6 +301,12 @@ Quantity: 10 - ReagentId: JuiceThatMakesYouWeh Quantity: 10 + - type: Clothing + quickEquip: false + sprite: Objects/Fun/toys.rsi + equippedPrefix: lizard + slots: + - HEAD - type: entity parent: PlushieLizard diff --git a/Resources/Textures/Objects/Fun/toys.rsi/lizard-equipped-HELMET.png b/Resources/Textures/Objects/Fun/toys.rsi/lizard-equipped-HELMET.png new file mode 100644 index 0000000000000000000000000000000000000000..a436871b94d44a7a2890a37c9b7599d0277eec8f GIT binary patch literal 564 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7TyC=jKx9jP7LeL$-D%zuXwsRhE&XX zd&@BUkb?;Ohx%1B9A5|&6bOoki(B7ReUL72>!y>Lz0Y#7TQ?7$4|uaESnaybwWZFA zvz?E8usRVrmFumwC(oby%evF6E$`W?zL(MXnx6YnOU_L2L)HIx8S@v5w(MhY*wbhD z?%dVa@tJC!9X-2?84jGj%fjFy-Egen*6p>=Lv6mK=YIXQinl=K`Sn7EZ8m!q zG zuIY@&5}tVP+$w8-|3!AdL!*XoJZ^Q%>JN0l0hj+*+ggjao{#co3&$PZ{7WxinWNUw zFy)%0k^cWHGY{MmG?*^BDdn0>`SXfbJ`;AlJh-=Ue~`JG-pjZKU!7II85smx{^jlI z-1Jt&d$T6LU_hSiv4soQF)ovwdHnB!+GW-uxi7K~>{p*5m2l(Bv)sALVy~aA*!JUw zRb8d-SGF9b*IUo4eU50mJnzZJ%jI4IzZRW!DrMW@>1qA-O;M+6e{uaO)uT=>Fi>)F tALG}3C;PW~J`e&%HeYIlXPU1sgBFm@0mLA1DR?r7@^tlcS?83{1OS}J`RD)u literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Fun/toys.rsi/meta.json b/Resources/Textures/Objects/Fun/toys.rsi/meta.json index fa118695c2..4975ba0461 100644 --- a/Resources/Textures/Objects/Fun/toys.rsi/meta.json +++ b/Resources/Textures/Objects/Fun/toys.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at https://github.com/tgstation/tgstation/commit/e1142f20f5e4661cb6845cfcf2dd69f864d67432, orb, orb-inhand-left and orb-inhand-right created by Pancake, plushie_diona and plushie_diona1 created by discord user Deos#5630, toy-mouse-equipped-HELMET is a resprited 1-equipped-HELMET in mouse.rsi by PuroSlavKing (Github), plushie_xeno by LinkUyx#6557, plushie_hampter by RenLou#4333, beachball taken from https://github.com/ss220-space/Paradise/commit/662c08272acd7be79531550919f56f846726eabb, beachb-inhand by ;3#1161, bee hat and in-hand sprites drawn by Ubaser, plushie_penguin by netwy, plushie_arachnid by PixelTheKermit (github), plushie human by TheShuEd, NanoTrasen Balloon by MACMAN2003, holoplush and magicplush modified by deltanedas (github)", + "copyright": "Taken from tgstation at https://github.com/tgstation/tgstation/commit/e1142f20f5e4661cb6845cfcf2dd69f864d67432, orb, orb-inhand-left and orb-inhand-right created by Pancake, plushie_diona and plushie_diona1 created by discord user Deos#5630, toy-mouse-equipped-HELMET is a resprited 1-equipped-HELMET in mouse.rsi by PuroSlavKing (Github), plushie_xeno by LinkUyx#6557, plushie_hampter by RenLou#4333, beachball taken from https://github.com/ss220-space/Paradise/commit/662c08272acd7be79531550919f56f846726eabb, beachb-inhand by ;3#1161, bee hat and in-hand sprites drawn by Ubaser, plushie_penguin by netwy, plushie_arachnid by PixelTheKermit (github), plushie human by TheShuEd, NanoTrasen Balloon by MACMAN2003, holoplush and magicplush modified by deltanedas (github). Lizard hat sprite made by Cinder", "size": { "x": 32, "y": 32 @@ -91,6 +91,10 @@ { "name": "plushie_lizard_mirrored" }, + { + "name": "lizard-equipped-HELMET", + "directions": 4 + }, { "name": "plushie_lamp" }, From 16cbd1a36b4b91ab65fd0aab69752290609827e1 Mon Sep 17 00:00:00 2001 From: PJBot Date: Mon, 29 Jul 2024 12:53:46 +0000 Subject: [PATCH 42/89] Automatic changelog update --- Resources/Changelog/Changelog.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 827805d951..b6d8ecffa8 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: DogZeroX - changes: - - message: Flares looped sound no longer have a massive range, and are much quieter. - type: Fix - id: 6501 - time: '2024-04-30T06:49:35.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/27521 - author: ERORR404V1 changes: - message: Added chameleon projector in thief toolbox! @@ -3780,3 +3773,10 @@ id: 7000 time: '2024-07-29T09:57:04.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/29230 +- author: Moomoobeef + changes: + - message: Added the ability to wear lizard plushies on your head! + type: Add + id: 7001 + time: '2024-07-29T12:52:40.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/30400 From 8595f59b835ec37990cf971db46724a26f252abd Mon Sep 17 00:00:00 2001 From: TurboTracker <130304754+TurboTrackerss14@users.noreply.github.com> Date: Mon, 29 Jul 2024 16:16:54 +0100 Subject: [PATCH 43/89] Bring kobold ghostrole chance inline with monkey (#30450) --- Resources/Prototypes/Entities/Mobs/NPCs/animals.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Resources/Prototypes/Entities/Mobs/NPCs/animals.yml b/Resources/Prototypes/Entities/Mobs/NPCs/animals.yml index 70c65dcb8a..1cf1390770 100644 --- a/Resources/Prototypes/Entities/Mobs/NPCs/animals.yml +++ b/Resources/Prototypes/Entities/Mobs/NPCs/animals.yml @@ -1446,7 +1446,7 @@ - type: SentienceTarget flavorKind: station-event-random-sentience-flavor-kobold - type: GhostRole - prob: 0.1 + prob: 0.05 makeSentient: true name: ghost-role-information-kobold-name description: ghost-role-information-kobold-description From 961514dd28f35d1c2ac84430ab845aa0b30f895c Mon Sep 17 00:00:00 2001 From: PJBot Date: Mon, 29 Jul 2024 15:18:01 +0000 Subject: [PATCH 44/89] Automatic changelog update --- Resources/Changelog/Changelog.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index b6d8ecffa8..dd02ef2fbb 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: ERORR404V1 - changes: - - message: Added chameleon projector in thief toolbox! - type: Add - id: 6502 - time: '2024-04-30T12:14:06.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/27491 - author: DamnFeds changes: - message: honkbot now uses a happy honk meal instead of box of hugs and clown's @@ -3780,3 +3773,10 @@ id: 7001 time: '2024-07-29T12:52:40.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/30400 +- author: TurboTrackerss14 + changes: + - message: Reduced Kobold ghostrole chance to mirror Monkey + type: Tweak + id: 7002 + time: '2024-07-29T15:16:54.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/30450 From fcaf04d72b99077e945b985577ef4bbb5e83f44a Mon Sep 17 00:00:00 2001 From: Emisse <99158783+Emisse@users.noreply.github.com> Date: Mon, 29 Jul 2024 12:45:42 -0600 Subject: [PATCH 45/89] bagel update (#30461) --- Resources/Maps/bagel.yml | 87 +++++++++++++++++++++++++++++++++++++--- 1 file changed, 82 insertions(+), 5 deletions(-) diff --git a/Resources/Maps/bagel.yml b/Resources/Maps/bagel.yml index 90d0061f77..c7030f6cf5 100644 --- a/Resources/Maps/bagel.yml +++ b/Resources/Maps/bagel.yml @@ -11876,6 +11876,8 @@ entities: rot: 3.141592653589793 rad pos: 0.5,-0.5 parent: 7536 + - type: Door + changeAirtight: False - type: Docking dockJointId: docking43669 dockedWith: 7332 @@ -13198,6 +13200,8 @@ entities: lastSignals: DoorStatus: False DockStatus: True + - type: Door + changeAirtight: False - uid: 12584 components: - type: Transform @@ -122226,6 +122230,21 @@ entities: parent: 60 - proto: SignAi entities: + - uid: 16533 + components: + - type: Transform + pos: -101.5,16.5 + parent: 60 + - uid: 19800 + components: + - type: Transform + pos: -112.5,20.5 + parent: 60 + - uid: 19808 + components: + - type: Transform + pos: -107.5,16.5 + parent: 60 - uid: 21237 components: - type: Transform @@ -122236,6 +122255,18 @@ entities: - type: Transform pos: -60.5,16.5 parent: 60 +- proto: SignAiUpload + entities: + - uid: 21130 + components: + - type: Transform + pos: -110.5,6.5 + parent: 60 + - uid: 23380 + components: + - type: Transform + pos: -112.5,14.5 + parent: 60 - proto: SignalButton entities: - uid: 3803 @@ -123122,11 +123153,12 @@ entities: - type: Transform pos: 2.5,-1.5 parent: 60 -- proto: SignCanisters +- proto: SignCans entities: - - uid: 15171 + - uid: 13825 components: - type: Transform + rot: 3.141592653589793 rad pos: -28.5,37.5 parent: 60 - proto: SignCargo @@ -123183,6 +123215,13 @@ entities: - type: Transform pos: 42.5,-25.5 parent: 60 +- proto: SignCryo + entities: + - uid: 15171 + components: + - type: Transform + pos: -29.5,22.5 + parent: 60 - proto: SignCryogenicsMed entities: - uid: 4111 @@ -123313,11 +123352,11 @@ entities: rot: 1.5707963267948966 rad pos: 42.49971,-21.305145 parent: 60 - - uid: 16533 + - uid: 23381 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -29.5,22.5 + rot: 3.141592653589793 rad + pos: -32.5,18.5 parent: 60 - proto: SignDirectionalDorms entities: @@ -124056,6 +124095,14 @@ entities: - type: Transform pos: -109.5,20.5 parent: 60 +- proto: SignKitchen + entities: + - uid: 23382 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,-25.5 + parent: 60 - proto: SignLaserMed entities: - uid: 14624 @@ -124094,6 +124141,12 @@ entities: - type: Transform pos: 3.5,-46.5 parent: 60 + - uid: 23969 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,17.5 + parent: 60 - proto: SignMedical entities: - uid: 2632 @@ -124279,6 +124332,14 @@ entities: - type: Transform pos: -19.5,-11.5 parent: 60 +- proto: SignRestroom + entities: + - uid: 23970 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,11.5 + parent: 60 - proto: SignRND entities: - uid: 7085 @@ -124537,6 +124598,14 @@ entities: - type: Transform pos: 22.5,6.5 parent: 60 +- proto: SignTheater + entities: + - uid: 24271 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-20.5 + parent: 60 - proto: SignToolStorage entities: - uid: 6315 @@ -124544,6 +124613,14 @@ entities: - type: Transform pos: 14.5,10.5 parent: 60 +- proto: SignVault + entities: + - uid: 24268 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-5.5 + parent: 60 - proto: SignVirology entities: - uid: 2969 From 83a56cc74afb57970cea480efc43ac1a9621a5a8 Mon Sep 17 00:00:00 2001 From: Mervill Date: Mon, 29 Jul 2024 17:57:46 -0700 Subject: [PATCH 46/89] Objects that only have a basic description won't have extra line in examine text (#30472) objects that only have a basic description won't have extra line in examine text --- Content.Shared/Examine/ExamineSystemShared.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Content.Shared/Examine/ExamineSystemShared.cs b/Content.Shared/Examine/ExamineSystemShared.cs index 682018949a..f0406c5398 100644 --- a/Content.Shared/Examine/ExamineSystemShared.cs +++ b/Content.Shared/Examine/ExamineSystemShared.cs @@ -352,7 +352,7 @@ namespace Content.Shared.Examine var totalMessage = new FormattedMessage(Message); parts.Sort(Comparison); - if (_hasDescription) + if (_hasDescription && parts.Count > 0) { totalMessage.PushNewline(); } From c5f332ea9f149157825a3ef3770326dcfeb1362c Mon Sep 17 00:00:00 2001 From: Ian Date: Tue, 30 Jul 2024 03:05:26 +0200 Subject: [PATCH 47/89] added a defib to the courser (#30471) --- Resources/Maps/Shuttles/emergency_courser.yml | 206 ++++++++---------- 1 file changed, 92 insertions(+), 114 deletions(-) diff --git a/Resources/Maps/Shuttles/emergency_courser.yml b/Resources/Maps/Shuttles/emergency_courser.yml index 135c95e247..f9ff40b8fa 100644 --- a/Resources/Maps/Shuttles/emergency_courser.yml +++ b/Resources/Maps/Shuttles/emergency_courser.yml @@ -362,85 +362,96 @@ entities: version: 2 data: tiles: - -2,-1: - 0: 61166 - -1,-1: - 0: 65535 - 0,-1: - 0: 65535 -2,-3: - 0: 60620 + 0: 8192 + 1: 34944 -2,-2: - 0: 61102 - 1: 64 + 1: 52936 + -2,-1: + 1: 52430 -2,-4: - 0: 51328 - -1,-4: - 0: 57343 - 1: 8192 - -1,-3: - 0: 65535 - -1,-2: - 0: 49151 - 1: 16384 - 0,-4: - 0: 65535 - 0,-3: - 0: 65535 - 0,-2: - 0: 65535 - 1,-4: - 0: 12560 - 1,-3: - 0: 29491 - 1,-2: - 0: 30551 - 1: 32 - 1,-1: - 0: 30583 + 0: 16512 -2,0: - 0: 61166 - -2,1: - 0: 61102 - 1: 64 - -2,2: - 0: 52300 - 1: 128 - -2,3: - 0: 136 - -1,0: - 0: 65535 - -1,1: - 0: 49151 - 1: 16384 - -1,2: - 0: 65535 - -1,3: - 0: 61439 - 0,0: - 0: 65535 - 0,1: - 0: 57343 - 1: 8192 - 0,2: - 0: 65535 - 0,3: - 0: 32767 - 1,0: - 0: 30583 - 1,1: - 0: 30551 - 1: 32 - 1,2: - 0: 13091 - 1: 16 - 1,3: - 0: 17 + 1: 52940 + -1,-4: + 1: 65260 + -1,-3: + 1: 65372 + -1,-2: + 1: 57297 + -1,-1: + 1: 65489 -1,-5: - 0: 61440 + 0: 4096 + -1,0: + 1: 8191 + 0,-4: + 1: 63347 + 0,-3: + 1: 65443 + 0,-2: + 1: 49080 + 0,-1: + 1: 65464 + 0,0: + 1: 36863 0,-5: - 0: 61440 + 0: 32768 + 1,-4: + 0: 8208 + 1,-3: + 1: 4368 + 0: 16384 + 1,-2: + 1: 14129 + 1,-1: + 1: 13111 + 1,0: + 1: 14131 + -2,1: + 1: 35022 + 0: 8192 + -2,2: + 1: 136 + 0: 16384 + -1,1: + 1: 56829 + -1,2: + 1: 62705 + -2,3: + 0: 128 + -1,3: + 1: 3310 + 0,1: + 1: 48123 + 0,2: + 1: 62200 + 0,3: + 1: 887 + 1,1: + 1: 4407 + 0: 16384 + 1,2: + 1: 17 + 0: 8192 + 1,3: + 0: 16 uniqueMixes: + - volume: 2500 + immutable: True + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 - volume: 2500 temperature: 293.15 moles: @@ -456,21 +467,6 @@ entities: - 0 - 0 - 0 - - volume: 2500 - temperature: 293.15 - moles: - - 19.481253 - - 73.28662 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 chunkSize: 4 - type: RadiationGridResistance - type: GravityShake @@ -485,8 +481,6 @@ entities: - type: Transform pos: 0.5,-12.5 parent: 656 - - type: AtmosDevice - joinedGrid: 656 - proto: AirlockCommandGlassLocked entities: - uid: 601 @@ -2023,6 +2017,14 @@ entities: - type: Transform pos: 0.5,14.5 parent: 656 +- proto: DefibrillatorCabinetFilled + entities: + - uid: 657 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-6.5 + parent: 656 - proto: ExtinguisherCabinetFilled entities: - uid: 517 @@ -2176,8 +2178,6 @@ entities: - type: Transform pos: 0.5,-11.5 parent: 656 - - type: AtmosDevice - joinedGrid: 656 - proto: GasPassiveVent entities: - uid: 521 @@ -2186,8 +2186,6 @@ entities: rot: -1.5707963267948966 rad pos: -0.5,-11.5 parent: 656 - - type: AtmosDevice - joinedGrid: 656 - proto: GasPipeBend entities: - uid: 523 @@ -2536,8 +2534,6 @@ entities: rot: 3.141592653589793 rad pos: 0.5,-12.5 parent: 656 - - type: AtmosDevice - joinedGrid: 656 - proto: GasVentPump entities: - uid: 524 @@ -2546,72 +2542,54 @@ entities: rot: -1.5707963267948966 rad pos: -0.5,-12.5 parent: 656 - - type: AtmosDevice - joinedGrid: 656 - uid: 550 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-10.5 parent: 656 - - type: AtmosDevice - joinedGrid: 656 - uid: 551 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-10.5 parent: 656 - - type: AtmosDevice - joinedGrid: 656 - uid: 552 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,-0.5 parent: 656 - - type: AtmosDevice - joinedGrid: 656 - uid: 553 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-0.5 parent: 656 - - type: AtmosDevice - joinedGrid: 656 - uid: 573 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,11.5 parent: 656 - - type: AtmosDevice - joinedGrid: 656 - uid: 574 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,11.5 parent: 656 - - type: AtmosDevice - joinedGrid: 656 - uid: 580 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,8.5 parent: 656 - - type: AtmosDevice - joinedGrid: 656 - uid: 589 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,8.5 parent: 656 - - type: AtmosDevice - joinedGrid: 656 - proto: GeneratorBasic15kW entities: - uid: 66 @@ -3424,7 +3402,7 @@ entities: - type: Transform pos: 1.5,-15.5 parent: 656 -- proto: soda_dispenser +- proto: SodaDispenser entities: - uid: 166 components: From 0bbb099a38d9a6b6f6b31cc04dacedf1df81910e Mon Sep 17 00:00:00 2001 From: PJBot Date: Tue, 30 Jul 2024 01:06:33 +0000 Subject: [PATCH 48/89] Automatic changelog update --- Resources/Changelog/Changelog.yml | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index dd02ef2fbb..86d6124554 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,12 +1,4 @@ Entries: -- author: DamnFeds - changes: - - message: honkbot now uses a happy honk meal instead of box of hugs and clown's - rubber stamp. Honk! - type: Tweak - id: 6503 - time: '2024-05-01T03:27:21.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/27535 - author: Plykiya changes: - message: Inserting telecrystals no longer announces to everyone around you that @@ -3780,3 +3772,10 @@ id: 7002 time: '2024-07-29T15:16:54.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/30450 +- author: Ian321 + changes: + - message: The Courser now comes with a defibrillator. + type: Tweak + id: 7003 + time: '2024-07-30T01:05:27.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/30471 From 502ceb69dee1e4981c84410aca2ad85818ac6e82 Mon Sep 17 00:00:00 2001 From: slarticodefast <161409025+slarticodefast@users.noreply.github.com> Date: Tue, 30 Jul 2024 03:22:16 +0200 Subject: [PATCH 49/89] Fix puppy ian steal target (#30474) fix puppy ian steal target --- Resources/Prototypes/Entities/Mobs/NPCs/pets.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Resources/Prototypes/Entities/Mobs/NPCs/pets.yml b/Resources/Prototypes/Entities/Mobs/NPCs/pets.yml index 718c4236cf..6ac74967ff 100644 --- a/Resources/Prototypes/Entities/Mobs/NPCs/pets.yml +++ b/Resources/Prototypes/Entities/Mobs/NPCs/pets.yml @@ -100,6 +100,8 @@ - id: FoodMeatCorgi amount: 2 - id: MaterialHideCorgi + - type: StealTarget + stealGroup: AnimalIan - type: entity name: Runtime From b16de9bb3503b26ca6095aef37ee664340c4d120 Mon Sep 17 00:00:00 2001 From: PJBot Date: Tue, 30 Jul 2024 01:23:23 +0000 Subject: [PATCH 50/89] Automatic changelog update --- Resources/Changelog/Changelog.yml | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 86d6124554..2bd96473dd 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,12 +1,4 @@ Entries: -- author: Plykiya - changes: - - message: Inserting telecrystals no longer announces to everyone around you that - you inserted it. - type: Tweak - id: 6504 - time: '2024-05-01T15:17:47.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/27585 - author: Dezzzix changes: - message: Goldschlager empty bottle renamed to Gildlager empty bottle @@ -3779,3 +3771,10 @@ id: 7003 time: '2024-07-30T01:05:27.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/30471 +- author: slarticodefast + changes: + - message: Fixed puppy Ian not counting as a thief steal target. + type: Fix + id: 7004 + time: '2024-07-30T01:22:17.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/30474 From 85e36266fa5d24dd742b050e2a64c0a68cdc66db Mon Sep 17 00:00:00 2001 From: themias <89101928+themias@users.noreply.github.com> Date: Mon, 29 Jul 2024 21:49:05 -0400 Subject: [PATCH 51/89] Add envelopes (#30298) * Add envelopes * oops * Remove unused loc string * comments and fixes --- Content.Client/Paper/EnvelopeSystem.cs | 35 ++++++ Content.Shared/Paper/EnvelopeComponent.cs | 63 ++++++++++ Content.Shared/Paper/EnvelopeSystem.cs | 108 ++++++++++++++++++ Resources/Locale/en-US/paper/envelope.ftl | 11 ++ .../Catalog/Fills/Boxes/general.yml | 14 +++ .../Catalog/Fills/Crates/service.yml | 1 + .../VendingMachines/Inventories/cart.yml | 1 + .../Entities/Objects/Misc/paper.yml | 78 +++++++++++++ .../paper_heading_postage_stamp.svg.96dpi.png | Bin 0 -> 2387 bytes ...er_heading_postage_stamp.svg.96dpi.png.yml | 2 + .../Objects/Storage/boxes.rsi/envelope.png | Bin 0 -> 158 bytes .../Objects/Storage/boxes.rsi/meta.json | 3 + 12 files changed, 316 insertions(+) create mode 100644 Content.Client/Paper/EnvelopeSystem.cs create mode 100644 Content.Shared/Paper/EnvelopeComponent.cs create mode 100644 Content.Shared/Paper/EnvelopeSystem.cs create mode 100644 Resources/Locale/en-US/paper/envelope.ftl create mode 100644 Resources/Textures/Interface/Paper/paper_heading_postage_stamp.svg.96dpi.png create mode 100644 Resources/Textures/Interface/Paper/paper_heading_postage_stamp.svg.96dpi.png.yml create mode 100644 Resources/Textures/Objects/Storage/boxes.rsi/envelope.png diff --git a/Content.Client/Paper/EnvelopeSystem.cs b/Content.Client/Paper/EnvelopeSystem.cs new file mode 100644 index 0000000000..f405ed1518 --- /dev/null +++ b/Content.Client/Paper/EnvelopeSystem.cs @@ -0,0 +1,35 @@ +using Content.Shared.Paper; +using Robust.Client.GameObjects; + +namespace Content.Client.Paper; + +public sealed class EnvelopeSystem : VisualizerSystem +{ + public override void Initialize() + { + base.Initialize(); + SubscribeLocalEvent(OnAfterAutoHandleState); + } + + private void OnAfterAutoHandleState(Entity ent, ref AfterAutoHandleStateEvent args) + { + UpdateAppearance(ent); + } + + private void UpdateAppearance(Entity ent, SpriteComponent? sprite = null) + { + if (!Resolve(ent.Owner, ref sprite)) + return; + + sprite.LayerSetVisible(EnvelopeVisualLayers.Open, ent.Comp.State == EnvelopeComponent.EnvelopeState.Open); + sprite.LayerSetVisible(EnvelopeVisualLayers.Sealed, ent.Comp.State == EnvelopeComponent.EnvelopeState.Sealed); + sprite.LayerSetVisible(EnvelopeVisualLayers.Torn, ent.Comp.State == EnvelopeComponent.EnvelopeState.Torn); + } + + public enum EnvelopeVisualLayers : byte + { + Open, + Sealed, + Torn + } +} diff --git a/Content.Shared/Paper/EnvelopeComponent.cs b/Content.Shared/Paper/EnvelopeComponent.cs new file mode 100644 index 0000000000..e56fbd85af --- /dev/null +++ b/Content.Shared/Paper/EnvelopeComponent.cs @@ -0,0 +1,63 @@ +using Content.Shared.DoAfter; +using Robust.Shared.Audio; +using Robust.Shared.GameStates; +using Robust.Shared.Serialization; + +namespace Content.Shared.Paper; + +[RegisterComponent, NetworkedComponent, AutoGenerateComponentState(true)] +public sealed partial class EnvelopeComponent : Component +{ + /// + /// The current open/sealed/torn state of the envelope + /// + [ViewVariables, DataField, AutoNetworkedField] + public EnvelopeState State = EnvelopeState.Open; + + [DataField, ViewVariables] + public string SlotId = "letter_slot"; + + /// + /// Stores the current sealing/tearing doafter of the envelope + /// to prevent doafter spam/prediction issues + /// + [DataField, ViewVariables] + public DoAfterId? EnvelopeDoAfter; + + /// + /// How long it takes to seal the envelope closed + /// + [DataField, ViewVariables] + public TimeSpan SealDelay = TimeSpan.FromSeconds(1); + + /// + /// How long it takes to tear open the envelope + /// + [DataField, ViewVariables] + public TimeSpan TearDelay = TimeSpan.FromSeconds(1); + + /// + /// The sound to play when the envelope is sealed closed + /// + [DataField, ViewVariables] + public SoundPathSpecifier? SealSound = new SoundPathSpecifier("/Audio/Effects/packetrip.ogg"); + + /// + /// The sound to play when the envelope is torn open + /// + [DataField, ViewVariables] + public SoundPathSpecifier? TearSound = new SoundPathSpecifier("/Audio/Effects/poster_broken.ogg"); + + [Serializable, NetSerializable] + public enum EnvelopeState : byte + { + Open, + Sealed, + Torn + } +} + +[Serializable, NetSerializable] +public sealed partial class EnvelopeDoAfterEvent : SimpleDoAfterEvent +{ +} diff --git a/Content.Shared/Paper/EnvelopeSystem.cs b/Content.Shared/Paper/EnvelopeSystem.cs new file mode 100644 index 0000000000..560c2c82f9 --- /dev/null +++ b/Content.Shared/Paper/EnvelopeSystem.cs @@ -0,0 +1,108 @@ +using Content.Shared.DoAfter; +using Content.Shared.Containers.ItemSlots; +using Content.Shared.Verbs; +using Robust.Shared.Audio.Systems; +using Content.Shared.Examine; + +namespace Content.Shared.Paper; + +public sealed class EnvelopeSystem : EntitySystem +{ + [Dependency] private readonly SharedDoAfterSystem _doAfterSystem = default!; + [Dependency] private readonly SharedAudioSystem _audioSystem = default!; + [Dependency] private readonly ItemSlotsSystem _itemSlotsSystem = default!; + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnInsertAttempt); + SubscribeLocalEvent(OnEjectAttempt); + SubscribeLocalEvent>(OnGetAltVerbs); + SubscribeLocalEvent(OnDoAfter); + SubscribeLocalEvent(OnExamine); + } + + private void OnExamine(Entity ent, ref ExaminedEvent args) + { + if (ent.Comp.State == EnvelopeComponent.EnvelopeState.Sealed) + { + args.PushMarkup(Loc.GetString("envelope-sealed-examine", ("envelope", ent.Owner))); + } + else if (ent.Comp.State == EnvelopeComponent.EnvelopeState.Torn) + { + args.PushMarkup(Loc.GetString("envelope-torn-examine", ("envelope", ent.Owner))); + } + } + + private void OnGetAltVerbs(Entity ent, ref GetVerbsEvent args) + { + if (!args.CanAccess || !args.CanInteract || args.Hands == null) + return; + + if (ent.Comp.State == EnvelopeComponent.EnvelopeState.Torn) + return; + + var user = args.User; + args.Verbs.Add(new AlternativeVerb() + { + Text = Loc.GetString(ent.Comp.State == EnvelopeComponent.EnvelopeState.Open ? "envelope-verb-seal" : "envelope-verb-tear"), + IconEntity = GetNetEntity(ent.Owner), + Act = () => + { + TryStartDoAfter(ent, user, ent.Comp.State == EnvelopeComponent.EnvelopeState.Open ? ent.Comp.SealDelay : ent.Comp.TearDelay); + }, + }); + } + + private void OnInsertAttempt(Entity ent, ref ItemSlotInsertAttemptEvent args) + { + args.Cancelled |= ent.Comp.State != EnvelopeComponent.EnvelopeState.Open; + } + + private void OnEjectAttempt(Entity ent, ref ItemSlotEjectAttemptEvent args) + { + args.Cancelled |= ent.Comp.State == EnvelopeComponent.EnvelopeState.Sealed; + } + + private void TryStartDoAfter(Entity ent, EntityUid user, TimeSpan delay) + { + if (ent.Comp.EnvelopeDoAfter.HasValue) + return; + + var doAfterEventArgs = new DoAfterArgs(EntityManager, user, delay, new EnvelopeDoAfterEvent(), ent.Owner, ent.Owner) + { + BreakOnDamage = true, + NeedHand = true, + BreakOnHandChange = true, + MovementThreshold = 0.01f, + DistanceThreshold = 1.0f, + }; + + if (_doAfterSystem.TryStartDoAfter(doAfterEventArgs, out var doAfterId)) + ent.Comp.EnvelopeDoAfter = doAfterId; + } + private void OnDoAfter(Entity ent, ref EnvelopeDoAfterEvent args) + { + ent.Comp.EnvelopeDoAfter = null; + + if (args.Cancelled) + return; + + if (ent.Comp.State == EnvelopeComponent.EnvelopeState.Open) + { + _audioSystem.PlayPredicted(ent.Comp.SealSound, ent.Owner, args.User); + ent.Comp.State = EnvelopeComponent.EnvelopeState.Sealed; + Dirty(ent.Owner, ent.Comp); + } + else if (ent.Comp.State == EnvelopeComponent.EnvelopeState.Sealed) + { + _audioSystem.PlayPredicted(ent.Comp.TearSound, ent.Owner, args.User); + ent.Comp.State = EnvelopeComponent.EnvelopeState.Torn; + Dirty(ent.Owner, ent.Comp); + + if (_itemSlotsSystem.TryGetSlot(ent.Owner, ent.Comp.SlotId, out var slotComp)) + _itemSlotsSystem.TryEjectToHands(ent.Owner, slotComp, args.User); + } + } +} diff --git a/Resources/Locale/en-US/paper/envelope.ftl b/Resources/Locale/en-US/paper/envelope.ftl new file mode 100644 index 0000000000..bb7993d284 --- /dev/null +++ b/Resources/Locale/en-US/paper/envelope.ftl @@ -0,0 +1,11 @@ +envelope-verb-seal = Seal +envelope-verb-tear = Tear + +envelope-letter-slot = Letter + +envelope-sealed-examine = [color=gray]{CAPITALIZE(THE($envelope))} is sealed.[/color] +envelope-torn-examine = [color=yellow]{CAPITALIZE(THE($envelope))} is torn and unusable![/color] + +envelope-default-message = TO: + + FROM: \ No newline at end of file diff --git a/Resources/Prototypes/Catalog/Fills/Boxes/general.yml b/Resources/Prototypes/Catalog/Fills/Boxes/general.yml index 85ee9f9ab8..cadf413f47 100644 --- a/Resources/Prototypes/Catalog/Fills/Boxes/general.yml +++ b/Resources/Prototypes/Catalog/Fills/Boxes/general.yml @@ -432,3 +432,17 @@ - id: DartYellow amount: 2 +- type: entity + name: envelope box + parent: BoxCardboard + id: BoxEnvelope + description: A box filled with envelopes. + components: + - type: Sprite + layers: + - state: box + - state: envelope + - type: StorageFill + contents: + - id: Envelope + amount: 9 \ No newline at end of file diff --git a/Resources/Prototypes/Catalog/Fills/Crates/service.yml b/Resources/Prototypes/Catalog/Fills/Crates/service.yml index 693ddab14e..d922056a8b 100644 --- a/Resources/Prototypes/Catalog/Fills/Crates/service.yml +++ b/Resources/Prototypes/Catalog/Fills/Crates/service.yml @@ -128,6 +128,7 @@ - id: BoxFolderRed - id: BoxFolderYellow - id: NewtonCradle + - id: BoxEnvelope - type: entity id: CrateServiceFaxMachine diff --git a/Resources/Prototypes/Catalog/VendingMachines/Inventories/cart.yml b/Resources/Prototypes/Catalog/VendingMachines/Inventories/cart.yml index cb0ef3246d..303b209053 100644 --- a/Resources/Prototypes/Catalog/VendingMachines/Inventories/cart.yml +++ b/Resources/Prototypes/Catalog/VendingMachines/Inventories/cart.yml @@ -8,6 +8,7 @@ RubberStampApproved: 1 RubberStampDenied: 1 Paper: 10 + Envelope: 10 EncryptionKeyCargo: 2 EncryptionKeyEngineering: 2 EncryptionKeyMedical: 2 diff --git a/Resources/Prototypes/Entities/Objects/Misc/paper.yml b/Resources/Prototypes/Entities/Objects/Misc/paper.yml index 42b850f2b2..12e1a09a0c 100644 --- a/Resources/Prototypes/Entities/Objects/Misc/paper.yml +++ b/Resources/Prototypes/Entities/Objects/Misc/paper.yml @@ -564,3 +564,81 @@ Blunt: 10 - type: StealTarget stealGroup: BoxFolderQmClipboard + +- type: entity + name: envelope + parent: BaseItem + id: Envelope + description: 'A small envelope for keeping prying eyes off of your sensitive documents.' + components: + - type: Sprite + sprite: Objects/Misc/bureaucracy.rsi + layers: + - state: envelope_open + map: ["enum.EnvelopeVisualLayers.Open"] + - state: envelope_closed + map: ["enum.EnvelopeVisualLayers.Sealed"] + visible: false + - state: envelope_torn + map: ["enum.EnvelopeVisualLayers.Torn"] + visible: false + - state: paper_stamp-generic + map: ["enum.PaperVisualLayers.Stamp"] + visible: false + - type: Paper + escapeFormatting: false + content: envelope-default-message + - type: PaperVisuals + headerImagePath: "/Textures/Interface/Paper/paper_heading_postage_stamp.svg.96dpi.png" + headerMargin: 216.0, 0.0, 0.0, 0.0 + contentMargin: 0.0, 0.0, 0.0, 0.0 + maxWritableArea: 368.0, 256.0 + - type: Envelope + - type: ContainerContainer + containers: + letter_slot: !type:ContainerSlot + - type: ItemSlots + slots: + letter_slot: + name: envelope-letter-slot + insertSound: /Audio/Effects/packetrip.ogg + ejectSound: /Audio/Effects/packetrip.ogg + whitelist: + tags: + - Paper + - type: ActivatableUI + key: enum.PaperUiKey.Key + requireHands: false + - type: UserInterface + interfaces: + enum.PaperUiKey.Key: + type: PaperBoundUserInterface + - type: Item + size: Tiny + - type: Tag + tags: + - Trash + - Document + #- type: Appearance, hide stamp marks until we have some kind of displacement + - type: Flammable + fireSpread: true + canResistFire: false + alwaysCombustible: true + canExtinguish: true + damage: + types: + Heat: 1 + - type: FireVisuals + sprite: Effects/fire.rsi + normalState: fire + - type: Damageable + damageModifierSet: Wood + - type: Destructible + thresholds: + - trigger: + !type:DamageTrigger + damage: 15 + behaviors: + - !type:EmptyAllContainersBehaviour + - !type:DoActsBehavior + acts: [ "Destruction" ] \ No newline at end of file diff --git a/Resources/Textures/Interface/Paper/paper_heading_postage_stamp.svg.96dpi.png b/Resources/Textures/Interface/Paper/paper_heading_postage_stamp.svg.96dpi.png new file mode 100644 index 0000000000000000000000000000000000000000..ec3566f63ea73dc31d7ead72e5d4e6a57e0167b4 GIT binary patch literal 2387 zcmV-Z39R;sP)Px;4M{{nRCt{2olk5PMI6V!FQ8TaL<|y05Vj>oP6kOl62*|{i3k@;+(w0x7!zGU zuTV8#Db;=QV%<`Z{EC_*_qwhf3N#V zNO$+m&dlz9`OVDlH?s@W)YQ~;D~-Gga=l=|Bz@C&a;sZSeq{DgO$8Q5Ex_);`a`rW zG@fo3-sS#50HF7fUTbCcH=jQZ6;>Xej>t@fl0}|nh6oKkeGcZYh1cHG7hYdh`y*?I z8UQdfJJPW~vUW(P+QRbzpy@mE6Oy75g>5n9SymCSmhH(eKLr3>*?Rz4?GGIMJ-dq$ z=!yz(X_lo{3D*mvZQ1|Mthn4iNG+Syd?PDG#l`Q(Ff=;?Adz5sQF82?%S+=B@TCIuEjj75rtwYmy8paPv^uUX1(rng6kXM7`mn1tQ zk_t{oU|EPN4r&QWpDwzu#)9J?N?H0&HtI#1RH5ido{8$F1Jk4m`*19Aoq5^}76Jbs zh7%r|zN6oVE34Rmur6%<=yrlS^27Y7nWcTay!&^6T4Y5EOc(Z^#XgWS3r$4Y`Z9wD zQD3nwFB{@>y&!TcPzw>)RKBt2dg^j*vgYG)0G*b(r_X83Ukkwc=9CYkYGR{U6dfQI z9w51QA`x==iHP+%mQ7?VRs>g7v9Yk%kfL8l(TSj_$}oz+OpI=f9^9?B_L-cTJG|g1 zwEmmVpN{TJ?T1r9trZa-D<+wE(uDOIeA8MaW0Mhn@NHAD2Xi~5!!-n zp?&_)5$SJtKRcH?|45XaLzxa_=;+k-hN62Yya8#OqB5a-EomYR8htcn-ZDR2+9p-U zN~us;FvGkfw@AkWFr4l28u`15{5`30&J2L9qym4-61iS5&g3uR5XoaSu0S2p6&z_$ z`r+aPw{6=t0A|7my(xRPt+IOQui?eKTG|cC62x0o59sT0kEyB_C z9p3dJ5+1;bk3FA9H`1VrnU*=yU_vc80TPEVKYAC&S{3557HODlgpE$wnotTK+G2?n zT+?@s({0xa?g046V%>TH&?ft^#eA)hXQW|hcBB*$28!zi7@Jh5$vo1~^qrHg7fg}e zuZ&9*a|i%jFZjA-1Bi&MBMm^--s`b417@4HH}+&h>&u z+nR=MiY%z$2M+WY*=N(K^5{6G5TVxjk>gh<0|R8?tGk-#Cyg`=@M|a#-Xo(4n3SgP z{7f=<9xXpzuPnU*(TKGm61zYwj8?V%a4JmWqpSP(3y<$vI4(TS!irHN(h%L-#Dj*W z@5~@{4#V|==VFr2Fx$P7G`(o`=Zd5U(*28qg0k6BMpt7 zJ}2t)s4QKa$aEqN6q>Gw2v5hd=|Jnx_!VnEoP?4`8al-$YZl7{d(ZL`+*xLOJNYN# z5VJj#O;yAc8EL@mNLwFH)ahoSA{%vo1HJ*UAr$1n4;}>2vRFL4<#X1o0{}dG{moR@ zz>~@kmjU|#Tq4`586UkmnYmuD9Yma@Uzv&`A`KlY-0N!ICD$|uJmfG~48P^Nwov{(M=mnWy z=X$|z>b9{#y{4g^2Z(JQBm0$E)6n#tlK|j)!Ap?$=S=7&e=oUS5QWHSIcX{Tnuh5U zC))OJZ2k@auw}_p!t`_Z@8R2bU+*|RCP=Fy$(n|xfc6B%%A<;?6d7q4BJYN?%@@N1 z@re{r3r3sLf97uk0FJCbql`2#vtBxUnnm~FbO#V7M9sA81*@9AGpu=Dk&y;%KOD>S z#6;VEO9Y+POT^BjrvLyyUiqo*_|02k@aw%lZcES2Ji+$hTYd)s@Z$Ox@~V;+qBRYC$2rk7C1%~jup~)zoSo3g<#7qX)4F9cc?M`LJJdpR zLA21%#^qyDY+QNl%bAtu(EbxYKW^RQYXAV7mTdxn4of$8{~iF~>c3Y30KeS+we9zn z_Z|VzY4Mi*_b341?I*9-jUrS00rYxTiZRuJ#zAqOyuWhn%%*vVu8Pqkxj#ia#PXZR-3keH; zds3>G*~kP}#>dlLO!G+NE_%g|ZwTaBgiBUlRmRw7%d;-Psq>573u z>N+$LeTuv*;QMcYrKvqS!EsYjWRYhTpn_vVT|Ir_byjJgTDD9C$C7krhA!PGG7&_0 z{6gZ&?DIkcm(V)4g|}FQ*6rl>5KRSG3#_K5rlzJ^{0}WV>4vxNEHVH9002ovPDHLk FV1g7~g);yE literal 0 HcmV?d00001 diff --git a/Resources/Textures/Interface/Paper/paper_heading_postage_stamp.svg.96dpi.png.yml b/Resources/Textures/Interface/Paper/paper_heading_postage_stamp.svg.96dpi.png.yml new file mode 100644 index 0000000000..5c43e23305 --- /dev/null +++ b/Resources/Textures/Interface/Paper/paper_heading_postage_stamp.svg.96dpi.png.yml @@ -0,0 +1,2 @@ +sample: + filter: true diff --git a/Resources/Textures/Objects/Storage/boxes.rsi/envelope.png b/Resources/Textures/Objects/Storage/boxes.rsi/envelope.png new file mode 100644 index 0000000000000000000000000000000000000000..93d52099fc2feb4c11840f0a4caf5dcbc41e18ca GIT binary patch literal 158 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdz#^NA%Cx&(BWL^R}5uPrNArY-_ zFFJBH81T4U)QYnzZg_HImzGA?jFgx4yMty)UNU50IB;M0CVSep{de76vYt)THQ4$4 zsm@B1^tEmCnN{y{)n2`IKqrtlU-SjrcCL{B(hMJ-FesFWEL&Fa6yy>HPgg&ebxsLQ E04{1c0ssI2 literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Storage/boxes.rsi/meta.json b/Resources/Textures/Objects/Storage/boxes.rsi/meta.json index 6963a9cdad..cdae38099d 100644 --- a/Resources/Textures/Objects/Storage/boxes.rsi/meta.json +++ b/Resources/Textures/Objects/Storage/boxes.rsi/meta.json @@ -220,6 +220,9 @@ }, { "name": "vials" + }, + { + "name": "envelope" } ] } From ca8ee5fb7759923066a51dce6d88ec55f566392b Mon Sep 17 00:00:00 2001 From: PJBot Date: Tue, 30 Jul 2024 01:50:11 +0000 Subject: [PATCH 52/89] Automatic changelog update --- Resources/Changelog/Changelog.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 2bd96473dd..63513d85c3 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: Dezzzix - changes: - - message: Goldschlager empty bottle renamed to Gildlager empty bottle - type: Tweak - id: 6505 - time: '2024-05-01T15:24:05.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/27581 - author: FungiFellow changes: - message: Grilles now take Structural Damage @@ -3778,3 +3771,10 @@ id: 7004 time: '2024-07-30T01:22:17.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/30474 +- author: themias + changes: + - message: Added envelopes to the PTech and bureaucracy crate + type: Add + id: 7005 + time: '2024-07-30T01:49:05.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/30298 From 18370c3d1c7a599153fa71b5ca6037579edfd975 Mon Sep 17 00:00:00 2001 From: TheKittehJesus <29379890+SamGithubAccount@users.noreply.github.com> Date: Mon, 29 Jul 2024 21:14:11 -0500 Subject: [PATCH 53/89] Four cooking recipes changed to use liquid egg instead of whole egg, and 5u of milk added to cake batter (#30262) * Changed four cooking recipes to use egg fluid instead of whole eggs, see issue #30123 * Added 5u of milk to cake batter due to it becoming a subset of brownie recipe and occurring in beaker --- Resources/Prototypes/Recipes/Cooking/meal_recipes.yml | 10 ++++++---- Resources/Prototypes/Recipes/Reactions/food.yml | 2 ++ 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/Resources/Prototypes/Recipes/Cooking/meal_recipes.yml b/Resources/Prototypes/Recipes/Cooking/meal_recipes.yml index b092005599..3c750e0190 100644 --- a/Resources/Prototypes/Recipes/Cooking/meal_recipes.yml +++ b/Resources/Prototypes/Recipes/Cooking/meal_recipes.yml @@ -646,12 +646,13 @@ name: chow mein recipe result: FoodNoodlesChowmein time: 10 + reagents: + Egg: 6 solids: FoodNoodlesBoiled: 1 FoodEggplant: 1 FoodCarrot: 1 FoodCorn: 1 - FoodEgg: 1 - type: microwaveMealRecipe id: RecipeOatmeal @@ -711,9 +712,10 @@ name: egg-fried rice recipe result: FoodRiceEgg time: 15 + reagents: + Egg: 6 solids: FoodRiceBoiled: 1 - FoodEgg: 1 FoodCarrot: 1 - type: microwaveMealRecipe @@ -1447,10 +1449,10 @@ reagents: Flour: 15 Sugar: 30 + Egg: 18 solids: FoodButter: 2 FoodSnackChocolateBar: 2 - FoodEgg: 3 #Donks i guess - type: microwaveMealRecipe @@ -1887,10 +1889,10 @@ reagents: Flour: 15 Sugar: 30 + Egg: 18 solids: FoodCannabisButter: 2 FoodSnackChocolateBar: 2 - FoodEgg: 3 - type: microwaveMealRecipe id: RecipeCornInButter diff --git a/Resources/Prototypes/Recipes/Reactions/food.yml b/Resources/Prototypes/Recipes/Reactions/food.yml index 5080039569..ce89131c7b 100644 --- a/Resources/Prototypes/Recipes/Reactions/food.yml +++ b/Resources/Prototypes/Recipes/Reactions/food.yml @@ -84,6 +84,8 @@ amount: 12 Sugar: amount: 5 + Milk: + amount: 5 effects: - !type:CreateEntityReactionEffect entity: FoodCakeBatter From 2f42e1d18e0b5d34e07f4c7c08046431e1ba89bd Mon Sep 17 00:00:00 2001 From: nikthechampiongr <32041239+nikthechampiongr@users.noreply.github.com> Date: Tue, 30 Jul 2024 05:14:34 +0300 Subject: [PATCH 54/89] Vanquish inaccurate docs (#30449) --- Content.Server/Preferences/Managers/ServerPreferencesManager.cs | 2 -- 1 file changed, 2 deletions(-) diff --git a/Content.Server/Preferences/Managers/ServerPreferencesManager.cs b/Content.Server/Preferences/Managers/ServerPreferencesManager.cs index 8de458b6ee..2583ed0221 100644 --- a/Content.Server/Preferences/Managers/ServerPreferencesManager.cs +++ b/Content.Server/Preferences/Managers/ServerPreferencesManager.cs @@ -250,7 +250,6 @@ namespace Content.Server.Preferences.Managers /// /// Retrieves preferences for the given username from storage. - /// Creates and saves default preferences if they are not found, then returns them. /// public PlayerPreferences GetPreferences(NetUserId userId) { @@ -265,7 +264,6 @@ namespace Content.Server.Preferences.Managers /// /// Retrieves preferences for the given username from storage or returns null. - /// Creates and saves default preferences if they are not found, then returns them. /// public PlayerPreferences? GetPreferencesOrNull(NetUserId? userId) { From 3104215ced23bd486a35f2beee1d653800a8d059 Mon Sep 17 00:00:00 2001 From: PJBot Date: Tue, 30 Jul 2024 02:15:17 +0000 Subject: [PATCH 55/89] Automatic changelog update --- Resources/Changelog/Changelog.yml | 17 ++++++++++------- 1 file changed, 10 insertions(+), 7 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 63513d85c3..5cda1fc519 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: FungiFellow - changes: - - message: Grilles now take Structural Damage - type: Tweak - id: 6506 - time: '2024-05-01T22:23:42.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/27596 - author: lzk228 changes: - message: Immovable rod announce now happens at the end of event. @@ -3778,3 +3771,13 @@ id: 7005 time: '2024-07-30T01:49:05.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/30298 +- author: TheKittehJesus + changes: + - message: The recipe for chow mein, egg-fried rice, and both brownies now use liquid + egg instead of a whole egg. + type: Tweak + - message: Cake batter now also requires 5u of milk + type: Tweak + id: 7006 + time: '2024-07-30T02:14:11.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/30262 From 031eb9606c43bcdb1e53aec5345d0a45f4ce6460 Mon Sep 17 00:00:00 2001 From: Plykiya <58439124+Plykiya@users.noreply.github.com> Date: Mon, 29 Jul 2024 19:17:27 -0700 Subject: [PATCH 56/89] Make magic mirror do-after longer, add popups to notify the target (#30366) * Make magic mirror do-after longer, add popups to notify the target * Turns out I do have access to the user * More detailed popups * Helmets protecc --------- Co-authored-by: plykiya --- .../MagicMirror/MagicMirrorSystem.cs | 147 +++++++++++++++++- .../MagicMirror/MagicMirrorComponent.cs | 16 +- .../components/magic-mirror-component.ftl | 14 +- 3 files changed, 164 insertions(+), 13 deletions(-) diff --git a/Content.Server/MagicMirror/MagicMirrorSystem.cs b/Content.Server/MagicMirror/MagicMirrorSystem.cs index 8d8a6bfa3b..f4f889e549 100644 --- a/Content.Server/MagicMirror/MagicMirrorSystem.cs +++ b/Content.Server/MagicMirror/MagicMirrorSystem.cs @@ -4,8 +4,12 @@ using Content.Server.Humanoid; using Content.Shared.DoAfter; using Content.Shared.Humanoid; using Content.Shared.Humanoid.Markings; +using Content.Shared.IdentityManagement; using Content.Shared.Interaction; +using Content.Shared.Inventory; using Content.Shared.MagicMirror; +using Content.Shared.Popups; +using Content.Shared.Tag; using Robust.Shared.Audio.Systems; namespace Content.Server.MagicMirror; @@ -19,6 +23,9 @@ public sealed class MagicMirrorSystem : SharedMagicMirrorSystem [Dependency] private readonly DoAfterSystem _doAfterSystem = default!; [Dependency] private readonly MarkingManager _markings = default!; [Dependency] private readonly HumanoidAppearanceSystem _humanoid = default!; + [Dependency] private readonly SharedPopupSystem _popup = default!; + [Dependency] private readonly InventorySystem _inventory = default!; + [Dependency] private readonly TagSystem _tagSystem = default!; public override void Initialize() { @@ -46,9 +53,26 @@ public sealed class MagicMirrorSystem : SharedMagicMirrorSystem if (component.Target is not { } target) return; + // Check if the target getting their hair altered has any clothes that hides their hair + if (CheckHeadSlotOrClothes(message.Actor, component.Target.Value)) + { + _popup.PopupEntity( + component.Target == message.Actor + ? Loc.GetString("magic-mirror-blocked-by-hat-self") + : Loc.GetString("magic-mirror-blocked-by-hat-self-target"), + message.Actor, + message.Actor, + PopupType.Medium); + return; + } + _doAfterSystem.Cancel(component.DoAfter); component.DoAfter = null; + var doafterTime = component.SelectSlotTime; + if (component.Target == message.Actor) + doafterTime /= 3; + var doAfter = new MagicMirrorSelectDoAfterEvent() { Category = message.Category, @@ -56,7 +80,7 @@ public sealed class MagicMirrorSystem : SharedMagicMirrorSystem Marking = message.Marking, }; - _doAfterSystem.TryStartDoAfter(new DoAfterArgs(EntityManager, message.Actor, component.SelectSlotTime, doAfter, uid, target: target, used: uid) + _doAfterSystem.TryStartDoAfter(new DoAfterArgs(EntityManager, message.Actor, doafterTime, doAfter, uid, target: target, used: uid) { DistanceThreshold = SharedInteractionSystem.InteractionRange, BreakOnDamage = true, @@ -66,6 +90,15 @@ public sealed class MagicMirrorSystem : SharedMagicMirrorSystem }, out var doAfterId); + if (component.Target == message.Actor) + { + _popup.PopupEntity(Loc.GetString("magic-mirror-change-slot-self"), component.Target.Value, component.Target.Value, PopupType.Medium); + } + else + { + _popup.PopupEntity(Loc.GetString("magic-mirror-change-slot-target", ("user", Identity.Name(message.Actor, EntityManager))), component.Target.Value, component.Target.Value, PopupType.Medium); + } + component.DoAfter = doAfterId; _audio.PlayPvs(component.ChangeHairSound, uid); } @@ -102,9 +135,26 @@ public sealed class MagicMirrorSystem : SharedMagicMirrorSystem if (component.Target is not { } target) return; + // Check if the target getting their hair altered has any clothes that hides their hair + if (CheckHeadSlotOrClothes(message.Actor, component.Target.Value)) + { + _popup.PopupEntity( + component.Target == message.Actor + ? Loc.GetString("magic-mirror-blocked-by-hat-self") + : Loc.GetString("magic-mirror-blocked-by-hat-self-target"), + message.Actor, + message.Actor, + PopupType.Medium); + return; + } + _doAfterSystem.Cancel(component.DoAfter); component.DoAfter = null; + var doafterTime = component.ChangeSlotTime; + if (component.Target == message.Actor) + doafterTime /= 3; + var doAfter = new MagicMirrorChangeColorDoAfterEvent() { Category = message.Category, @@ -112,7 +162,7 @@ public sealed class MagicMirrorSystem : SharedMagicMirrorSystem Colors = message.Colors, }; - _doAfterSystem.TryStartDoAfter(new DoAfterArgs(EntityManager, message.Actor, component.ChangeSlotTime, doAfter, uid, target: target, used: uid) + _doAfterSystem.TryStartDoAfter(new DoAfterArgs(EntityManager, message.Actor, doafterTime, doAfter, uid, target: target, used: uid) { BreakOnDamage = true, BreakOnMove = true, @@ -121,6 +171,15 @@ public sealed class MagicMirrorSystem : SharedMagicMirrorSystem }, out var doAfterId); + if (component.Target == message.Actor) + { + _popup.PopupEntity(Loc.GetString("magic-mirror-change-color-self"), component.Target.Value, component.Target.Value, PopupType.Medium); + } + else + { + _popup.PopupEntity(Loc.GetString("magic-mirror-change-color-target", ("user", Identity.Name(message.Actor, EntityManager))), component.Target.Value, component.Target.Value, PopupType.Medium); + } + component.DoAfter = doAfterId; } private void OnChangeColorDoAfter(EntityUid uid, MagicMirrorComponent component, MagicMirrorChangeColorDoAfterEvent args) @@ -156,16 +215,33 @@ public sealed class MagicMirrorSystem : SharedMagicMirrorSystem if (component.Target is not { } target) return; + // Check if the target getting their hair altered has any clothes that hides their hair + if (CheckHeadSlotOrClothes(message.Actor, component.Target.Value)) + { + _popup.PopupEntity( + component.Target == message.Actor + ? Loc.GetString("magic-mirror-blocked-by-hat-self") + : Loc.GetString("magic-mirror-blocked-by-hat-self-target"), + message.Actor, + message.Actor, + PopupType.Medium); + return; + } + _doAfterSystem.Cancel(component.DoAfter); component.DoAfter = null; + var doafterTime = component.RemoveSlotTime; + if (component.Target == message.Actor) + doafterTime /= 3; + var doAfter = new MagicMirrorRemoveSlotDoAfterEvent() { Category = message.Category, Slot = message.Slot, }; - _doAfterSystem.TryStartDoAfter(new DoAfterArgs(EntityManager, message.Actor, component.RemoveSlotTime, doAfter, uid, target: target, used: uid) + _doAfterSystem.TryStartDoAfter(new DoAfterArgs(EntityManager, message.Actor, doafterTime, doAfter, uid, target: target, used: uid) { DistanceThreshold = SharedInteractionSystem.InteractionRange, BreakOnDamage = true, @@ -174,6 +250,15 @@ public sealed class MagicMirrorSystem : SharedMagicMirrorSystem }, out var doAfterId); + if (component.Target == message.Actor) + { + _popup.PopupEntity(Loc.GetString("magic-mirror-remove-slot-self"), component.Target.Value, component.Target.Value, PopupType.Medium); + } + else + { + _popup.PopupEntity(Loc.GetString("magic-mirror-remove-slot-target", ("user", Identity.Name(message.Actor, EntityManager))), component.Target.Value, component.Target.Value, PopupType.Medium); + } + component.DoAfter = doAfterId; _audio.PlayPvs(component.ChangeHairSound, uid); } @@ -210,15 +295,32 @@ public sealed class MagicMirrorSystem : SharedMagicMirrorSystem if (component.Target == null) return; + // Check if the target getting their hair altered has any clothes that hides their hair + if (CheckHeadSlotOrClothes(message.Actor, component.Target.Value)) + { + _popup.PopupEntity( + component.Target == message.Actor + ? Loc.GetString("magic-mirror-blocked-by-hat-self") + : Loc.GetString("magic-mirror-blocked-by-hat-self-target"), + message.Actor, + message.Actor, + PopupType.Medium); + return; + } + _doAfterSystem.Cancel(component.DoAfter); component.DoAfter = null; + var doafterTime = component.AddSlotTime; + if (component.Target == message.Actor) + doafterTime /= 3; + var doAfter = new MagicMirrorAddSlotDoAfterEvent() { Category = message.Category, }; - _doAfterSystem.TryStartDoAfter(new DoAfterArgs(EntityManager, message.Actor, component.AddSlotTime, doAfter, uid, target: component.Target.Value, used: uid) + _doAfterSystem.TryStartDoAfter(new DoAfterArgs(EntityManager, message.Actor, doafterTime, doAfter, uid, target: component.Target.Value, used: uid) { BreakOnDamage = true, BreakOnMove = true, @@ -227,6 +329,15 @@ public sealed class MagicMirrorSystem : SharedMagicMirrorSystem }, out var doAfterId); + if (component.Target == message.Actor) + { + _popup.PopupEntity(Loc.GetString("magic-mirror-add-slot-self"), component.Target.Value, component.Target.Value, PopupType.Medium); + } + else + { + _popup.PopupEntity(Loc.GetString("magic-mirror-add-slot-target", ("user", Identity.Name(message.Actor, EntityManager))), component.Target.Value, component.Target.Value, PopupType.Medium); + } + component.DoAfter = doAfterId; _audio.PlayPvs(component.ChangeHairSound, uid); } @@ -265,4 +376,32 @@ public sealed class MagicMirrorSystem : SharedMagicMirrorSystem ent.Comp.Target = null; Dirty(ent); } + + /// + /// Helper function that checks if the wearer has anything on their head + /// Or if they have any clothes that hides their hair + /// + private bool CheckHeadSlotOrClothes(EntityUid user, EntityUid target) + { + if (TryComp(target, out var inventoryComp)) + { + // any hat whatsoever will block haircutting + if (_inventory.TryGetSlotEntity(target, "head", out var hat, inventoryComp)) + { + return true; + } + + // maybe there's some kind of armor that has the HidesHair tag as well, so check every slot for it + var slots = _inventory.GetSlotEnumerator((target, inventoryComp), SlotFlags.WITHOUT_POCKET); + while (slots.MoveNext(out var slot)) + { + if (slot.ContainedEntity != null && _tagSystem.HasTag(slot.ContainedEntity.Value, "HidesHair")) + { + return true; + } + } + } + + return false; + } } diff --git a/Content.Shared/MagicMirror/MagicMirrorComponent.cs b/Content.Shared/MagicMirror/MagicMirrorComponent.cs index 95b1736979..97738be228 100644 --- a/Content.Shared/MagicMirror/MagicMirrorComponent.cs +++ b/Content.Shared/MagicMirror/MagicMirrorComponent.cs @@ -20,28 +20,28 @@ public sealed partial class MagicMirrorComponent : Component public EntityUid? Target; /// - /// doafter time required to add a new slot + /// Do after time to add a new slot, adding hair to a person /// [DataField, ViewVariables(VVAccess.ReadWrite)] - public TimeSpan AddSlotTime = TimeSpan.FromSeconds(5); + public TimeSpan AddSlotTime = TimeSpan.FromSeconds(7); /// - /// doafter time required to remove a existing slot + /// Do after time to remove a slot, removing hair from a person /// [DataField, ViewVariables(VVAccess.ReadWrite)] - public TimeSpan RemoveSlotTime = TimeSpan.FromSeconds(2); + public TimeSpan RemoveSlotTime = TimeSpan.FromSeconds(7); /// - /// doafter time required to change slot + /// Do after time to change a person's hairstyle /// [DataField, ViewVariables(VVAccess.ReadWrite)] - public TimeSpan SelectSlotTime = TimeSpan.FromSeconds(3); + public TimeSpan SelectSlotTime = TimeSpan.FromSeconds(7); /// - /// doafter time required to recolor slot + /// Do after time to change a person's hair color /// [DataField, ViewVariables(VVAccess.ReadWrite)] - public TimeSpan ChangeSlotTime = TimeSpan.FromSeconds(1); + public TimeSpan ChangeSlotTime = TimeSpan.FromSeconds(7); /// /// Sound emitted when slots are changed diff --git a/Resources/Locale/en-US/character-appearance/components/magic-mirror-component.ftl b/Resources/Locale/en-US/character-appearance/components/magic-mirror-component.ftl index e9018171a4..0906cccee5 100644 --- a/Resources/Locale/en-US/character-appearance/components/magic-mirror-component.ftl +++ b/Resources/Locale/en-US/character-appearance/components/magic-mirror-component.ftl @@ -1,3 +1,15 @@ magic-mirror-component-activate-user-has-no-hair = You can't have any hair! -magic-mirror-window-title = Magic Mirror \ No newline at end of file +magic-mirror-window-title = Magic Mirror +magic-mirror-add-slot-self = You're giving yourself some hair. +magic-mirror-remove-slot-self = You're removing some of your hair. +magic-mirror-change-slot-self = You're changing your hairstyle. +magic-mirror-change-color-self = You're changing your hair color. + +magic-mirror-add-slot-target = Hair is being added to you by {$user}. +magic-mirror-remove-slot-target = Your hair is being cut off by {$user}. +magic-mirror-change-slot-target = Your hairstyle is being changed by {$user}. +magic-mirror-change-color-target = Your hair color is being changed by {$user}. + +magic-mirror-blocked-by-hat-self = You need to take off your hat before changing your hair. +magic-mirror-blocked-by-hat-self-target = You try to change their hair but their clothes gets in the way. From cc3d6441be9cb0dd510b9100e031a4be931c09ea Mon Sep 17 00:00:00 2001 From: PJBot Date: Tue, 30 Jul 2024 02:18:33 +0000 Subject: [PATCH 57/89] Automatic changelog update --- Resources/Changelog/Changelog.yml | 19 ++++++++++++------- 1 file changed, 12 insertions(+), 7 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 5cda1fc519..30cdab82b6 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: lzk228 - changes: - - message: Immovable rod announce now happens at the end of event. - type: Tweak - id: 6507 - time: '2024-05-01T22:26:22.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/27587 - author: metalgearsloth changes: - message: Fix server performance dropping significantly. @@ -3781,3 +3774,15 @@ id: 7006 time: '2024-07-30T02:14:11.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/30262 +- author: Plykiya + changes: + - message: Wearing something that covers your head will prevent your hair from being + cut. + type: Add + - message: You now see a popup when your hair is being altered. + type: Add + - message: The doafter for altering other people's hair now takes seven seconds. + type: Tweak + id: 7007 + time: '2024-07-30T02:17:28.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/30366 From 669cc55ba477c19fd17ebaf22534ad127d4305b7 Mon Sep 17 00:00:00 2001 From: osjarw <62134478+osjarw@users.noreply.github.com> Date: Tue, 30 Jul 2024 05:18:53 +0300 Subject: [PATCH 58/89] Allow the creation of recursive HTNs (#30138) Allow recursive HTNs --- Content.IntegrationTests/Tests/NPC/NPCTest.cs | 4 ++++ Content.Server/NPC/HTN/HTNCompoundPrototype.cs | 6 ++++++ Content.Server/NPC/HTN/HTNPlanJob.cs | 5 +++++ Content.Server/NPC/HTN/HTNTask.cs | 6 ++++++ 4 files changed, 21 insertions(+) diff --git a/Content.IntegrationTests/Tests/NPC/NPCTest.cs b/Content.IntegrationTests/Tests/NPC/NPCTest.cs index 83321fe613..064fd6c5bf 100644 --- a/Content.IntegrationTests/Tests/NPC/NPCTest.cs +++ b/Content.IntegrationTests/Tests/NPC/NPCTest.cs @@ -45,6 +45,10 @@ public sealed class NPCTest var count = counts.GetOrNew(compound.ID); count++; + // Compound tasks marked with AllowRecursion are only evaluated once + if (counts.ContainsKey(compound.ID) && compound.AllowRecursion) + continue; + Assert.That(count, Is.LessThan(50)); counts[compound.ID] = count; Count(protoManager.Index(compoundTask.Task), counts, htnSystem, protoManager); diff --git a/Content.Server/NPC/HTN/HTNCompoundPrototype.cs b/Content.Server/NPC/HTN/HTNCompoundPrototype.cs index 29cfb96f97..69f8441973 100644 --- a/Content.Server/NPC/HTN/HTNCompoundPrototype.cs +++ b/Content.Server/NPC/HTN/HTNCompoundPrototype.cs @@ -12,4 +12,10 @@ public sealed partial class HTNCompoundPrototype : IPrototype [DataField("branches", required: true)] public List Branches = new(); + + /// + /// Exclude this compound task from the CompoundRecursion integration test. + /// + [DataField] + public bool AllowRecursion = false; } diff --git a/Content.Server/NPC/HTN/HTNPlanJob.cs b/Content.Server/NPC/HTN/HTNPlanJob.cs index 8158303524..9c62f5840a 100644 --- a/Content.Server/NPC/HTN/HTNPlanJob.cs +++ b/Content.Server/NPC/HTN/HTNPlanJob.cs @@ -63,8 +63,13 @@ public sealed class HTNPlanJob : Job // How many primitive tasks we've added since last record. var primitiveCount = 0; + int tasksProcessed = 0; + while (tasksToProcess.TryDequeue(out var currentTask)) { + if (tasksProcessed++ > _rootTask.MaximumTasks) + throw new Exception("HTN Planner exceeded maximum tasks"); + switch (currentTask) { case HTNCompoundTask compound: diff --git a/Content.Server/NPC/HTN/HTNTask.cs b/Content.Server/NPC/HTN/HTNTask.cs index 0f7c0a377e..c09849d079 100644 --- a/Content.Server/NPC/HTN/HTNTask.cs +++ b/Content.Server/NPC/HTN/HTNTask.cs @@ -3,4 +3,10 @@ namespace Content.Server.NPC.HTN; [ImplicitDataDefinitionForInheritors] public abstract partial class HTNTask { + /// + /// Limit the amount of tasks the planner considers. Exceeding this value sleeps the NPC and throws an exception. + /// The expected way to hit this limit is with badly written recursive tasks. + /// + [DataField] + public int MaximumTasks = 1000; } From ad81c30dcb8c5774fbb25ace76b6f5ba3b9867a5 Mon Sep 17 00:00:00 2001 From: Cojoke <83733158+Cojoke-dot@users.noreply.github.com> Date: Mon, 29 Jul 2024 21:48:28 -0500 Subject: [PATCH 59/89] Lets Hamlet Dance (#30478) Allow Ghost Roles that have NPC to turn on Combat Mode --- Content.Shared/CombatMode/SharedCombatModeSystem.cs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Content.Shared/CombatMode/SharedCombatModeSystem.cs b/Content.Shared/CombatMode/SharedCombatModeSystem.cs index 60d1362bb0..5eed8ee242 100644 --- a/Content.Shared/CombatMode/SharedCombatModeSystem.cs +++ b/Content.Shared/CombatMode/SharedCombatModeSystem.cs @@ -1,4 +1,5 @@ using Content.Shared.Actions; +using Content.Shared.Mind; using Content.Shared.MouseRotator; using Content.Shared.Movement.Components; using Content.Shared.Popups; @@ -13,6 +14,7 @@ public abstract class SharedCombatModeSystem : EntitySystem [Dependency] private readonly INetManager _netMan = default!; [Dependency] private readonly SharedActionsSystem _actionsSystem = default!; [Dependency] private readonly SharedPopupSystem _popup = default!; + [Dependency] private readonly SharedMindSystem _mind = default!; public override void Initialize() { @@ -82,7 +84,7 @@ public abstract class SharedCombatModeSystem : EntitySystem _actionsSystem.SetToggled(component.CombatToggleActionEntity, component.IsInCombatMode); // Change mouse rotator comps if flag is set - if (!component.ToggleMouseRotator || IsNpc(entity)) + if (!component.ToggleMouseRotator || IsNpc(entity) && !_mind.TryGetMind(entity, out _, out _)) return; SetMouseRotatorComponents(entity, value); From 16ec6443f6959262cb8a387b0223db6fff1a76dc Mon Sep 17 00:00:00 2001 From: PJBot Date: Tue, 30 Jul 2024 02:49:34 +0000 Subject: [PATCH 60/89] Automatic changelog update --- Resources/Changelog/Changelog.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 30cdab82b6..2a3c77c49a 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: metalgearsloth - changes: - - message: Fix server performance dropping significantly. - type: Fix - id: 6508 - time: '2024-05-02T00:18:38.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/27528 - author: metalgearsloth changes: - message: Fix muzzle flash rotations. @@ -3786,3 +3779,10 @@ id: 7007 time: '2024-07-30T02:17:28.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/30366 +- author: Cojoke-dot + changes: + - message: Hamlet and other ghost rolls can now spin when they enter combat mode + type: Fix + id: 7008 + time: '2024-07-30T02:48:28.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/30478 From 92210ff51bd61cb7c4efd118a99b17e56fdcf162 Mon Sep 17 00:00:00 2001 From: themias <89101928+themias@users.noreply.github.com> Date: Mon, 29 Jul 2024 23:04:17 -0400 Subject: [PATCH 61/89] Fix ACC wire light not appearing (#30453) --- Content.Server/Access/LogWireAction.cs | 2 +- Content.Shared/Access/SharedAccessWire.cs | 9 +++++++++ 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/Content.Server/Access/LogWireAction.cs b/Content.Server/Access/LogWireAction.cs index 1e97d5c9d6..837cf420d5 100644 --- a/Content.Server/Access/LogWireAction.cs +++ b/Content.Server/Access/LogWireAction.cs @@ -25,7 +25,7 @@ public sealed partial class LogWireAction : ComponentWireAction AccessWireActionKey.Status; + public override object StatusKey => LogWireActionKey.Status; public override void Initialize() { diff --git a/Content.Shared/Access/SharedAccessWire.cs b/Content.Shared/Access/SharedAccessWire.cs index d5d1b48c70..a0bb316028 100644 --- a/Content.Shared/Access/SharedAccessWire.cs +++ b/Content.Shared/Access/SharedAccessWire.cs @@ -10,3 +10,12 @@ public enum AccessWireActionKey : byte Pulsed, PulseCancel } + +[Serializable, NetSerializable] +public enum LogWireActionKey : byte +{ + Key, + Status, + Pulsed, + PulseCancel +} From fc65acc7a05197bdcd7a35ec5fc1b2b3a98ecfed Mon Sep 17 00:00:00 2001 From: PJBot Date: Tue, 30 Jul 2024 03:05:23 +0000 Subject: [PATCH 62/89] Automatic changelog update --- Resources/Changelog/Changelog.yml | 16 +++++++--------- 1 file changed, 7 insertions(+), 9 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 2a3c77c49a..39a40a9417 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,13 +1,4 @@ Entries: -- author: metalgearsloth - changes: - - message: Fix muzzle flash rotations. - type: Fix - - message: Fix large client performance drop. - type: Fix - id: 6509 - time: '2024-05-02T02:40:07.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/27533 - author: ElectroJr changes: - message: Fix gas analyzers not opening their UI when used in-hand. @@ -3786,3 +3777,10 @@ id: 7008 time: '2024-07-30T02:48:28.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/30478 +- author: themias + changes: + - message: Fixed the ACC wire not appearing in vending machine wire layouts + type: Fix + id: 7009 + time: '2024-07-30T03:04:17.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/30453 From c4c4a934af7655a3c9c936210c9ea5a777ae167e Mon Sep 17 00:00:00 2001 From: Nemanja <98561806+EmoGarbage404@users.noreply.github.com> Date: Tue, 30 Jul 2024 00:03:46 -0400 Subject: [PATCH 63/89] fix lathe screen animations (#30479) --- Content.Client/Lathe/LatheSystem.cs | 28 +++++++---- Content.Shared/Lathe/LatheComponent.cs | 6 +++ .../Entities/Structures/Machines/lathe.yml | 4 ++ .../Machines/autolathe.rsi/meta.json | 34 +++++++++---- .../Machines/autolathe.rsi/unlit-building.png | Bin 0 -> 521 bytes .../Machines/autolathe_hypercon.rsi/meta.json | 34 +++++++++---- .../autolathe_hypercon.rsi/unlit-building.png | Bin 0 -> 859 bytes .../Machines/protolathe.rsi/meta.json | 46 +++++++++++++----- .../protolathe.rsi/unlit-building.png | Bin 0 -> 604 bytes .../protolathe_hypercon.rsi/meta.json | 37 ++++++++++---- .../unlit-building.png | Bin 0 -> 1236 bytes 11 files changed, 138 insertions(+), 51 deletions(-) create mode 100644 Resources/Textures/Structures/Machines/autolathe.rsi/unlit-building.png create mode 100644 Resources/Textures/Structures/Machines/autolathe_hypercon.rsi/unlit-building.png create mode 100644 Resources/Textures/Structures/Machines/protolathe.rsi/unlit-building.png create mode 100644 Resources/Textures/Structures/Machines/protolathe_hypercon.rsi/unlit-building.png diff --git a/Content.Client/Lathe/LatheSystem.cs b/Content.Client/Lathe/LatheSystem.cs index c72f01b39b..386520c198 100644 --- a/Content.Client/Lathe/LatheSystem.cs +++ b/Content.Client/Lathe/LatheSystem.cs @@ -22,21 +22,29 @@ public sealed class LatheSystem : SharedLatheSystem if (args.Sprite == null) return; + // Lathe specific stuff + if (_appearance.TryGetData(uid, LatheVisuals.IsRunning, out var isRunning, args.Component)) + { + if (args.Sprite.LayerMapTryGet(LatheVisualLayers.IsRunning, out var runningLayer) && + component.RunningState != null && + component.IdleState != null) + { + var state = isRunning ? component.RunningState : component.IdleState; + args.Sprite.LayerSetState(runningLayer, state); + } + } + if (_appearance.TryGetData(uid, PowerDeviceVisuals.Powered, out var powered, args.Component) && args.Sprite.LayerMapTryGet(PowerDeviceVisualLayers.Powered, out var powerLayer)) { args.Sprite.LayerSetVisible(powerLayer, powered); - } - // Lathe specific stuff - if (_appearance.TryGetData(uid, LatheVisuals.IsRunning, out var isRunning, args.Component) && - args.Sprite.LayerMapTryGet(LatheVisualLayers.IsRunning, out var runningLayer) && - component.RunningState != null && - component.IdleState != null) - { - var state = isRunning ? component.RunningState : component.IdleState; - args.Sprite.LayerSetAnimationTime(runningLayer, 0f); - args.Sprite.LayerSetState(runningLayer, state); + if (component.UnlitIdleState != null && + component.UnlitRunningState != null) + { + var state = isRunning ? component.UnlitRunningState : component.UnlitIdleState; + args.Sprite.LayerSetState(powerLayer, state); + } } } diff --git a/Content.Shared/Lathe/LatheComponent.cs b/Content.Shared/Lathe/LatheComponent.cs index 88ac8c05bf..5039e78cb0 100644 --- a/Content.Shared/Lathe/LatheComponent.cs +++ b/Content.Shared/Lathe/LatheComponent.cs @@ -39,6 +39,12 @@ namespace Content.Shared.Lathe [DataField] public string? RunningState; + + [DataField] + public string? UnlitIdleState; + + [DataField] + public string? UnlitRunningState; #endregion /// diff --git a/Resources/Prototypes/Entities/Structures/Machines/lathe.yml b/Resources/Prototypes/Entities/Structures/Machines/lathe.yml index 66f4f684e9..8abcc657cd 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/lathe.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/lathe.yml @@ -115,6 +115,8 @@ - type: Lathe idleState: icon runningState: building + unlitIdleState: unlit + unlitRunningState: unlit-building staticRecipes: - Wirecutter - Igniter @@ -266,6 +268,8 @@ - type: Lathe idleState: icon runningState: building + unlitIdleState: unlit + unlitRunningState: unlit-building staticRecipes: - LargeBeaker - Dropper diff --git a/Resources/Textures/Structures/Machines/autolathe.rsi/meta.json b/Resources/Textures/Structures/Machines/autolathe.rsi/meta.json index b53c89c7a6..2e28bba287 100644 --- a/Resources/Textures/Structures/Machines/autolathe.rsi/meta.json +++ b/Resources/Textures/Structures/Machines/autolathe.rsi/meta.json @@ -20,15 +20,31 @@ "name": "building", "delays": [ [ - 0.5, - 0.5, - 0.5, - 0.5, - 0.5, - 0.5, - 0.5, - 0.5, - 0.5 + 0.15, + 0.15, + 0.15, + 0.15, + 0.15, + 0.15, + 0.15, + 0.15, + 0.15 + ] + ] + }, + { + "name": "unlit-building", + "delays": [ + [ + 0.15, + 0.15, + 0.15, + 0.15, + 0.15, + 0.15, + 0.15, + 0.15, + 0.15 ] ] }, diff --git a/Resources/Textures/Structures/Machines/autolathe.rsi/unlit-building.png b/Resources/Textures/Structures/Machines/autolathe.rsi/unlit-building.png new file mode 100644 index 0000000000000000000000000000000000000000..5b17c682dc21acc38e09671d72c55d6c5ef9a2be GIT binary patch literal 521 zcmeAS@N?(olHy`uVBq!ia0vp^2_VeD1|%QND7OGojKx9jP7LeL$-D%z4|}>ehE&XX zd)MBN$x-C^$MzGf8QZ?`wY7xtC-|qju9oHG6+3q1+^sI{0tSs7k3B43&8C@%C7bTx zdF(drsqM6%b+Z&_Pq;t(udv3wHyuFJ!Jt8fH!U|@W^3=KzRZ2k{^%#Ohj-8G&@oTe z*nN6Y>(kA9Lfr%9^{+4cIqUQKkPjRE57d8pe}DhBKHv7(t$zaV6<$s(e_k>5&kNxT zEE|Oj%x*sRJT2;;3nbUhwK)CfQN|&Ym^%F?*KPZMg#BE~wt3rY`!BH;Sx?u`{WEiY z;h{q@@%~r;bl2|R5cTEBt7paOA{Q&O^5lQdzVq{Tk@o+eFMsSmn7D4eyS6;cy&&4b zdFhq;@{2A1XOx$C{rzbOa@vOd&WFr$&;G0VzcZrQwQeKZ)~}4y_WtyI68-)7@_G69 zQ|*L*y2Ozr)Dy{xCl^O)AwAltyeJ2j}jF0$?hYc0Px&6-h)vRCt{2-OW$aa2&_+Z%0vM;(vToh^FJ(f?A{SyD5=Ed zmk#Q!voGf~|LVz+3IILwVt=P~+52339(xJY;#Cz9*_@rQcBu^IZ!g7u?uYe76%kpR zv6p}0_)*~d$LIUs|8U}BvV8x;Z&dH9h)DI*)<17dvjfsv{ZdmAk?G|-8eE^O^8LKH z{O}I2o1cikb3{aHbM}s`LCKe|w*&dt`4I#F0000000000000nT)T!==e!i#LD#m7= zKRY$9PDGMPzR`R@X{`CSQlOKcWih7wH@~4G^WU?Z3-CR>Tdj5s~vlogI9UXTWLw_-;?5^n3o?x4Hx`L780l0HBYg>Bsx^ z?d{oX)_yF#+<%>TJ|J~JKY?&PK0g2bt0yWVvQbFb;`TT0h}4W%?FgnhC|ixtb6*8M_oA=QLJCcYz^!+qK)PQ+I#u7d-|v4pY8IqB9c76 zz^}+3YiD(NYx4nh&t5q!$^HAgDarE-M8ey_=JOK(px*^6+kXH4Bp){x)Ai#m=kIMk zv;O>m@be3nV?TFy?Wu~0Y$bhuLaU#@)a=Kv>}|%*2b{J6(n@>({;uV(49I+d&B>EN l$q&va)Os+V000<#e*ni-<1RzX3)}zz002ovPDHLkV1hu5u`vJu literal 0 HcmV?d00001 diff --git a/Resources/Textures/Structures/Machines/protolathe.rsi/meta.json b/Resources/Textures/Structures/Machines/protolathe.rsi/meta.json index 17832603ef..57f80369d0 100644 --- a/Resources/Textures/Structures/Machines/protolathe.rsi/meta.json +++ b/Resources/Textures/Structures/Machines/protolathe.rsi/meta.json @@ -20,19 +20,39 @@ "name": "building", "delays": [ [ - 0.8, - 0.8, - 0.8, - 0.8, - 0.8, - 0.8, - 0.8, - 0.8, - 0.8, - 0.8, - 0.8, - 0.8, - 0.8 + 0.10, + 0.10, + 0.10, + 0.10, + 0.10, + 0.10, + 0.10, + 0.10, + 0.10, + 0.10, + 0.10, + 0.10, + 0.10 + ] + ] + }, + { + "name": "unlit-building", + "delays": [ + [ + 0.10, + 0.10, + 0.10, + 0.10, + 0.10, + 0.10, + 0.10, + 0.10, + 0.10, + 0.10, + 0.10, + 0.10, + 0.10 ] ] }, diff --git a/Resources/Textures/Structures/Machines/protolathe.rsi/unlit-building.png b/Resources/Textures/Structures/Machines/protolathe.rsi/unlit-building.png new file mode 100644 index 0000000000000000000000000000000000000000..b72d06d65465e7baf9b41d9be12de9b6bfd5ffd5 GIT binary patch literal 604 zcmeAS@N?(olHy`uVBq!ia0vp^4Is?H1|$#LC7uRSjKx9jP7LeL$-HD>U=s6maSW-L z^Y+e0ujoVxwg>vY#mst*d3!swgjz00znHgj^6V0xjt6%vqt(+FI_EiXxq4~!oy$8E zS;Z{tw_G@>r(lWYfBEy3^PcuI*6zRGpmzATE6@%wm}@Ze`{}EjSO2`6bm7CumI z*Z#cv_)5m|Q+TcHzuHOrKk6UI-v09Fba}zRE58|+Ki~W5o8GC*pW~+eZ`}Rho8G2- zw%K)GA3c{^bn5Kf`M1}d`KUCxa=*==qKI|#1vB+bfM)*4i3xk2a!>zw`s0-SC%)c! z_4>-s()a(%1_Jp{9CTQTHf?r?sR_szs2T-=WYE`ryG@Liov|k(6Dq>?5x%D`u4H^j+GT$ z?fyT%?$7i5dO6$j!ad=;<#g?1>lXiJT&1{bSJA4vJ%4`v?0v_6 z{`l$gv;DpgHSPUQo}bOXCG1_@u0LmfGs4YhsBqnNrT=}^zP}8z=eNr*c>MDl^9lAF z)9(B&0kO8rGu+q*VI#Bzgukn^dHLo^9mA!}r*#akvcJ|bFibji&tF~tZ%ISgC4Y8? b2C*OPH7DL_mDhUnfHZo#`njxgN@xNAvt23t literal 0 HcmV?d00001 diff --git a/Resources/Textures/Structures/Machines/protolathe_hypercon.rsi/meta.json b/Resources/Textures/Structures/Machines/protolathe_hypercon.rsi/meta.json index b0326326f9..775b298d5a 100644 --- a/Resources/Textures/Structures/Machines/protolathe_hypercon.rsi/meta.json +++ b/Resources/Textures/Structures/Machines/protolathe_hypercon.rsi/meta.json @@ -20,16 +20,33 @@ "name": "building", "delays": [ [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 + 0.10, + 0.10, + 0.10, + 0.10, + 0.10, + 0.10, + 0.10, + 0.10, + 0.10, + 0.10 + ] + ] + }, + { + "name": "unlit-building", + "delays": [ + [ + 0.10, + 0.10, + 0.10, + 0.10, + 0.10, + 0.10, + 0.10, + 0.10, + 0.10, + 0.10 ] ] }, diff --git a/Resources/Textures/Structures/Machines/protolathe_hypercon.rsi/unlit-building.png b/Resources/Textures/Structures/Machines/protolathe_hypercon.rsi/unlit-building.png new file mode 100644 index 0000000000000000000000000000000000000000..bce4888e2a702546a41a8f8d7ea6c88415b7d9d2 GIT binary patch literal 1236 zcmZvceNYm17{`Ckm+LgbGDoGUX)3dpN;M59sEKbSl&NWiR2Se`1ioa5Ae?QfZBu*E zP7^UtSH8hgqf14s&E@9FTFp^-t~C*B zTQMd6ZYaww;$5|W1#sWy+SaRWi{ZN=(b<|N>^T|NLaaNsI^Hvc%*==Q)&{1Bl@_N^ z{0G*lLb12#)3?$WxcZJt>57s!*64YY?;8~Q1wwnb>paCc19#{VZ7QdrM$!5)PuuX0 zo_yiRb}IywQ&`*i(y+&p^~Cvw!F$AbvKn2n#7-Ry5>aR;`X1t3=MDG^jQyk_vmTx4 zFt^fsqli(V|2mn5Y^{BhSv}&n6|ffGKYcK*@msJ4Sk7zx$3Ytl?ZrBdUPiIgL+wGU zjY8iNe?N~v6b-HxQr3ig=nV}d>?(9`ju}&ShySEkXBB~4YrnkSH*aiHm?dT4%)k_F z>OoV2*H-{Z?p=8MIIYN>sEsl5r#VHlu*(zs`O9ZJWd5={YHZ8RWVRu3o1UNr&k`K8 z{rL;1sjdjsa@~2TIjzwhk3QN7>v})ITGGC$s_hHhYpW51;zrpaW}1f$RST| z4Netl;K2W()9)U3(T6tevhywjBI{wPNhs8>2W?}sC72=RYE}f*0&sA=)+x&kFN9A8+b3f`+HL>SLQk$SY z1PMBJX|da~*;fFy)vY?@1$a7S0F*7Ry=x;|+ zgqS~63UHS*6Qrt^FcF|%3VXSI4U^IIK3a@$;$}^b!CrNjY9PgjocEU0JGobR5|PuF zOu6l-E`&knbLkNR9G{*fBxWa&=R}KFg+*25?|iQ8&AzdGLu_eLI=2J34%L!8Cf;~$ z1N6Ch#RJdtE2q{;$>Q`ZZ|)D&9>6-_1UlASbY?DXr!{5BJNt@4(o{E3p!?XcXq2+A z8z;oMWHHJdMTh&I*k?n^@{YxP(ZB!J+a1^R^9$|2tPMZse{g$w zoK2E@rA1q1LApBL4Y=&yiEoMzr^?C|nowN{wV~&r^67@%GujgOBxN8pR_I{UlxtjnB`^pOg2v tYgo&q21yEeedAFizcPdE`kCrcIfocLW* Date: Mon, 29 Jul 2024 23:40:39 -0500 Subject: [PATCH 64/89] Security biosuit sprite fix (#30151) sec biosuit fix --- .../Bio/security.rsi/equipped-HELMET.png | Bin 1003 -> 968 bytes .../Head/Hoods/Bio/security.rsi/icon.png | Bin 367 -> 396 bytes .../Hoods/Bio/security.rsi/inhand-left.png | Bin 829 -> 920 bytes .../Hoods/Bio/security.rsi/inhand-right.png | Bin 834 -> 922 bytes .../Head/Hoods/Bio/security.rsi/meta.json | 2 +- .../security.rsi/equipped-OUTERCLOTHING.png | Bin 2233 -> 2285 bytes .../OuterClothing/Bio/security.rsi/icon.png | Bin 819 -> 875 bytes .../Bio/security.rsi/inhand-left.png | Bin 723 -> 571 bytes .../Bio/security.rsi/inhand-right.png | Bin 703 -> 576 bytes .../OuterClothing/Bio/security.rsi/meta.json | 2 +- 10 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Resources/Textures/Clothing/Head/Hoods/Bio/security.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/Hoods/Bio/security.rsi/equipped-HELMET.png index d48c6efc300482af2a9181e93633234e46f7738f..71f6196ebc6be2cc2f4fa74f0003c9d1f24fbd80 100644 GIT binary patch delta 947 zcmV;k15Etu2gnDIBYyw^b5ch_0Itp)=>Px&f=NU{RCt{2+OcaJcND#8B4 zs8cLRkqB7I5DhuonB+n>Q%VO}h6t*uTQaoi;Qj##R!RSWE_FbIR1c+;424j&G^sUI zf#xJIc9xS#p~8sR=b%_Va1-Up0*zmwkky?^K9WPA_A+wG8_H+}Kt z=gw+v)jK{ha)KLQf8#6G|D8Xe`iALL(n)>%32U1h-rD=`zQ<~9)%m`#(DNpAJHJu` zrc+7h>g6kxs|J<%e92vpWoERim#+Zyv8Wt=md5mG1!nR@(+(yUm{OZ=#N`fO}IHNsPvcWoEP{=zk6#nyrm|Fxv#Z33@Cu zqa{Y;z1*v3eSQ6v$M>c#D#hyf3aHoXtZiz>)ZGS2p#xzaB;jm_!CW+BFYnvO? z>vg3KsN@H*T3bA}w_#V&kL_*xT3dTw*Qt)LfKVtzb}mb~YEZ}*00@V}02F^IQmz_g z=dy%CA*Btd0qFrX65r-28x>vta9e0K2Jr?at06sxtx+U5q&8`GP|7&QElsJ1$HD;$SC4bIdbMr)phFQujlqxIB1P>qa_NGd? z0hN_yez_Db}ROsCR1Q<=hB)5F3anAKk{J}|%8{`S@FXZn3^X*}b$n#bFpkXCj} zOz?qP{nrPK4!rIlRctk}_4`7MD{jZIGu(J)waWLyP@h#fujMzyCVD_x27o zfz_GJJckdsRdU;2lwh!3qQNDR{NVY#3?86|B-#`w?5nJZ$==;Gf46l*rd55deR=tX zO|dI0<2Rewva>WhW_a@cZ0frb!^N;bgNs4ow`O;ZWBar#0z7Q3EFDk$&n`V6;k+`$ z$@{kCbB(E92|bFY(}m9IZ{Z0uHnhz9oN|2Qzu&Fd%>Tsw{^T=eG5~{m3F8%}6%*M4 zxEHudIp{V>p$OJvihf*T*H9c&-+%o!Lus_~1J7E9sWeK^kK!i@J4>__j9g4zkMz1 zTwRcU_*SvNn6*sj=a(_)xQ)!WZ2n;oWmNZkBD(nRZPHn>>eZ9Y+q6xi zf{HbLdi=R0-@p9!BO>Wa-_fKCrLuK4jCDu8?eVue(0}~?`5T)YnxYs?FEL~>Uh!aF o!5W~zopr0O$wD_y7O^ diff --git a/Resources/Textures/Clothing/Head/Hoods/Bio/security.rsi/icon.png b/Resources/Textures/Clothing/Head/Hoods/Bio/security.rsi/icon.png index b38151333306f11df3847de520aee4b87de25181..a31ae8553d5a7c1b21ca44883ba36d9e73cb89ef 100644 GIT binary patch delta 370 zcmV-&0ge9e0*nKYBYyw^b5ch_0Itp)=>Px$MoC0LR9J=Wls!+vKp21@)WLz6kdO{W z+8;nzWMMH1adQv{pnn1e#UDY9{s^a{3yX<^fz_ohgo%lEqQQh*nivzwIfzYk>UGiK zp5@KG_whb?b9bQ8Xf&EXCX;5<#pSsS{2(3|%mUX}H>u9rQh(jhY&B%-^o&I$;#@wv zL*NJUu79sAp(N03HDtHl!JCZn-9el;?K<6d2S8aOvB2-*wcWjVZs-ocCY3~Df&GUk zyjm6C9Z<>T38Oc%n;D{&q>{_?yp~W!`3?ZQu08;GU-2WRVI%3nmy=`4#S*4nXDXK5 ziaC$llBrlS6>CdOyH2@SQWi+ufiMhNMB=N64F{IRY&OGM$8xd6A`*mQs3efM1BPMX z^c=j&n7-Qwz_Kg=M#B-_WQ@~uFbqRUAl2sqa8x~%-^J3re~m_?(fk`e0o@pQU`l7C QKmY&$07*qoM6N<$g5BM%djJ3c delta 341 zcmV-b0jmCt1MdQmBYy!lNklYE90%}k#8I5&7OB}pJOYJ0hJO~H!i09} zu8s|zS}uJByDF|tUf`w>k#4bwa19j0?QxIo3J2^N01mKTZ-s^Oc%73if+uPa2U^L8~OII0T zs9Z)xIgcYSe^&0h&LM1SVK5p(6;XKx*2~-Uw0xL91CJy0I$iiekt9jE z+SEcSGYBD+08W)>fDi(&?}5h=Cbts+9|!;lrU7^y!RvbPx&Qb|NXRCt{2+TTlCXBfcoZ*5n#U2M{Z z2%{#*(2HppZEnO6rlof}=b$Ds{0G{h7n{59F6(~4essGZ43f1Mr9;?7nU1jy1}Toy zvySHK#H$4x%|y}CC{7pdGnrgUVqN}f)GLoA%qY@2qA=c zz8rI+(s$o`$68OX+sA$WK0f;3;{$(db#>ML{O$7HeethPOxf{cV`IwNdO}%E+oG`< zEB3~lY!vf$nfJvW*3;|OH;G%%?C>wXylE}YFYJr|@Uu^?YggY^{)Z{;fM{&STAW`X zscWR;ckFWi?0+Kcpl3yyTcaa9%VP5#nL=jnI#(C_MD z?U!FE_nzg-v$JbNu$lL#|9t@yX548^*V)Lsdl=m+#rh zk9fRfiWSP0zsM9TjCj1H<9A5v+JSX6N`A-iz#vIow#muq@_f8w&LCIbpb zKqix6qnQ6E$yta50vLutVEa8Z6l9~ACzHuEjRz>ys+8(muq)|OeT$A-^{MZvqHF~C zd_Ij%J+p3w6Cojl5JCtcgb+dqA;j~=v4^6n$iq^HwfzX# zEgGA#_Ld!H@4-PFSsQdhG&W<6Um6GgU2uW_wtx4a5oOEcPJ7kmxt?CrNUv#}>G#v; z>!oIzlxtNyXFZ%geX6Bpb7f0oPI_x3Y+dm7a>3inD`z}B{Q5QzQjc(*>;!1Kq<$Dj z<`k%I)u@`#c^q6XblK&ulbt+BJ!-k$Bhdj*>L#V_JqL9YI(7}*!uG0htB%Ae@Z{w_ za(m?pxpIY4t;YH2B*O!P|2ug&0wW+C8MUweI~pb5>b`-tz6*pSqt@Kq9EC!GP$)!q zcQ)+uk>@y7EIyx52ib2!$h~RxlVu(=>ki@#nU0uOq^d(S0*OA%qft Y1HJH9?y=(1>;M1&07*qoM6N<$f|u9I&Hw-a delta 807 zcmV+?1K9kS2fYT6BYy(~NkltcmzLic>$!ES-RwR!K=9sIkRN43dTl8v9LIA)N6nC;{6}vgTsO^F_?A8A4I-Xgnz24RqX*l-`&C1{vM!d*4Wnm z9$I&IDn7>xZhL?r2#{hDGFb(3Tm}G$q6h#;t)`I4Dv)9l1VN~3FUMst#!x5}(Asv| zDuqG;j4{Y@xvITgTssO+PE8o5vu?bHiCm0RP(of*=Tj zAP9mW2!Dbgh<{DP-`hFOKd5zS+VnRr?~^35ny3)-iQoD0Q?TP0M2s< zJo5;YHvKD033X*Dp{_8-tp0qdh{!<1cG%n#0!Yu($dT2j;O#&~+WaK@vrI@`W6iZAYUU{wRF&)(s;V3_?*9%uLT7*AS diff --git a/Resources/Textures/Clothing/Head/Hoods/Bio/security.rsi/inhand-right.png b/Resources/Textures/Clothing/Head/Hoods/Bio/security.rsi/inhand-right.png index 1c14b44f98595701a6c32119ef2bbb60b63f8d70..7188fe7eaa601cceecf43e5a4e326177b4703a75 100644 GIT binary patch delta 900 zcmV-~1AF|!2AT(uBYyw^b5ch_0Itp)=>Px&R7pfZRCt{2+RaPbU>pbVuf?~qx#5r; z#x#eahuL1{MHHEeH}~RTwuSi*sOVvH$DKUcy&N{S9fg6T*@U@?uz{#U93EB=#v<5L z6bCD=XxdI&Q?oK4pQ-n@OS4)pb>#sBQpOSPxFH!c380@xj$>OfyVJYEs2 z?lIP00DwO+1pp9*Zg@PEmhcqjkH*HRTec@sW)6IIR* z)YaPZ8S8;Eo2u41_0(tf3!!XuFNAcyh$Y?A z-TU7^a#C2bcRAgt0QnAp5JCtcgb+dqA>_Dao#HZb(=k!LZ<=Ov=I;pUPK{-w{i~_Z z5opXjgPh7x0Ra8y2qa0;R!u#Pp2$!E?2b;grGK@BC0|xtf+gPyW`{?Ne`%f=j@4RS zgC~Q7004*6f#s1=T)$L~lA_{xhx$hK{rsHiM}gsk;F50zpB6=opDzUfloiF7@=g?y z-RRLocMJ}77MN2C@%h^#+YZMRC{PfNDcDm^#zO^%+FdQeFfIe&i%S6eEi8|WLfKDz z?|oV&@N@nsV$3N+1xTG^4@M*LM^hf$PikNPwXV+1{xJ1%z|bx*GyT0ln~MkHr@vq{ z0-oo=^E|9pD}uowy1Kg1*wmmNX~aj&(4}y;%iG4L2GwS>K@>%peFWs>l)ay{>4!fd a1pfdud}x}q4fF&60000V4{0Cg=%`u@OYen=T^%5&XL3lbG5@sOl#@LI*!$@px z_Linu<9;7_NS~L4@9#_Vyapf$f*=TjAP9mW2;#8e%VaVYJ%1n;i#a01E|u!{J0rup z9I+~#o_VRy=jY9QfDhny`yHQasw!kZ`pXQMm>k!8y1KErykwT0YdDRuXHWG9_aD~0 z3H#OWx4Jo-lkt4)W8O&FoQ$5XZcI#$>n_A#n_~T^jvY7CPWt^;H>Z+H{$z8@oRLyV zrRGg2)-MJ_C4Y5dFtn`+rU75(&X)wQYYPAXU0Xo03AKz>@CJqnmuKFTlv{R!zkb#M z2mq@vuk{X#trbiIE?xYAX!tGwnNKC(mNjha;P_}bg7j?KO?|e|G!2c7jh6XO?Kg3) zsI6&$q9|BgUP3e+0U+~&Ab>Fj;~EV|u(-SgMN!;}V}D;5x(e%SSlQeFG|jAA+1!AC zeXXROf!POe90w^bA)Awtm`VTu1VI1*q-WE}=44252^_~&Hxiq09EZeI0*o=JstSMo z2{Wmx3dR@`Q;9PD+fIcChX!<`@lNBv*Qdgkoge@V4h+@&q{j&k{aSzwIA{R`K@bE% z5ClOG1b;ygZnNvYpVz-1*o{NKBednufPnKnj q3?+}&bnrkG*8*M$9-ze#8Sn?_hFiXm2Ls;#0000BYyw^b5ch_0Itp)=>Px-r%6OXRCt{2ntf~&=N-pChwZwU#BQ9( zfW!S!FsYR~FA6MgFqBLRL@G=sbHDHJ`Q3BR z^SiqTk|arzBuSDaNs@dw5!6<^?`J=e0iw|;4u^y1w*FDMcEiTUyWe?N zwOy_H2`VZolzq3`eNA00`g*nE6%`e@99c@4*=$xETDqi6DfhOu0?3mYgzM>V-}#cV z|Jz^wYTWu`27lms;sAEL9goLDPEO7><-_VtN)SfVudc4fVzCekg(jr0QzI^lB5h~S zV6&zJ5Q<*HVzF@K$PvoQ%BZXV7pGcJb9tJ8)Z2q7iezMDV47k2z1QP?T0?tP>30M= znQNbe=@uhtsb)F?ous9jfuSCtMSs))3>UW;r}NI9cYjGuyA7K)ooGA;Kt@Ie7K?>> z^X5^I?LzA9!R>ZaR$Pj4hG{}U7^#2w_%SX|6R=s+mBuC*-guwSM?tnrwf?AGWNS*A z?9v&qeeic`>T1c|_BMB!qkIrHD%-yS}df}PGphBl{KoLu9foqO0M09i-2Y{iwA-(Vn&DG1a zwq3RU^%}2L|Asx_L8HL2m>zF@kml-TELgCByu3Ut#_5Ejm+<@jN*4`9FVWoG%qO3G zLf$_P;L;gbq>u4RR33K^7_Q&@>opV<6foC5M}Mi)bFq)~8L7%~N1&5WKm8Qzj$Nwt zN1X*W_J1X8?7w=vJ~LC6BniLY52DDn{T}>h8vyvzBWv;d{Ya8TW@hHN8a$T%29Oht zoNJ%MKy>I%4@3vJ)p#o%fzE5LRjZ>a4*+=nxotus8F9Pa_``9EN>Ajm>7m z?|=7CNfMMG5{UqCxTyiF)r!yO!)CJ~Ns_YFis}HY-|(nBZQ3-PPA4muS6w}^1X|hN9E_A+csrE5JeGD6ahGY{ycekdCEDz-;dAd(`0YdL2xA9-Q75yPDD{86um?! zdWo94T4i4pMVwA2-QC@q9MD2jV-ulZH-Dly2T`2E`Sa(M{ZO!*rp6}CHdXh4nKNes z(Ae0B-EPO{^AQXNal73(olXLQ0Cu}wsW%lA78UXzPcyX#>q$vTAvPG}#TWlfe}6x- zXV0dvs8DkcP#pk(($W&bQV*f%B@P`r1VAttB$29`ZRwgF(5mlpWZ`XVRrI4@M}H|R zD;u}I>PG+|EcH-RSF5~zz4gZ51Q;3=YwBtVOFf#zwKCFvLVvXLYS0t_0H@Q5UazNH z8hX~drEc_kJx-@nv-m_9u0Ih}2f(^xmy&Bc91fNo8p;8d9BRPfaNzU#@V2#L-LY#z z4vnQ>Q&+3#4&T<))s9PF^>kHdv46>n^fA0WGYDCt04xtlLY>7X16V>vTI92+Z2EkXNGNklF99%ksQtpipLdqb=qTssW3--kLw)K-FNs=T)liK zIeerK2kYHJNolcshw}~sfq-&Os}GtgCmO$H(`Kb?)0RIFkH-;35rf{qYp?E_(jcr| zw?-a}4dVCv(dl&G@CCF5L3PEYl@+qxZs(!ZYXCTUvWfcodMYa`i9{lN^wCFDRaN2j zc&97~YuBxjT{$jlYilVlFMr2mGATYRURVggUtZruAP`U;1kE2s6V%t&EBhvsiSqJt zydLj(&8f!g@lsx1&Z$$U=<4eFhA&#t6oC0(o?(7s;im*x$R2h zvm!?7XV{o4`$?=N*ng6JJAxo^;&{X4tP)Eg%QAO+T3KWiNbBhp0DiQxOn$k4Ci(gK z*p^pe1I`})7#@Fed@US<*yFz=>&lY6-nv>|{`_-NQc`%erbXD;4_~EQ<-0wt?9a)% zv7uq89s|r4Gy8M0l*R+RSM$DLv)Pz6YZd^T_cXElM2l*1t$*x3(Zc3ELw|s0&6QWZRI&p9 z*#@@ne2K2Eu2C06jOOe0Q2hwR24m#r<^sqKCmIE~nj0h*OdLG?F>P%JREulna@zs! zE6G(>rb?2;@P7=nxTHwV&CMk?7*lOi(_ppk!L>3#OG^uaAaKvU_po?jA^&tApr@yY zNF>6WufH{=nc%9`56C8yiS+bzeps=LqbHl#w|5`1EGKRdufFoyiy zqd}t$&07JO9Tj-9^}o#I7J_`uXG|y4AJl4Q!Xz|@`?4>ZI>uGsL~{TD+F~X?i^;%r w&I#(LoXO^#5QBl~0Ho?o-#xzP(E~qD9bQ2^;CmnGu!1Wh#1f` z&L*=^YfH_FMpKgA3lp17)Xi#a0(zmio33l=x-s@@ZL*sZK6bMOq~P4tkF^R&l%YDp zKrqt`^8pt#P(B1bdoi9PsMK=?=p-x8&3Vtq{GaDM^MBv-e}B(;HNh$`uQFnyEg;%h zG9cOlqKzd3qAeiWSTZ2m0-}v21EMV;+K5$p;r@<8BEaP2BxbXj^0Yr_q;scyXGE9F zMSOfb0H5c5rkNv5#E|$U*laerZMWNJU8{y)qofqx-*HH^*=%H(-;|GCy7GNLV{hsehH?1aRxt4U(YWh9j%jeYc&uPF+@_*#`MC^9^ED`XuAKGj-c5Z(k z2=~Y2_{4de@GQU6>6H1?O{-^JEA4l?dT=_Os`%&Z0@trk;0+}3$?-($n;LL*8xYoH z@M%>w+uq$n^TldXe|Cq!P`13k?cF^%x*gOvHL!F0`~30C1p0d?AWyvk&+<2aJq0nd z`DGnx8-EG-+MjHv0OkC1W1Dk z$q9a#o?>}y90~CW@<7jwp zyV*w27eEkJBM7S*8XA(@L0^Ejn{BFNDu2#^w6rt;Zr;3!$z;OmbmH^*u-oleEEYT- z4-C91aa)e9c7=JVA>mw_Dqs6ak5Ui>GliZdBK)6mH2@TNS8y31) zSPXu}rSShNUip`zO9n(+K(w)BK(qx!8%qX6TR^n2WI(h9L>o&6L|Z_#v1C9bKPs;K zKs@L;IVR(rl)Yb-7H(S>^Us}bw&SB ztU+-Gl(v?MCX-1fyw=f1Mdb;Ki;J;Zt+?H8GBPtbe6M2BGU4#O3Na%y1Gn3a)oP`< zxR{E{6I|;Ee-EgvIF89=Qh${R5f6ebEiH08DJco7)k?RcJJN89(e3EQYPFJ-l=MO^ zYN6_tSjVlE)Ei!7=eCCc6c-n>B`+TcXT)2-c#FZo!HC7Y3@cZy#Aq}kilWR5PYtMV zevOV>D=`^8ieoA^;QsyPq_5wIL4OUOe+{8vh{k3Ef4}grC*S7Xq<^Muq`&tH8k-IBx`6SK5I(;TgZ=@jX&bqJe*lV<#Z=q{Ohzx`BWG!BHgL5=V05g2 z{@%Lh7APz>W^#oMuVZwqfU6w>jm-weN6un0Dj(PtXMiY*40?_1wwftVU85=g&By%q zzaNRCqhGM?og8*f*p#<)nZe@4%`Db zs5*ZRuh%>0f{3}az6grD!1UBKSy@>W)s~2@yS~!E)7n5O_v%Z#*krDd(`e-bvThyDE@ZMLY;<|O~&}y}OxN{fRI@)MyX(1F0A!Vmh zsICNc$vSd!a^ylpy7{=cIJKc7MqFGReSLk5jEn%VC4VoUoSYn0gP#P|284nkdDI8E zclRCu|K9fHPx9~2nG6a*2-EU!P5GGXbXroUU>ul2Qs}8dMtRyq5uE@07*qoM6N<$g0cHPIRF3v diff --git a/Resources/Textures/Clothing/OuterClothing/Bio/security.rsi/icon.png b/Resources/Textures/Clothing/OuterClothing/Bio/security.rsi/icon.png index eea15cfb0a9e2381791ff65af893665ad2ac880d..ecead67e9b98fc37e9336bd0a53b0332dc6e0542 100644 GIT binary patch delta 853 zcmV-b1FHP92I~fpBYyw^b5ch_0Itp)=>Px&B}qgu4xJq2|`T2Qr)(ep@olb|{{cCgi z$X~5(1B7u!JXOGx$N>z)pi-$YH8u5^|B-XCM5N-7o2E(a_HXE8;{fW-fdvpHu+a)QAdVjiRhW4i=)TFTxtmY=C`aC)_7^sC@(GaqIh}+-cu87v=yqIJ<3Z9%*@O%Jw1)49>EVignwXXX9vSDqI1t&0Kn|*ahkG$AG9bI zivZN?b-JTEt&ih4PG16ImjIwC8>|-Aux%TFFFyY=0btuUtA#b1ve6fL-vR)H5Gaa* zCl6}vNe@L)5JL1#-j{%}E7zhFz6;vYPDuUG;pNQ@C21gj7%Z3Jy9OR`8|p(a^!NP0+eu<;PG zS~a>`m0tQT^JaFK_wAdR-3sa zA-@B&5aZm1Y2?cY7cXU)oP5N^OBv+L2pH# z9SjE1bsZrDcb+U@FTDle{=|7~+r~6aR##WKw)4ur)q$>!&rh_45ZJcOhx!)|96V0x z!y95lTYnfB7$BF+`4S;t0N-ceM@@jvp06hZo@;^QIBxoDtp>GLgJe48`a%eFUB_`8 zuS)_xYC$v_1z>h|7FAU-O_OrDjFb{x*I8a(MpadJ-aiKbh{q37uT-hE8qCbh08lQM z=}L9~z&1?N^abFn9M>yVlIavuN&p`0z7>Fu`hO+UDe9G~ui(A`0CZg^6bj)~I(zL@ z973TGx~}^U?h7E1D7q(I(=--8c546PM+HsOFin%ZRUnZl`U3EL28KsYVHPyz-i66L zpJQwP5CB{Ihq!xhp(D*fjp32sOYgb?01{I-UB3$eojS2nU*c1-1M0_oDdGRH4S$qw bI2OQHWQ0+c0cxnC00000NkvXXu0mjf0d{KI diff --git a/Resources/Textures/Clothing/OuterClothing/Bio/security.rsi/inhand-left.png b/Resources/Textures/Clothing/OuterClothing/Bio/security.rsi/inhand-left.png index 36bd1257f2e613cda87063774382aeb668100b8f..14e15bcd349f2df4367eba515a9bf4c340e01a38 100644 GIT binary patch delta 547 zcmV+;0^I%61-k^0BYyw^b5ch_0Itp)=>Px$^+`lQRCt{2+COUJKokb>w~N&ogtJvD zW2TF-e1~D@K0#3H187N(5NwfD62fGQiJCn?ino=7|Hg{+;wSt&)1<4_oe zYd7e+?w5<8wPx3K*T%vyWXEwxDOJ0uyEHDq>cfvmqpkVzX!NBb6c4{I>pP0jh}Z3L zmSy~4o%7#cXZ&EDmp4{i=f<$t?Nz#AuiN9?m@=;zU(L_5ta9EVjo$$4{*IC)p?B|= zK3-nw>g}0)-+$-a82)&9rFZX^=5b8c{axj}c^sE{xiRefK3}~(Q<0Y>N#(plMD~E< zb)CoY+IVrj>vcY6-e(#YAWc)Uh8N}a<@F6c{prx<^-Vcu4KFB7)Blop$PbB-Vngcp z`&)C%<&ubqrqgNV-;&Nd3avFqQN+11Jef>5H-@7qs(=06md@KpWDi(1k7F7P23za* zRPr`;q=IbQrp01WuFctOMoKBNZTlqh0000000000005xPr1}xW&jpS_vL8Y0T;NzX z`w@OWKCaEL9GvpW9iK^%?nh|d5|HjkXk7t_WcvqNR{-h$fmUu3t?VC=Ce=UCx+Sow lY5zd${u~Ds&_4hm;vY36cM|)kcGmy^002ovPDHLkV1lI05Jmt1 delta 700 zcmV;t0z>_~1k(kOBYy&#Nkl-q%qpXz>S$pQV>Bh7O2=ZQSca87M?C@V%@YI zc9PNeb#=~x&%^h5_&%JA=K&#v5JCtcgb+dqA%qb6b#-@Y@qcJUi$^2cox8VppS!v{ zwOsRmJ{wVQNj?Yb>h9D$9uEK;U$>Z>n?qGqYHDiu^<8`Me55Fwd}3u8@AVrbR+gzc zdMvBF9(i4W#qmln^Y3AP-cNG19T>?nU&Xr_cssQNEMl*l`D?w6rnk2Tw{x2c^Ef`=0(M(0=ILU^Jmw%f9nL-`iis4 z>yg)X%E;{3(%K7{)oGTNmdK@bpFVq{t*@_>PN#RjJ-GMKkXrNF0U3&-;PH4ctJ5fo zf}$un<>Qla+S*(Ics!R;H&i3a1Poe$rX~jfsZ{E>_kU~+c>9UPCP<}H#9|W+c>D8S zV}>CMpr+RdhrA%S&YU}~S*=zq77L@kQQk~U7VKPfYc+H?Zzz iiBHKR`(27CSU&(sh6r|u&5A1k0000Px$`bk7VRCt{2+A&V!Kokbxw+MHUtUyH- zMbm*|&On2d(ubfKiHN-U^sSrJzBqY?BE|z_a?l zZpN|o&(nAm$&UyC000000001hh=`<={BbUdB5s=R0x2a&QGZm+wk_{T+rxa{-1%piD%F~|wga5$gcfN^Z@~k- zKfh3^6o+BRw|}os^#1%pZ@~j)Sw_xua?EuZbEXr@vaHH``}#y-7;>o;>%5CJZOz+w z2I#G{NYjmZJ#N}+KWU%5wF2aMPR`Y3HNLsKr{8~0>E`afnscr$DbMr$QXj~^d4Dxc z>H}ji7}Tzq#MbWu znr%G;ri=<;ThGA3+14|#3!@!iThG8QjL!hudIn4x6~MNhfn6AXGqFVEop{qj8D%QFx{2qAX`wv)L zU7_?`aoYZU8xUJ-WNd5<>~5ftSS(J-1rKvyU~X=N*jghnoTKIZx&8g6e4d7nlSyEi z>dI-;etYVmx__z+pKqQb$2e}+Hm$9jVM;2KonWfj|H~v7WWqY}oA`=pVGDj?EO9O^)~r@xR{!;N9pJ zKaz!(M`qJb{|o?6pUvQ^zjVY!LI@#*5JCtcgb+dqAw+(2s*2IBwdKWs1}xXEwHc96 z&~U1X(SPIZHeS4Zp0^ue`f2Pilb=ojpsFg)x*H^uNlT-0$@J6MVNM*MV8q{yZzxFL z$*9#$IhD~90MP5bYFqmH)~0ooP+V7HWm8UNv;h?r6~N9xSX*_4+Oyv*jmis7RWTx= zpwV%sJ#P;{_={ISRaF2M78WdvISLsaf&iobGa-!nmswgmZDo%TIrbBZ;{VlJR4MHM O0000 Date: Mon, 29 Jul 2024 23:41:21 -0500 Subject: [PATCH 65/89] Recolor the defibrillator (#29964) * tide-ification * metajoson --- .../Objects/Specific/Medical/defib.rsi/icon.png | Bin 808 -> 435 bytes .../Specific/Medical/defib.rsi/inhand-left.png | Bin 364 -> 331 bytes .../Specific/Medical/defib.rsi/inhand-right.png | Bin 364 -> 331 bytes .../Specific/Medical/defib.rsi/meta.json | 4 ++-- 4 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Resources/Textures/Objects/Specific/Medical/defib.rsi/icon.png b/Resources/Textures/Objects/Specific/Medical/defib.rsi/icon.png index 7ad5415f588b43f5aa07ca983e8629e38ed6ac25..0b9d3770edaada6cf7173ebb22ddd641a11e90a5 100644 GIT binary patch delta 420 zcmZ3%wwZZ?WIZzj1B1(wu46!ou{g-xiDBJ2nU_EgOS+@4BLl<6e(pbstU$g>fKP~P ze}Dgr7cYv7i;o;R5;bkNgM&kDZSCsSt7p!fDK9U7PF5JG(8ym2MDdga`33(+00yD^ z=gtAeISV`@iy0XB4ude`@%sD~DL|VUJY5_^Ec~}lx;U*xfya5_R;3UB|L^u(*>|D|0|%u+P^PluJqDtQ7$`=_-Qcw;F|7o_6RG7&)p4qv+qu1JushP zTkPzPx9v3o>|UV^95+H6W!B1y3o_KQ1zcLda$!GH$hY0^8!8$(B1Cg`PMBU_!CLc& z^}>0^rkQ%$45t}oq}sgH8}ck0IA0y%^x3@kDPNZwgQCNcGt4oTjrMgc3agnrE^{!L zF?faKzT{+SWN2{+>OH%MVPh5J_m;^o7{Vs+Nq)?C=AN~%U#f!Ef_AF{&&n?hmKO^* z9FwrvZL!SqpmxF{i60NHEOd7|5uey8TYvw6^MAfGKiNHZDFjS3tQH4`5re0zpUXO@ GgeCw`1gpvb delta 796 zcmV+%1LOR&1E>a&8Gi-<0047(dh`GQ00DDSM?wIu&K&6g00QDkL_t(oh3!^NNE<;E z{!)7M(6vG>EEpjOf~fdYK?3Gd6(LZt&Ba?z1}SY2DcV9QNJ}VUO9|;o=)p^jCdE^AcnGqg=j#RLOo9p$t*LwvztvU^iV$t*?BuV?|*ymd-G<1Tl`~qT1|NI zcAL=W&+nohJ6or?+sgUc@)Bzz<&uVge+rXBKF*ds+`17Fp>wTPCt9se4vzBV;3#j5 zXP>NcV`}Tfk7EV^ARLJS03s`k0DzOzDtcz;k%;dj(X{WKU884q9$u|T2ITR!vLPfu zQy-4RkUiY;uz%6*on7PJj~t$@EaLK_hD3ZH08r72SP0CZzfT6xnD2&&g#dMaa$4o= zlS4j>?f!#@h%|{LQ$T;83`y!n=;<_c{R+S;X+`3W-HSwg--v!E@rsN7@!Xt+2mnY@ zw_#(ST@x^;o_%MI-b~i#>*8$5RNj>Y9D#C4;~cq({(thK1^`X%8_@MDRJ39%-vCTC z&}3}U%_;h1Di5Epi%WU@+b-0C;%X;YijX?LN%Zvl!4a98FY21MeSoI0ljyfUyaxcb zTT&1+30nfcG!_0}2-D%$ZAVXggTiDW;GaUXt#c$CJ7H5tqX~_T4jWs}Nqe=R006Rw z%wo&|#($z^D^?4NN9y&Gi~?koV=M$_Fg7|2pfS!U$9VJdIj6m7opMRT+VT>V-1qhf zutWeL1CVO0;f;x__Z`eA{rISLtZ7UX$ z5xuKuMZ@ucJTCm6+WoFk7-5{R7AAHYXfe>BMbha)k3{JLx0s?76U5fG7}kb1pjKpr=C0qYz921jI+ zOB(2zkV_{m618=cHIvZKRgZTfKv)8O;UIqQq;1!Tu5WNB}Z^Uko>0A6i a_!R@&PpiMMXs^Ej0000NS%G|^0G|-o zBS((Bc=4jRxOn>F4f*x`K;fcli48!Ctt7}V_&*3RY~H_QKTw3Tz$3Dlfr0NZ2s0kf zUy%Y7+~Dcr7!u+BcB-S$VFeD?#v{M$<99Y5Vd=QCu?pi}> zCE=aL;(BkVJ1{gdF|u$0O)+oG<=Ogp@*c2cI`KEIe5?N-Ssr>ixc7!*1G=xVRHUKvceB$$87yX9^b3$*tNTWu4nLc^>bP0 Hl+XkK_uYQR delta 348 zcmV-i0i*uQ0_*~i8Gi-<0063Kaozv`00DDSM?wIu&K&6g00AaRL_t(|obB2%PQx%1 z#_;*nu-t8~`RZ<{Th<7S@i8ky7~*W^$EEu4|`q9HIYj zieB_=zbEA_jsySz0001hLv_>Ix@m3hoKmhrFT38@Rkhha-+$g*Uz}QSOioF`2CS-$ zs@IqObBr-LC0&+2z$smCY}cEl&nYEm)(sfWk=U7%niKp4Bx$!ZG5emKbIkkawNS%G|^0G|-o zBS((Bc=4jRxOn>F4f*x`K;fcli48!Ctt7}V_&*3RY~H_QKTw3Tz$3Dlfr0NZ2s0kf zUy%Y7+~Dcr7!u+BcB-S$VFeD?#v{M$<99Y5Vd=QCu?pi}> zCE=aL;(BkVJ1{gdF|u$0O)+oG<=Ogp@*c2cI`KEIe5?N-Ssr>ixc7!*1G=xVRHUKvceB$$87yX9^b3$*tNTWu4nLc^>bP0 Hl+XkK_uYQR delta 348 zcmV-i0i*uQ0_*~i8Gi-<0063Kaozv`00DDSM?wIu&K&6g00AaRL_t(|obB2%PQx%1 z#_;*nu-t8~`RZ<{Th<7S@i8ky7~*W^$EEu4|`q9HIYj zieB_=zbEA_jsySz0001hLv_>Ix@m3hoKmhrFT38@Rkhha-+$g*Uz}QSOioF`2CS-$ zs@IqObBr-LC0&+2z$smCY}cEl&nYEm)(sfWk=U7%niKp4Bx$!ZG5emKbIkkaw Date: Tue, 30 Jul 2024 04:42:27 +0000 Subject: [PATCH 66/89] Automatic changelog update --- Resources/Changelog/Changelog.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 39a40a9417..9ced9860f3 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: ElectroJr - changes: - - message: Fix gas analyzers not opening their UI when used in-hand. - type: Fix - id: 6510 - time: '2024-05-02T06:00:01.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/27610 - author: Plykiya changes: - message: Disarming a player now causes them to throw the disarmed item away from @@ -3784,3 +3777,10 @@ id: 7009 time: '2024-07-30T03:04:17.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/30453 +- author: Blackern5000 + changes: + - message: The defibrillator has been recolored slightly + type: Tweak + id: 7010 + time: '2024-07-30T04:41:21.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/29964 From 9a46c24854c708b0b05e447390d02fc1037abe81 Mon Sep 17 00:00:00 2001 From: Brandon Hu <103440971+Brandon-Huu@users.noreply.github.com> Date: Tue, 30 Jul 2024 06:22:33 +0000 Subject: [PATCH 67/89] tweak(SyndicateReinforcements): Replace combat knife with throwing knife (#30466) * . * Update Resources/Prototypes/Catalog/Fills/Items/misc.yml Co-authored-by: Ed <96445749+TheShuEd@users.noreply.github.com> * ugh Co-authored-by:James Quiaoit * ugh Co-authored-by: James Quiaoit --------- Co-authored-by: Ed <96445749+TheShuEd@users.noreply.github.com> Co-authored-by: James Quiaoit --- Resources/Prototypes/Catalog/Fills/Items/misc.yml | 10 ++++++++++ Resources/Prototypes/Roles/Antags/traitor.yml | 2 +- 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/Resources/Prototypes/Catalog/Fills/Items/misc.yml b/Resources/Prototypes/Catalog/Fills/Items/misc.yml index 816f3ba8d4..4ec546caef 100644 --- a/Resources/Prototypes/Catalog/Fills/Items/misc.yml +++ b/Resources/Prototypes/Catalog/Fills/Items/misc.yml @@ -1,5 +1,6 @@ - type: entity id: ClothingShoesBootsCombatFilled + suffix: Filled, Combat Knife parent: - ClothingShoesBootsCombat - ClothingShoesBootsSecFilled @@ -38,3 +39,12 @@ item: - KukriKnife +- type: entity + id: ClothingShoesBootsSyndieFilled + parent: ClothingShoesBootsCombat + suffix: Filled, Throwing Knife + components: + - type: ContainerFill + containers: + item: + - ThrowingKnife diff --git a/Resources/Prototypes/Roles/Antags/traitor.yml b/Resources/Prototypes/Roles/Antags/traitor.yml index e40466d57f..cb2fd4b13e 100644 --- a/Resources/Prototypes/Roles/Antags/traitor.yml +++ b/Resources/Prototypes/Roles/Antags/traitor.yml @@ -41,7 +41,7 @@ equipment: jumpsuit: ClothingUniformJumpsuitOperative back: ClothingBackpackSyndicate - shoes: ClothingShoesBootsCombatFilled + shoes: ClothingShoesBootsSyndieFilled gloves: ClothingHandsGlovesColorBlack - type: startingGear From 2fc9a65da6563d2b5b0ed14a51f482249225bec0 Mon Sep 17 00:00:00 2001 From: TurboTracker <130304754+TurboTrackerss14@users.noreply.github.com> Date: Tue, 30 Jul 2024 07:41:52 +0100 Subject: [PATCH 68/89] Update migration to remove maint detective armor (#30486) Jensen migration --- Resources/migration.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Resources/migration.yml b/Resources/migration.yml index 23e7e8e230..a4276c7f10 100644 --- a/Resources/migration.yml +++ b/Resources/migration.yml @@ -350,7 +350,7 @@ DoorRemoteFirefight: null AirlockServiceCaptainLocked: AirlockCaptainLocked # 2024-06-15 -ClothingOuterCoatInspector: ClothingOuterCoatDetectiveLoadout +ClothingOuterCoatInspector: ClothingOuterCoatJensen # 2024-06-23 FloorTileItemReinforced: PartRodMetal1 From a72445c4193fc50974b0d4fd168525abeab2e591 Mon Sep 17 00:00:00 2001 From: Repo <47093363+Titian3@users.noreply.github.com> Date: Tue, 30 Jul 2024 20:28:32 +1200 Subject: [PATCH 69/89] aHelp fixes and improvements (#28639) * Clear search criteria on loading aHelp window * Pinning technology. * Relay to aHelp window and discord if a user disconnect/reconnect * Fix pinning localization * Log disconnect, reconnects, bans to relay and admin in aHelp * Drop to 5min to hold active conversations * Update Content.Server/Administration/Systems/BwoinkSystem.cs Co-authored-by: Chief-Engineer <119664036+Chief-Engineer@users.noreply.github.com> * discord text styling if diconnect,reconnect,banned message. * Pin icons instead of text * Better Icons * space * Move button generation in to its own XAML * List entry control * Fix spaces * Remove from active conversations on banned * Discord if else block cleanup * Better pin icons * Move icons to stylesheet styleclass * Better field order. * PR review fixes * fixes --------- Co-authored-by: Chief-Engineer <119664036+Chief-Engineer@users.noreply.github.com> Co-authored-by: metalgearsloth --- .../UI/Bwoink/BwoinkWindow.xaml.cs | 6 +- .../CustomControls/PlayerListControl.xaml.cs | 281 +++++++++--------- .../UI/CustomControls/PlayerListEntry.xaml | 6 + .../UI/CustomControls/PlayerListEntry.xaml.cs | 58 ++++ Content.Client/Stylesheets/StyleNano.cs | 20 ++ .../Administration/Systems/BwoinkSystem.cs | 265 +++++++++++++++-- Content.Shared/Administration/PlayerInfo.cs | 2 + .../Locale/en-US/administration/bwoink.ftl | 3 + .../Textures/Interface/Bwoink/pinned.png | Bin 0 -> 2267 bytes .../Textures/Interface/Bwoink/pinned2.png | Bin 0 -> 2028 bytes .../Textures/Interface/Bwoink/un_pinned.png | Bin 0 -> 2151 bytes 11 files changed, 471 insertions(+), 170 deletions(-) create mode 100644 Content.Client/Administration/UI/CustomControls/PlayerListEntry.xaml create mode 100644 Content.Client/Administration/UI/CustomControls/PlayerListEntry.xaml.cs create mode 100644 Resources/Textures/Interface/Bwoink/pinned.png create mode 100644 Resources/Textures/Interface/Bwoink/pinned2.png create mode 100644 Resources/Textures/Interface/Bwoink/un_pinned.png diff --git a/Content.Client/Administration/UI/Bwoink/BwoinkWindow.xaml.cs b/Content.Client/Administration/UI/Bwoink/BwoinkWindow.xaml.cs index 30f9d24df1..e8653843c7 100644 --- a/Content.Client/Administration/UI/Bwoink/BwoinkWindow.xaml.cs +++ b/Content.Client/Administration/UI/Bwoink/BwoinkWindow.xaml.cs @@ -30,7 +30,11 @@ namespace Content.Client.Administration.UI.Bwoink } }; - OnOpen += () => Bwoink.PopulateList(); + OnOpen += () => + { + Bwoink.ChannelSelector.StopFiltering(); + Bwoink.PopulateList(); + }; } } } diff --git a/Content.Client/Administration/UI/CustomControls/PlayerListControl.xaml.cs b/Content.Client/Administration/UI/CustomControls/PlayerListControl.xaml.cs index 12522d552d..b09cd727ef 100644 --- a/Content.Client/Administration/UI/CustomControls/PlayerListControl.xaml.cs +++ b/Content.Client/Administration/UI/CustomControls/PlayerListControl.xaml.cs @@ -4,154 +4,155 @@ using Content.Client.UserInterface.Controls; using Content.Client.Verbs.UI; using Content.Shared.Administration; using Robust.Client.AutoGenerated; +using Robust.Client.GameObjects; using Robust.Client.Graphics; using Robust.Client.UserInterface; using Robust.Client.UserInterface.Controls; using Robust.Client.UserInterface.XAML; using Robust.Shared.Input; +using Robust.Shared.Utility; -namespace Content.Client.Administration.UI.CustomControls +namespace Content.Client.Administration.UI.CustomControls; + +[GenerateTypedNameReferences] +public sealed partial class PlayerListControl : BoxContainer { - [GenerateTypedNameReferences] - public sealed partial class PlayerListControl : BoxContainer + private readonly AdminSystem _adminSystem; + + private readonly IEntityManager _entManager; + private readonly IUserInterfaceManager _uiManager; + + private PlayerInfo? _selectedPlayer; + + private List _playerList = new(); + private readonly List _sortedPlayerList = new(); + + public Comparison? Comparison; + public Func? OverrideText; + + public PlayerListControl() { - private readonly AdminSystem _adminSystem; - - private List _playerList = new(); - private readonly List _sortedPlayerList = new(); - - public event Action? OnSelectionChanged; - public IReadOnlyList PlayerInfo => _playerList; - - public Func? OverrideText; - public Comparison? Comparison; - - private IEntityManager _entManager; - private IUserInterfaceManager _uiManager; - - private PlayerInfo? _selectedPlayer; - - public PlayerListControl() - { - _entManager = IoCManager.Resolve(); - _uiManager = IoCManager.Resolve(); - _adminSystem = _entManager.System(); - RobustXamlLoader.Load(this); - // Fill the Option data - PlayerListContainer.ItemPressed += PlayerListItemPressed; - PlayerListContainer.ItemKeyBindDown += PlayerListItemKeyBindDown; - PlayerListContainer.GenerateItem += GenerateButton; - PlayerListContainer.NoItemSelected += PlayerListNoItemSelected; - PopulateList(_adminSystem.PlayerList); - FilterLineEdit.OnTextChanged += _ => FilterList(); - _adminSystem.PlayerListChanged += PopulateList; - BackgroundPanel.PanelOverride = new StyleBoxFlat {BackgroundColor = new Color(32, 32, 40)}; - } - - private void PlayerListNoItemSelected() - { - _selectedPlayer = null; - OnSelectionChanged?.Invoke(null); - } - - private void PlayerListItemPressed(BaseButton.ButtonEventArgs? args, ListData? data) - { - if (args == null || data is not PlayerListData {Info: var selectedPlayer}) - return; - - if (selectedPlayer == _selectedPlayer) - return; - - if (args.Event.Function != EngineKeyFunctions.UIClick) - return; - - OnSelectionChanged?.Invoke(selectedPlayer); - _selectedPlayer = selectedPlayer; - - // update label text. Only required if there is some override (e.g. unread bwoink count). - if (OverrideText != null && args.Button.Children.FirstOrDefault()?.Children?.FirstOrDefault() is Label label) - label.Text = GetText(selectedPlayer); - } - - private void PlayerListItemKeyBindDown(GUIBoundKeyEventArgs? args, ListData? data) - { - if (args == null || data is not PlayerListData { Info: var selectedPlayer }) - return; - - if (args.Function != EngineKeyFunctions.UIRightClick || selectedPlayer.NetEntity == null) - return; - - _uiManager.GetUIController().OpenVerbMenu(selectedPlayer.NetEntity.Value, true); - args.Handle(); - } - - public void StopFiltering() - { - FilterLineEdit.Text = string.Empty; - } - - private void FilterList() - { - _sortedPlayerList.Clear(); - foreach (var info in _playerList) - { - var displayName = $"{info.CharacterName} ({info.Username})"; - if (info.IdentityName != info.CharacterName) - displayName += $" [{info.IdentityName}]"; - if (!string.IsNullOrEmpty(FilterLineEdit.Text) - && !displayName.ToLowerInvariant().Contains(FilterLineEdit.Text.Trim().ToLowerInvariant())) - continue; - _sortedPlayerList.Add(info); - } - - if (Comparison != null) - _sortedPlayerList.Sort((a, b) => Comparison(a, b)); - - PlayerListContainer.PopulateList(_sortedPlayerList.Select(info => new PlayerListData(info)).ToList()); - if (_selectedPlayer != null) - PlayerListContainer.Select(new PlayerListData(_selectedPlayer)); - } - - public void PopulateList(IReadOnlyList? players = null) - { - players ??= _adminSystem.PlayerList; - - _playerList = players.ToList(); - if (_selectedPlayer != null && !_playerList.Contains(_selectedPlayer)) - _selectedPlayer = null; - - FilterList(); - } - - private string GetText(PlayerInfo info) - { - var text = $"{info.CharacterName} ({info.Username})"; - if (OverrideText != null) - text = OverrideText.Invoke(info, text); - return text; - } - - private void GenerateButton(ListData data, ListContainerButton button) - { - if (data is not PlayerListData { Info: var info }) - return; - - button.AddChild(new BoxContainer - { - Orientation = LayoutOrientation.Vertical, - Children = - { - new Label - { - ClipText = true, - Text = GetText(info) - } - } - }); - - button.AddStyleClass(ListContainer.StyleClassListContainerButton); - } + _entManager = IoCManager.Resolve(); + _uiManager = IoCManager.Resolve(); + _adminSystem = _entManager.System(); + RobustXamlLoader.Load(this); + // Fill the Option data + PlayerListContainer.ItemPressed += PlayerListItemPressed; + PlayerListContainer.ItemKeyBindDown += PlayerListItemKeyBindDown; + PlayerListContainer.GenerateItem += GenerateButton; + PlayerListContainer.NoItemSelected += PlayerListNoItemSelected; + PopulateList(_adminSystem.PlayerList); + FilterLineEdit.OnTextChanged += _ => FilterList(); + _adminSystem.PlayerListChanged += PopulateList; + BackgroundPanel.PanelOverride = new StyleBoxFlat { BackgroundColor = new Color(32, 32, 40) }; } - public record PlayerListData(PlayerInfo Info) : ListData; + public IReadOnlyList PlayerInfo => _playerList; + + public event Action? OnSelectionChanged; + + private void PlayerListNoItemSelected() + { + _selectedPlayer = null; + OnSelectionChanged?.Invoke(null); + } + + private void PlayerListItemPressed(BaseButton.ButtonEventArgs? args, ListData? data) + { + if (args == null || data is not PlayerListData { Info: var selectedPlayer }) + return; + + if (selectedPlayer == _selectedPlayer) + return; + + if (args.Event.Function != EngineKeyFunctions.UIClick) + return; + + OnSelectionChanged?.Invoke(selectedPlayer); + _selectedPlayer = selectedPlayer; + + // update label text. Only required if there is some override (e.g. unread bwoink count). + if (OverrideText != null && args.Button.Children.FirstOrDefault()?.Children?.FirstOrDefault() is Label label) + label.Text = GetText(selectedPlayer); + } + + private void PlayerListItemKeyBindDown(GUIBoundKeyEventArgs? args, ListData? data) + { + if (args == null || data is not PlayerListData { Info: var selectedPlayer }) + return; + + if (args.Function != EngineKeyFunctions.UIRightClick || selectedPlayer.NetEntity == null) + return; + + _uiManager.GetUIController().OpenVerbMenu(selectedPlayer.NetEntity.Value, true); + args.Handle(); + } + + public void StopFiltering() + { + FilterLineEdit.Text = string.Empty; + } + + private void FilterList() + { + _sortedPlayerList.Clear(); + foreach (var info in _playerList) + { + var displayName = $"{info.CharacterName} ({info.Username})"; + if (info.IdentityName != info.CharacterName) + displayName += $" [{info.IdentityName}]"; + if (!string.IsNullOrEmpty(FilterLineEdit.Text) + && !displayName.ToLowerInvariant().Contains(FilterLineEdit.Text.Trim().ToLowerInvariant())) + continue; + _sortedPlayerList.Add(info); + } + + if (Comparison != null) + _sortedPlayerList.Sort((a, b) => Comparison(a, b)); + + // Ensure pinned players are always at the top + _sortedPlayerList.Sort((a, b) => a.IsPinned != b.IsPinned && a.IsPinned ? -1 : 1); + + PlayerListContainer.PopulateList(_sortedPlayerList.Select(info => new PlayerListData(info)).ToList()); + if (_selectedPlayer != null) + PlayerListContainer.Select(new PlayerListData(_selectedPlayer)); + } + + public void PopulateList(IReadOnlyList? players = null) + { + players ??= _adminSystem.PlayerList; + + _playerList = players.ToList(); + if (_selectedPlayer != null && !_playerList.Contains(_selectedPlayer)) + _selectedPlayer = null; + + FilterList(); + } + + + private string GetText(PlayerInfo info) + { + var text = $"{info.CharacterName} ({info.Username})"; + if (OverrideText != null) + text = OverrideText.Invoke(info, text); + return text; + } + + private void GenerateButton(ListData data, ListContainerButton button) + { + if (data is not PlayerListData { Info: var info }) + return; + + var entry = new PlayerListEntry(); + entry.Setup(info, OverrideText); + entry.OnPinStatusChanged += _ => + { + FilterList(); + }; + + button.AddChild(entry); + button.AddStyleClass(ListContainer.StyleClassListContainerButton); + } } + +public record PlayerListData(PlayerInfo Info) : ListData; diff --git a/Content.Client/Administration/UI/CustomControls/PlayerListEntry.xaml b/Content.Client/Administration/UI/CustomControls/PlayerListEntry.xaml new file mode 100644 index 0000000000..af13ccc0e0 --- /dev/null +++ b/Content.Client/Administration/UI/CustomControls/PlayerListEntry.xaml @@ -0,0 +1,6 @@ + + diff --git a/Content.Client/Administration/UI/CustomControls/PlayerListEntry.xaml.cs b/Content.Client/Administration/UI/CustomControls/PlayerListEntry.xaml.cs new file mode 100644 index 0000000000..cd6a56ea71 --- /dev/null +++ b/Content.Client/Administration/UI/CustomControls/PlayerListEntry.xaml.cs @@ -0,0 +1,58 @@ +using Content.Client.Stylesheets; +using Content.Shared.Administration; +using Robust.Client.AutoGenerated; +using Robust.Client.GameObjects; +using Robust.Client.UserInterface.Controls; +using Robust.Client.UserInterface.XAML; +using Robust.Shared.Utility; + +namespace Content.Client.Administration.UI.CustomControls; + +[GenerateTypedNameReferences] +public sealed partial class PlayerListEntry : BoxContainer +{ + public PlayerListEntry() + { + RobustXamlLoader.Load(this); + } + + public event Action? OnPinStatusChanged; + + public void Setup(PlayerInfo info, Func? overrideText) + { + Update(info, overrideText); + PlayerEntryPinButton.OnPressed += HandlePinButtonPressed(info); + } + + private Action HandlePinButtonPressed(PlayerInfo info) + { + return args => + { + info.IsPinned = !info.IsPinned; + UpdatePinButtonTexture(info.IsPinned); + OnPinStatusChanged?.Invoke(info); + }; + } + + private void Update(PlayerInfo info, Func? overrideText) + { + PlayerEntryLabel.Text = overrideText?.Invoke(info, $"{info.CharacterName} ({info.Username})") ?? + $"{info.CharacterName} ({info.Username})"; + + UpdatePinButtonTexture(info.IsPinned); + } + + private void UpdatePinButtonTexture(bool isPinned) + { + if (isPinned) + { + PlayerEntryPinButton?.RemoveStyleClass(StyleNano.StyleClassPinButtonUnpinned); + PlayerEntryPinButton?.AddStyleClass(StyleNano.StyleClassPinButtonPinned); + } + else + { + PlayerEntryPinButton?.RemoveStyleClass(StyleNano.StyleClassPinButtonPinned); + PlayerEntryPinButton?.AddStyleClass(StyleNano.StyleClassPinButtonUnpinned); + } + } +} diff --git a/Content.Client/Stylesheets/StyleNano.cs b/Content.Client/Stylesheets/StyleNano.cs index dba48a119d..0c04a55059 100644 --- a/Content.Client/Stylesheets/StyleNano.cs +++ b/Content.Client/Stylesheets/StyleNano.cs @@ -151,6 +151,11 @@ namespace Content.Client.Stylesheets public static readonly Color ChatBackgroundColor = Color.FromHex("#25252ADD"); + //Bwoink + public const string StyleClassPinButtonPinned = "pinButtonPinned"; + public const string StyleClassPinButtonUnpinned = "pinButtonUnpinned"; + + public override Stylesheet Stylesheet { get; } public StyleNano(IResourceCache resCache) : base(resCache) @@ -1608,6 +1613,21 @@ namespace Content.Client.Stylesheets { BackgroundColor = FancyTreeSelectedRowColor, }), + // Pinned button style + new StyleRule( + new SelectorElement(typeof(TextureButton), new[] { StyleClassPinButtonPinned }, null, null), + new[] + { + new StyleProperty(TextureButton.StylePropertyTexture, resCache.GetTexture("/Textures/Interface/Bwoink/pinned.png")) + }), + + // Unpinned button style + new StyleRule( + new SelectorElement(typeof(TextureButton), new[] { StyleClassPinButtonUnpinned }, null, null), + new[] + { + new StyleProperty(TextureButton.StylePropertyTexture, resCache.GetTexture("/Textures/Interface/Bwoink/un_pinned.png")) + }) }).ToList()); } } diff --git a/Content.Server/Administration/Systems/BwoinkSystem.cs b/Content.Server/Administration/Systems/BwoinkSystem.cs index 0a797aa02a..6709403177 100644 --- a/Content.Server/Administration/Systems/BwoinkSystem.cs +++ b/Content.Server/Administration/Systems/BwoinkSystem.cs @@ -7,11 +7,13 @@ using System.Text.RegularExpressions; using System.Threading.Tasks; using Content.Server.Administration.Managers; using Content.Server.Afk; +using Content.Server.Database; using Content.Server.Discord; using Content.Server.GameTicking; using Content.Server.Players.RateLimiting; using Content.Shared.Administration; using Content.Shared.CCVar; +using Content.Shared.GameTicking; using Content.Shared.Mind; using JetBrains.Annotations; using Robust.Server.Player; @@ -38,6 +40,7 @@ namespace Content.Server.Administration.Systems [Dependency] private readonly GameTicker _gameTicker = default!; [Dependency] private readonly SharedMindSystem _minds = default!; [Dependency] private readonly IAfkManager _afkManager = default!; + [Dependency] private readonly IServerDbManager _dbManager = default!; [Dependency] private readonly PlayerRateLimitManager _rateLimit = default!; [GeneratedRegex(@"^https://discord\.com/api/webhooks/(\d+)/((?!.*/).*)$")] @@ -50,7 +53,11 @@ namespace Content.Server.Administration.Systems private string _footerIconUrl = string.Empty; private string _avatarUrl = string.Empty; private string _serverName = string.Empty; - private readonly Dictionary _relayMessages = new(); + + private readonly + Dictionary _relayMessages = new(); + private Dictionary _oldMessageIds = new(); private readonly Dictionary> _messageQueues = new(); private readonly HashSet _processingChannels = new(); @@ -69,6 +76,7 @@ namespace Content.Server.Administration.Systems private const string TooLongText = "... **(too long)**"; private int _maxAdditionalChars; + private readonly Dictionary _activeConversations = new(); public override void Initialize() { @@ -79,13 +87,22 @@ namespace Content.Server.Administration.Systems Subs.CVar(_config, CVars.GameHostName, OnServerNameChanged, true); Subs.CVar(_config, CCVars.AdminAhelpOverrideClientName, OnOverrideChanged, true); _sawmill = IoCManager.Resolve().GetSawmill("AHELP"); - _maxAdditionalChars = GenerateAHelpMessage("", "", true, _gameTicker.RoundDuration().ToString("hh\\:mm\\:ss"), _gameTicker.RunLevel, playedSound: false).Length; + var defaultParams = new AHelpMessageParams( + string.Empty, + string.Empty, + true, + _gameTicker.RoundDuration().ToString("hh\\:mm\\:ss"), + _gameTicker.RunLevel, + playedSound: false + ); + _maxAdditionalChars = GenerateAHelpMessage(defaultParams).Length; _playerManager.PlayerStatusChanged += OnPlayerStatusChanged; SubscribeLocalEvent(OnGameRunLevelChanged); SubscribeNetworkEvent(OnClientTypingUpdated); + SubscribeLocalEvent(_ => _activeConversations.Clear()); - _rateLimit.Register( + _rateLimit.Register( RateLimitKey, new RateLimitRegistration { @@ -107,14 +124,129 @@ namespace Content.Server.Administration.Systems _overrideClientName = obj; } - private void OnPlayerStatusChanged(object? sender, SessionStatusEventArgs e) + private async void OnPlayerStatusChanged(object? sender, SessionStatusEventArgs e) { + if (e.NewStatus == SessionStatus.Disconnected) + { + if (_activeConversations.TryGetValue(e.Session.UserId, out var lastMessageTime)) + { + var timeSinceLastMessage = DateTime.Now - lastMessageTime; + if (timeSinceLastMessage > TimeSpan.FromMinutes(5)) + { + _activeConversations.Remove(e.Session.UserId); + return; // Do not send disconnect message if timeout exceeded + } + } + + // Check if the user has been banned + var ban = await _dbManager.GetServerBanAsync(null, e.Session.UserId, null); + if (ban != null) + { + var banMessage = Loc.GetString("bwoink-system-player-banned", ("banReason", ban.Reason)); + NotifyAdmins(e.Session, banMessage, PlayerStatusType.Banned); + _activeConversations.Remove(e.Session.UserId); + return; + } + } + + // Notify all admins if a player disconnects or reconnects + var message = e.NewStatus switch + { + SessionStatus.Connected => Loc.GetString("bwoink-system-player-reconnecting"), + SessionStatus.Disconnected => Loc.GetString("bwoink-system-player-disconnecting"), + _ => null + }; + + if (message != null) + { + var statusType = e.NewStatus == SessionStatus.Connected + ? PlayerStatusType.Connected + : PlayerStatusType.Disconnected; + NotifyAdmins(e.Session, message, statusType); + } + if (e.NewStatus != SessionStatus.InGame) return; RaiseNetworkEvent(new BwoinkDiscordRelayUpdated(!string.IsNullOrWhiteSpace(_webhookUrl)), e.Session); } + private void NotifyAdmins(ICommonSession session, string message, PlayerStatusType statusType) + { + if (!_activeConversations.ContainsKey(session.UserId)) + { + // If the user is not part of an active conversation, do not notify admins. + return; + } + + // Get the current timestamp + var timestamp = DateTime.Now.ToString("HH:mm:ss"); + var roundTime = _gameTicker.RoundDuration().ToString("hh\\:mm\\:ss"); + + // Determine the icon based on the status type + string icon = statusType switch + { + PlayerStatusType.Connected => ":green_circle:", + PlayerStatusType.Disconnected => ":red_circle:", + PlayerStatusType.Banned => ":no_entry:", + _ => ":question:" + }; + + // Create the message parameters for Discord + var messageParams = new AHelpMessageParams( + session.Name, + message, + true, + roundTime, + _gameTicker.RunLevel, + playedSound: true, + icon: icon + ); + + // Create the message for in-game with username + var color = statusType switch + { + PlayerStatusType.Connected => Color.Green.ToHex(), + PlayerStatusType.Disconnected => Color.Yellow.ToHex(), + PlayerStatusType.Banned => Color.Orange.ToHex(), + _ => Color.Gray.ToHex(), + }; + var inGameMessage = $"[color={color}]{session.Name} {message}[/color]"; + + var bwoinkMessage = new BwoinkTextMessage( + userId: session.UserId, + trueSender: SystemUserId, + text: inGameMessage, + sentAt: DateTime.Now, + playSound: false + ); + + var admins = GetTargetAdmins(); + foreach (var admin in admins) + { + RaiseNetworkEvent(bwoinkMessage, admin); + } + + // Enqueue the message for Discord relay + if (_webhookUrl != string.Empty) + { + // if (!_messageQueues.ContainsKey(session.UserId)) + // _messageQueues[session.UserId] = new Queue(); + // + // var escapedText = FormattedMessage.EscapeText(message); + // messageParams.Message = escapedText; + // + // var discordMessage = GenerateAHelpMessage(messageParams); + // _messageQueues[session.UserId].Enqueue(discordMessage); + + var queue = _messageQueues.GetOrNew(session.UserId); + var escapedText = FormattedMessage.EscapeText(message); + messageParams.Message = escapedText; + var discordMessage = GenerateAHelpMessage(messageParams); + queue.Enqueue(discordMessage); + } + } + private void OnGameRunLevelChanged(GameRunLevelChangedEvent args) { // Don't make a new embed if we @@ -209,7 +341,8 @@ namespace Content.Server.Administration.Systems var content = await response.Content.ReadAsStringAsync(); if (!response.IsSuccessStatusCode) { - _sawmill.Log(LogLevel.Error, $"Discord returned bad status code when trying to get webhook data (perhaps the webhook URL is invalid?): {response.StatusCode}\nResponse: {content}"); + _sawmill.Log(LogLevel.Error, + $"Discord returned bad status code when trying to get webhook data (perhaps the webhook URL is invalid?): {response.StatusCode}\nResponse: {content}"); return; } @@ -233,7 +366,7 @@ namespace Content.Server.Administration.Systems // Whether the message will become too long after adding these new messages var tooLong = exists && messages.Sum(msg => Math.Min(msg.Length, MessageLengthCap) + "\n".Length) - + existingEmbed.description.Length > DescriptionMax; + + existingEmbed.description.Length > DescriptionMax; // If there is no existing embed, or it is getting too long, we create a new embed if (!exists || tooLong) @@ -242,7 +375,8 @@ namespace Content.Server.Administration.Systems if (lookup == null) { - _sawmill.Log(LogLevel.Error, $"Unable to find player for NetUserId {userId} when sending discord webhook."); + _sawmill.Log(LogLevel.Error, + $"Unable to find player for NetUserId {userId} when sending discord webhook."); _relayMessages.Remove(userId); return; } @@ -254,11 +388,13 @@ namespace Content.Server.Administration.Systems { if (tooLong && existingEmbed.id != null) { - linkToPrevious = $"**[Go to previous embed of this round](https://discord.com/channels/{guildId}/{channelId}/{existingEmbed.id})**\n"; + linkToPrevious = + $"**[Go to previous embed of this round](https://discord.com/channels/{guildId}/{channelId}/{existingEmbed.id})**\n"; } else if (_oldMessageIds.TryGetValue(userId, out var id) && !string.IsNullOrEmpty(id)) { - linkToPrevious = $"**[Go to last round's conversation with this player](https://discord.com/channels/{guildId}/{channelId}/{id})**\n"; + linkToPrevious = + $"**[Go to last round's conversation with this player](https://discord.com/channels/{guildId}/{channelId}/{id})**\n"; } } @@ -274,7 +410,8 @@ namespace Content.Server.Administration.Systems GameRunLevel.PreRoundLobby => "\n\n:arrow_forward: _**Pre-round lobby started**_\n", GameRunLevel.InRound => "\n\n:arrow_forward: _**Round started**_\n", GameRunLevel.PostRound => "\n\n:stop_button: _**Post-round started**_\n", - _ => throw new ArgumentOutOfRangeException(nameof(_gameTicker.RunLevel), $"{_gameTicker.RunLevel} was not matched."), + _ => throw new ArgumentOutOfRangeException(nameof(_gameTicker.RunLevel), + $"{_gameTicker.RunLevel} was not matched."), }; existingEmbed.lastRunLevel = _gameTicker.RunLevel; @@ -290,7 +427,9 @@ namespace Content.Server.Administration.Systems existingEmbed.description += $"\n{message}"; } - var payload = GeneratePayload(existingEmbed.description, existingEmbed.username, existingEmbed.characterName); + var payload = GeneratePayload(existingEmbed.description, + existingEmbed.username, + existingEmbed.characterName); // If there is no existing embed, create a new one // Otherwise patch (edit) it @@ -302,7 +441,8 @@ namespace Content.Server.Administration.Systems var content = await request.Content.ReadAsStringAsync(); if (!request.IsSuccessStatusCode) { - _sawmill.Log(LogLevel.Error, $"Discord returned bad status code when posting message (perhaps the message is too long?): {request.StatusCode}\nResponse: {content}"); + _sawmill.Log(LogLevel.Error, + $"Discord returned bad status code when posting message (perhaps the message is too long?): {request.StatusCode}\nResponse: {content}"); _relayMessages.Remove(userId); return; } @@ -310,7 +450,8 @@ namespace Content.Server.Administration.Systems var id = JsonNode.Parse(content)?["id"]; if (id == null) { - _sawmill.Log(LogLevel.Error, $"Could not find id in json-content returned from discord webhook: {content}"); + _sawmill.Log(LogLevel.Error, + $"Could not find id in json-content returned from discord webhook: {content}"); _relayMessages.Remove(userId); return; } @@ -325,7 +466,8 @@ namespace Content.Server.Administration.Systems if (!request.IsSuccessStatusCode) { var content = await request.Content.ReadAsStringAsync(); - _sawmill.Log(LogLevel.Error, $"Discord returned bad status code when patching message (perhaps the message is too long?): {request.StatusCode}\nResponse: {content}"); + _sawmill.Log(LogLevel.Error, + $"Discord returned bad status code when patching message (perhaps the message is too long?): {request.StatusCode}\nResponse: {content}"); _relayMessages.Remove(userId); return; } @@ -355,7 +497,8 @@ namespace Content.Server.Administration.Systems : $"pre-round lobby for round {_gameTicker.RoundId + 1}", GameRunLevel.InRound => $"round {_gameTicker.RoundId}", GameRunLevel.PostRound => $"post-round {_gameTicker.RoundId}", - _ => throw new ArgumentOutOfRangeException(nameof(_gameTicker.RunLevel), $"{_gameTicker.RunLevel} was not matched."), + _ => throw new ArgumentOutOfRangeException(nameof(_gameTicker.RunLevel), + $"{_gameTicker.RunLevel} was not matched."), }; return new WebhookPayload @@ -401,6 +544,7 @@ namespace Content.Server.Administration.Systems protected override void OnBwoinkTextMessage(BwoinkTextMessage message, EntitySessionEventArgs eventArgs) { base.OnBwoinkTextMessage(message, eventArgs); + _activeConversations[message.UserId] = DateTime.Now; var senderSession = eventArgs.SenderSession; // TODO: Sanitize text? @@ -422,7 +566,9 @@ namespace Content.Server.Administration.Systems string bwoinkText; - if (senderAdmin is not null && senderAdmin.Flags == AdminFlags.Adminhelp) // Mentor. Not full admin. That's why it's colored differently. + if (senderAdmin is not null && + senderAdmin.Flags == + AdminFlags.Adminhelp) // Mentor. Not full admin. That's why it's colored differently. { bwoinkText = $"[color=purple]{senderSession.Name}[/color]"; } @@ -461,7 +607,9 @@ namespace Content.Server.Administration.Systems { string overrideMsgText; // Doing the same thing as above, but with the override name. Theres probably a better way to do this. - if (senderAdmin is not null && senderAdmin.Flags == AdminFlags.Adminhelp) // Mentor. Not full admin. That's why it's colored differently. + if (senderAdmin is not null && + senderAdmin.Flags == + AdminFlags.Adminhelp) // Mentor. Not full admin. That's why it's colored differently. { overrideMsgText = $"[color=purple]{_overrideClientName}[/color]"; } @@ -476,7 +624,11 @@ namespace Content.Server.Administration.Systems overrideMsgText = $"{(message.PlaySound ? "" : "(S) ")}{overrideMsgText}: {escapedText}"; - RaiseNetworkEvent(new BwoinkTextMessage(message.UserId, senderSession.UserId, overrideMsgText, playSound: playSound), session.Channel); + RaiseNetworkEvent(new BwoinkTextMessage(message.UserId, + senderSession.UserId, + overrideMsgText, + playSound: playSound), + session.Channel); } else RaiseNetworkEvent(msg, session.Channel); @@ -496,8 +648,18 @@ namespace Content.Server.Administration.Systems { str = str[..(DescriptionMax - _maxAdditionalChars - unameLength)]; } + var nonAfkAdmins = GetNonAfkAdmins(); - _messageQueues[msg.UserId].Enqueue(GenerateAHelpMessage(senderSession.Name, str, !personalChannel, _gameTicker.RoundDuration().ToString("hh\\:mm\\:ss"), _gameTicker.RunLevel, playedSound: playSound, noReceivers: nonAfkAdmins.Count == 0)); + var messageParams = new AHelpMessageParams( + senderSession.Name, + str, + !personalChannel, + _gameTicker.RoundDuration().ToString("hh\\:mm\\:ss"), + _gameTicker.RunLevel, + playedSound: playSound, + noReceivers: nonAfkAdmins.Count == 0 + ); + _messageQueues[msg.UserId].Enqueue(GenerateAHelpMessage(messageParams)); } if (admins.Count != 0 || sendsWebhook) @@ -512,7 +674,8 @@ namespace Content.Server.Administration.Systems private IList GetNonAfkAdmins() { return _adminManager.ActiveAdmins - .Where(p => (_adminManager.GetAdminData(p)?.HasFlag(AdminFlags.Adminhelp) ?? false) && !_afkManager.IsAfk(p)) + .Where(p => (_adminManager.GetAdminData(p)?.HasFlag(AdminFlags.Adminhelp) ?? false) && + !_afkManager.IsAfk(p)) .Select(p => p.Channel) .ToList(); } @@ -525,25 +688,69 @@ namespace Content.Server.Administration.Systems .ToList(); } - private static string GenerateAHelpMessage(string username, string message, bool admin, string roundTime, GameRunLevel roundState, bool playedSound, bool noReceivers = false) + private static string GenerateAHelpMessage(AHelpMessageParams parameters) { var stringbuilder = new StringBuilder(); - if (admin) + if (parameters.Icon != null) + stringbuilder.Append(parameters.Icon); + else if (parameters.IsAdmin) stringbuilder.Append(":outbox_tray:"); - else if (noReceivers) + else if (parameters.NoReceivers) stringbuilder.Append(":sos:"); else stringbuilder.Append(":inbox_tray:"); - if(roundTime != string.Empty && roundState == GameRunLevel.InRound) - stringbuilder.Append($" **{roundTime}**"); - if (!playedSound) + if (parameters.RoundTime != string.Empty && parameters.RoundState == GameRunLevel.InRound) + stringbuilder.Append($" **{parameters.RoundTime}**"); + if (!parameters.PlayedSound) stringbuilder.Append(" **(S)**"); - stringbuilder.Append($" **{username}:** "); - stringbuilder.Append(message); + + if (parameters.Icon == null) + stringbuilder.Append($" **{parameters.Username}:** "); + else + stringbuilder.Append($" **{parameters.Username}** "); + stringbuilder.Append(parameters.Message); return stringbuilder.ToString(); } } -} + public sealed class AHelpMessageParams + { + public string Username { get; set; } + public string Message { get; set; } + public bool IsAdmin { get; set; } + public string RoundTime { get; set; } + public GameRunLevel RoundState { get; set; } + public bool PlayedSound { get; set; } + public bool NoReceivers { get; set; } + public string? Icon { get; set; } + + public AHelpMessageParams( + string username, + string message, + bool isAdmin, + string roundTime, + GameRunLevel roundState, + bool playedSound, + bool noReceivers = false, + string? icon = null) + { + Username = username; + Message = message; + IsAdmin = isAdmin; + RoundTime = roundTime; + RoundState = roundState; + PlayedSound = playedSound; + NoReceivers = noReceivers; + Icon = icon; + } + } + + public enum PlayerStatusType + { + Connected, + Disconnected, + Banned, + } +} diff --git a/Content.Shared/Administration/PlayerInfo.cs b/Content.Shared/Administration/PlayerInfo.cs index 93f1aa0b39..ed54d57bbe 100644 --- a/Content.Shared/Administration/PlayerInfo.cs +++ b/Content.Shared/Administration/PlayerInfo.cs @@ -18,6 +18,8 @@ namespace Content.Shared.Administration { private string? _playtimeString; + public bool IsPinned { get; set; } + public string PlaytimeString => _playtimeString ??= OverallPlaytime?.ToString("%d':'hh':'mm") ?? Loc.GetString("generic-unknown-title"); diff --git a/Resources/Locale/en-US/administration/bwoink.ftl b/Resources/Locale/en-US/administration/bwoink.ftl index 3a92f58ad1..e43932dc1d 100644 --- a/Resources/Locale/en-US/administration/bwoink.ftl +++ b/Resources/Locale/en-US/administration/bwoink.ftl @@ -16,3 +16,6 @@ admin-bwoink-play-sound = Bwoink? bwoink-title-none-selected = None selected bwoink-system-rate-limited = System: you are sending messages too quickly. +bwoink-system-player-disconnecting = has disconnected. +bwoink-system-player-reconnecting = has reconnected. +bwoink-system-player-banned = has been banned for: {$banReason} diff --git a/Resources/Textures/Interface/Bwoink/pinned.png b/Resources/Textures/Interface/Bwoink/pinned.png new file mode 100644 index 0000000000000000000000000000000000000000..80c8a202005649d8b1f81cba5a9a67e8c38b8118 GIT binary patch literal 2267 zcmV<12qgE3P) zaB^>EX>4U6ba`-PAZ2)IW&i+q+T~YSk}D|;{O1&N1SAlG$tTVzM0-4Gy~+CZUJvgk)bH%((!ek| z& z{?&fWkoI7+Zf*@;!BP`=Ip*$Q#+%(n;O5V}j6C2?4xpwF%Hqf@lif%_$ldhL+}c}$ z?npjM<|F%;(g*T6Z@c@zW!M~{@UVg8G5L$)n}OX05#KjhMfy0M{TrjjG5RsP>;o7L zdqr7uvNQX@v4C>7x&m9;R!H7#wFRkCA_mFBkf%nO2KAL!s(|RZvm$4% z?3OJ$<;2xZo%~ERSY2|>MQB;M8|Pr=3l>`ArZrxrh>;t?6}zcoVE#Ip?;2l8W{f&1 zA{#GU0T<7eJ2y3yn{RkQ5E@%ISp=VH%WrSi50)wvltpvI1hXwih$3`dTW;y>;3vqB zEks7!4giWUwg3z{C}0CQp+Hudl?XgW2$X>w`-BS=AQ5f=$=vKGj#Lp=yma)!ewb zhGU|IrY*MAawpSqQgq*?hps*L)bqev8*ca^BMcpJq>(SGZB;*|7gVFI8ZV`$pI%gh z)u^5!XdWjrHG^X835x4f01KL@W;T-dJe8Z8*~His!T>2#8`Eei1_^y9mO&TouF5^7 zo00gGZv2ySW=i)P${9%aS+@tOwRz9grP#3xC#Tk7_o2PVY&hn5spWU`|3jcrCS{;5 zp0$GO;`w0aeKe&HXlL>P0Z7nh2lhb47VyGha?&2R_Gu{oCo9 zXUY5twRwk{1KnXV*S4>xcHeeRv~Y;lN&dBUbOyS?H%jlRd6{3T9Y@sRh@)#4mLKl( zLZO6?Du8JtFY~6I-Dct4+z93?+QwJ~e6Y2Fs~E>Lpus=~zT#o~T;O&IW!}ef2GV-5 zOmM9XvSL4iN95 zL071D!#-Wt(ow&0v_Hf$pM(E|>+xbR-}Jdm`Z(00D(*LqkwWLqi~Na&Km7Y-Iodc$|Ha zJxIeq9K~N#wIVGJ77=mCP{qN5sEDIfu?QAQTcK44lS@B@CJjl7i=*ILaPVWX>fqw6 ztAnc`2!4P#J2)x2NQwVT3N2zhIPS;0dyl(!fKV?p)$AAtRLwF{@tBy+t%!kFbRmd- zj3Oj4Q%|H9GVmN<_we!cF3PjK&;2<j1(z*&EwtO?Y;eb zrrF;QeARNRr}{r<00006VoOIv0GI#(0G#2B2*CgV010qNS#tmY4#NNd4#NS*Z>VGd z000McNliru=mrcHGYl3ZkB$HU0@O)FK~z}7?U&6<6=4*{e`jWHew3+5H!w>Q`dUa} zw21DeMHy|{NB>g07X1s+qE(w()S`uvMG<6DY4)L}rI}sxe#|^AJVT=y-Z2pZ54_Cf zW!`h1_dL%zXD;m6j{Pqt$$S;I(r=XG-4GZ6Vo6hGHn|l5f*kK20xkj9fm4#&whe$J z^K6|34g!~f!;-org_6SUpkN6o07ak#bOFP_2jG>YNnjb6GqXgJnVB*d*bUTyO1j@L z05g-M4&bMsIR^9qgTNPH9GC{40~3Ck|Zg*^VuXx+9b8c zalBNiRC?n$J|2c)Z;sNnb!e^uO{+v01VKM=TT+uNJdpHRQZvwQX7k{=1LCBQyMS@%PKyIo!jeWh`Tf*`o%>f8&=d+Brn zWv}a2Gi!2j)iWtga(2?d1=ybI3m^)^@EY*aowxe!%6?#vtG@}j;?3t=hK5}8%)wVA z1!)F0v{I=Q3=Iv1lKLb)kW`hFD8D6=MkNin26B($(+(isAW)nMC`n}(^}M9VlFoQz z%iW62X|gqGP3cHnU}bMY6<`#22fPRRox(8pF!GcwcoT`;iM*~C{5kExX1()G_}*Iw zegU`&d~$uooB1HA`N66Wo-rRp&pg;XFy+}On^`@bijs!?%;KslXpn+LQUrYUEZhZd z0uOyJ29~oOE=!+3$0QZZthN~n448B-?*mVOJHYpb%V`BfZPOi1QVVbZIFX9W%&PzT pNoG0AF`Z;Gv--||g&o@p`vtnIzN(0dzC-{3002ovPDHLkV1iqBA)o*N literal 0 HcmV?d00001 diff --git a/Resources/Textures/Interface/Bwoink/pinned2.png b/Resources/Textures/Interface/Bwoink/pinned2.png new file mode 100644 index 0000000000000000000000000000000000000000..11c4b62f123e9a93fedc231390652f33f76f6d9b GIT binary patch literal 2028 zcmV-P) zaB^>EX>4U6ba`-PAZ2)IW&i+q+RayKvhyem{I65Y5kPF>IILB3gE{^*7$?s1y*SC6 zsxcLVg+NWWz%jLd{_gY_E>>d6x*$G!uW;FDBPTROZC9Lkt?azdi&qz(Z|rpGV3-VQ zvpt5i{1fc%I$)2X^R1m^^{}joR>wY}8Ieb{dISkOZ+30hM6qoRA0-^2<^{DZ#|dTq zO50YbSFrI+M}rMusXBNW=4N2Voy|gE#?P9B+Hd#ahceoVP&u=&6@=U@Z?Ba)5_CiI z-lBW8{(Xi!Oj@xp6?vT-Z#T zn81+>^wCfbMRyJ+nrZ~P6>ek<%zVM3XWTgB6)lKdHC$O^GCjrqL!qBK-zn6485C(H z7p{PdN9F>?P;T7e1wnLQy17a4UY7jokUvOODCj25f(0g(w<)sI*W5BwX9GWndfP&p zLR}MpBE)t8qYV^LUK^*qR)INa4ITvoB_PK>;S2?|b6f$Et-)@gz``Ro#socm*|Fzg z#@PfR9ClWKHqj)AWvxU01S`m)guP{*bKV6f$F8C0Fgcy<- zvEsx_5RoV;ax^#tUGyKvgDXkLHZP1T=69oDY2x= z)l?i4)z?s^#+sU@hLfV%=9+JzNsBFY4qS{jRp}e7*UaIj_YWRhV zYOqoW`xJT{CvIp4#n@^n9)x*_* zqf0INkX}r|ZxAp&EqTG5% zv&(quna29|$8S*4+XH(Zu}9>EY3slifkCOX^DsvQUEmQw|e zG`_LofP=pQXE(+*<7h46xGi36y!)eO8$vH*okT|84gd1J_PY~x{Aa?qJN*k`)Ac+q zF0x+$00D(*LqkwWLqi~Na&Km7Y-Iodc$|HaJxIeq7>3`bYE>!@b`WvMP@OD@iaJUa zi(sL&6$HXu!xG|1K!l7cN+`oZgm#S- z6G=LcdiaMNe}Y^xxk_N5?HilAo54&jasg^i5e{;1=jz zbNkjj$LRx*rd}=I00)P_Xo0fVJ>K2j-nV~in*I9$q3&|J-eT-O00006VoOIv0GI#( z0G#2B2*CgV010qNS#tmY4#NNd4#NS*Z>VGd000McNliru=mrJ~0R)c;>Ae5|0sTot zK~z}7?bbbO6j2n$@sk+xDv79|rnN{4UkVEa1EL^^bqYIetYRV2fQ1GX1q(lcSl9@H zA3y{fK|$;Uwb3FVh`K_8#JtYT&%y}~VK?s1?jlH@W*Fw)`9J60bI&~yoBE%Ge(XVS zy>mKS2=9o9LlJQ=A|}xDFIHd}4^hD-bQjFE9li~x@Yrw7VG4ci26y2I?&3XG{m~q5 zV6a{AQCz`mEUB(}+`&*Q!P{{T&+sD$Wol~?x3INYa5qlmiS}J%TEcY<)C(KJLF`3u zzT7wQ0jYBOxjrYlYDF3mrz7HWM0|;eHxY3-B92Bx+4KD>BHl*CnTU9jzt@a@3&!y| zcb*iYSS=CxSDZx;j$>CnThNEeDtn!kFz^7o%bxLzm~8_74kw$*{60+Q=eZFRt9j;6 zH(d?$TkaaZHE7}~Mq5>UcH%`9$Vv_PCyckO`pwMDOjbGn*#<@DcFV4097~d9J$OEU z7EP=fe2$TJ!Pj)5Mov_4z8&zDEX&}2{%s&HtFr}olJ^6{ErF+LS`|JvHrADo*@3Hh z)Uc3Wz5T6(Cq;OTPH3u7wqIgjGw^{VNm9tNEZqoRm@|lpyfJx%{iO|5DwQrQq-nZX z54>m`2QaeMjQ*vAu3i6^mzO^_0xz-3o%IarDEagDx8R# zaB^>EX>4U6ba`-PAZ2)IW&i+q+SONCvcx6~{MRXR1dtHRaWG3&Zjj@r!FaYe>zkx1 zF*ODYkeY6R$JGA%v(q2A*d#|zL-fgegUcnCIHM8Gex-T0#?AY@cy;0V%1);ahDlJ% z{uuHapJCVYgd>LCuI&_8569(bbsP?5L>|%VB}mwLw_CRyrM5SGis2IKwxE_Za6(x> zZ%tUv_PKbbOM?qwsVV{qa}z5Dcb0`f#?MJc?Qyq)X=4o9PMBuLu~rarwY;M?=8~W* zl8+YMvVUsbkk5J9<%UbYI6~uYht>P!Pl_)B%Lx%*cl2<$`bl!{HTK^2)n(_ws9zan z=wN3$>2(9;GN*Zz;Z)HMvm}&gvMG?fnqoGTVv}Vs-pM*!ZMNOESr=OX(Q)H|nz^t{ zTa>_wiwvFID7JHuBvm4`EZj(BhT&>z5L*Gp3KYNw618I&F$ZhGV}w8%$gxj&g928SD?qXn@l1gukJy+K>>SI=o`)G{ z6NFIgtN?A2WQgUQB7cI5$f2yFPF1}IjigDl7w^1!?}HzQTn-Xk(BMM|F{F^AL>D#s z7-Ebm=EO;G25Rytq?l65nJFVshOdnA8J3MV+1#d^-@+ERwB>^IDXwVoC6riF$(5^A z923>oP-9IsH%kpCMRQG?Z=uDOTJFfTF5PwQzK0%r>iMMFQuRmqKsCEm^M$zXa>dDStuTc0!U~cnwe;wBg^=qaoctp&UWFpSs;qt&aCxnTqYZaByk_yAS;>X5yH~OD%s}{|6jxt#>qg z98Z0tvA*N+8&vf9!~w;aJYp|Yql;GG=-IwO_c2FDxZ5teK>QUddRLjn%)_DdfX|Q7 z(e2ugyf{C-!m`(t_nBwg?&C(>*LdmuOnHT95AZqxpE~OCb!NX_>a6Kajh^!LyS?@R zA$^cVyXg+t!7+V(sO|0xnOysCrpG&E|K>o-oD$x#Ds!<|+rImE=AYIFghxZ@9Uqeg zkIy4MBXGdv&k-7Rn57lT7h*khD(ztxy$uK-K6ts}RqVi%-Xg+zbSLb-x1J!pgX|4N z$K1B%3LJTSi=_bve;3Z1gg)97Kc7xx>D4>*fAsGEcO7;7k-`T({SBq(`(sWK`yv1U z0flKpLr_UWLm+T+Z)Rz1WdHzpoPCi!NW(xJ#a~mkA}tOU5pl>+#leE8h@(`o2o_3P zp;ZTyOFx7r4M~cNqu^R_@ME#+;Nq;SgR3A2et=*}B%`#H)n3&D2h=EshA&7pAA|x?WPox(z@El+F@bUF7%Co%B{W(HP-eiDJ zB%WouVG*wrPj6Z}=Y8TZD@h9RIq{f57bJe%gm2FkDyrBx%vM2hxf z9{xecpCp$|t_?79%%cJolH&*egWuhng~G?f?T%x@1U>#(DV?)@U^STxLpyDn@E|)m z$z&$8*V=2}4&2x^o6XaiyT?ERoSRvw@=rA9fbIhCfG6%AT?c_vUDEhw69Tj8-bb#$L5;h}ns%RUE zJ^>uq2fDzS6xmcd0?-nPEbl9s5;y{Czy?s4bAS^`eK3mB-Mb2KQ#j8qUVAG~!X^~e zZAsYI^E&WY&j$Pj4uFoC^-Fx*0$xce>7O2NW} zlBp?ODB_=H7R>C>%mxz&k!E=Z_@;i&+XnDLIWCKS5ok*O6Q$~G>PaXix~lN3(7q!Q zNlE>ThEh_Z&KxVv9;VL7;3 zbm;CoD$0i1ud-bt(ChU=yuOW literal 0 HcmV?d00001 From fda852d2e0ef04f5005122194b5029deeca48029 Mon Sep 17 00:00:00 2001 From: PJBot Date: Tue, 30 Jul 2024 08:29:40 +0000 Subject: [PATCH 70/89] Automatic changelog update --- Resources/Changelog/Admin.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/Resources/Changelog/Admin.yml b/Resources/Changelog/Admin.yml index 56b708a79e..6625e7ae7f 100644 --- a/Resources/Changelog/Admin.yml +++ b/Resources/Changelog/Admin.yml @@ -367,5 +367,16 @@ Entries: id: 45 time: '2024-07-11T05:14:01.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/29896 +- author: Repo + changes: + - message: Added aHelp player pinning. + type: Add + - message: Added disconnection, reconnection, banning notice on relay and ahelp. + type: Add + - message: Fixed search clears on aHelp close. + type: Fix + id: 46 + time: '2024-07-30T08:28:32.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/28639 Name: Admin Order: 1 From 517598f72dbc615ba9b3269ec75e907640b5ee77 Mon Sep 17 00:00:00 2001 From: DrSmugleaf <10968691+DrSmugleaf@users.noreply.github.com> Date: Tue, 30 Jul 2024 01:31:59 -0700 Subject: [PATCH 71/89] Fix climbing not ending when any contacts still exist (#30488) --- .../Climbing/Systems/ClimbSystem.cs | 34 +++++++++++++++++-- 1 file changed, 31 insertions(+), 3 deletions(-) diff --git a/Content.Shared/Climbing/Systems/ClimbSystem.cs b/Content.Shared/Climbing/Systems/ClimbSystem.cs index 726cdc2468..635bf36049 100644 --- a/Content.Shared/Climbing/Systems/ClimbSystem.cs +++ b/Content.Shared/Climbing/Systems/ClimbSystem.cs @@ -1,5 +1,4 @@ using Content.Shared.ActionBlocker; -using Content.Shared.Body.Systems; using Content.Shared.Buckle.Components; using Content.Shared.Climbing.Components; using Content.Shared.Climbing.Events; @@ -44,6 +43,7 @@ public sealed partial class ClimbSystem : VirtualController private const string ClimbingFixtureName = "climb"; private const int ClimbingCollisionGroup = (int) (CollisionGroup.TableLayer | CollisionGroup.LowImpassable); + private EntityQuery _climbableQuery; private EntityQuery _fixturesQuery; private EntityQuery _xformQuery; @@ -51,6 +51,7 @@ public sealed partial class ClimbSystem : VirtualController { base.Initialize(); + _climbableQuery = GetEntityQuery(); _fixturesQuery = GetEntityQuery(); _xformQuery = GetEntityQuery(); @@ -350,12 +351,39 @@ public sealed partial class ClimbSystem : VirtualController { if (args.OurFixtureId != ClimbingFixtureName || !component.IsClimbing - || component.NextTransition != null - || args.OurFixture.Contacts.Count > 1) + || component.NextTransition != null) { return; } + if (args.OurFixture.Contacts.Count > 1) + { + foreach (var contact in args.OurFixture.Contacts.Values) + { + if (!contact.IsTouching) + continue; + + var otherEnt = contact.EntityA; + var otherFixture = contact.FixtureA; + var otherFixtureId = contact.FixtureAId; + if (uid == contact.EntityA) + { + otherEnt = contact.EntityB; + otherFixture = contact.FixtureB; + otherFixtureId = contact.FixtureBId; + } + + if (args.OtherEntity == otherEnt && args.OtherFixtureId == otherFixtureId) + continue; + + if (otherFixture is { Hard: true } && + _climbableQuery.HasComp(otherEnt)) + { + return; + } + } + } + foreach (var otherFixture in args.OurFixture.Contacts.Keys) { // If it's the other fixture then ignore em From 648f94f4bb0d1f56b7b9262b5537b89c41581f02 Mon Sep 17 00:00:00 2001 From: themias <89101928+themias@users.noreply.github.com> Date: Tue, 30 Jul 2024 04:35:30 -0400 Subject: [PATCH 72/89] Fix fingerprint transfer on weapon attack (#30257) * Fix fingerprint transfer on weapon attack * Switch to just not raising the event * one more --- Content.Shared/Interaction/SharedInteractionSystem.cs | 6 +++--- Content.Shared/Weapons/Melee/SharedMeleeWeaponSystem.cs | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Content.Shared/Interaction/SharedInteractionSystem.cs b/Content.Shared/Interaction/SharedInteractionSystem.cs index c32b4bcf78..aca078687a 100644 --- a/Content.Shared/Interaction/SharedInteractionSystem.cs +++ b/Content.Shared/Interaction/SharedInteractionSystem.cs @@ -952,7 +952,7 @@ namespace Content.Shared.Interaction RaiseLocalEvent(target, interactUsingEvent, true); DoContactInteraction(user, used, interactUsingEvent); DoContactInteraction(user, target, interactUsingEvent); - DoContactInteraction(used, target, interactUsingEvent); + // Contact interactions are currently only used for forensics, so we don't raise used -> target if (interactUsingEvent.Handled) return; @@ -973,7 +973,7 @@ namespace Content.Shared.Interaction if (canReach) { DoContactInteraction(user, target, afterInteractEvent); - DoContactInteraction(used, target, afterInteractEvent); + // Contact interactions are currently only used for forensics, so we don't raise used -> target } if (afterInteractEvent.Handled) @@ -989,7 +989,7 @@ namespace Content.Shared.Interaction if (canReach) { DoContactInteraction(user, target, afterInteractUsingEvent); - DoContactInteraction(used, target, afterInteractUsingEvent); + // Contact interactions are currently only used for forensics, so we don't raise used -> target } } diff --git a/Content.Shared/Weapons/Melee/SharedMeleeWeaponSystem.cs b/Content.Shared/Weapons/Melee/SharedMeleeWeaponSystem.cs index 42b6a3c9c7..72cf4ec550 100644 --- a/Content.Shared/Weapons/Melee/SharedMeleeWeaponSystem.cs +++ b/Content.Shared/Weapons/Melee/SharedMeleeWeaponSystem.cs @@ -485,7 +485,7 @@ public abstract class SharedMeleeWeaponSystem : EntitySystem var weapon = GetEntity(ev.Weapon); - Interaction.DoContactInteraction(weapon, target); + // We skip weapon -> target interaction, as forensics system applies DNA on hit Interaction.DoContactInteraction(user, weapon); // If the user is using a long-range weapon, this probably shouldn't be happening? But I'll interpret melee as a @@ -616,7 +616,7 @@ public abstract class SharedMeleeWeaponSystem : EntitySystem // For stuff that cares about it being attacked. foreach (var target in targets) { - Interaction.DoContactInteraction(weapon, target); + // We skip weapon -> target interaction, as forensics system applies DNA on hit // If the user is using a long-range weapon, this probably shouldn't be happening? But I'll interpret melee as a // somewhat messy scuffle. See also, light attacks. From 89b8ec713ad3b53dfc678dbca5b6032cb4283780 Mon Sep 17 00:00:00 2001 From: PJBot Date: Tue, 30 Jul 2024 08:36:37 +0000 Subject: [PATCH 73/89] Automatic changelog update --- Resources/Changelog/Changelog.yml | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 9ced9860f3..7d0c591658 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,12 +1,4 @@ Entries: -- author: Plykiya - changes: - - message: Disarming a player now causes them to throw the disarmed item away from - them. - type: Tweak - id: 6511 - time: '2024-05-02T12:32:47.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/27589 - author: fujiwaranao changes: - message: Renault now has additional fox noises. @@ -3784,3 +3776,10 @@ id: 7010 time: '2024-07-30T04:41:21.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/29964 +- author: themias + changes: + - message: Fixed victim's fingerprints transferring onto an attacker's weapon + type: Fix + id: 7011 + time: '2024-07-30T08:35:30.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/30257 From 0b95de1efcf7ce551eae2cb59f18652c907ac7b4 Mon Sep 17 00:00:00 2001 From: chavonadelal <156101927+chavonadelal@users.noreply.github.com> Date: Tue, 30 Jul 2024 14:29:32 +0300 Subject: [PATCH 74/89] Adding an AccessReader to a particle accelerator with engineering access (#30394) Adding an AccessReader to a particle accelerator --- .../UI/ParticleAcceleratorControlMenu.xaml.cs | 17 ++++++++++++++--- .../Power/Generation/PA/control_box.yml | 2 ++ 2 files changed, 16 insertions(+), 3 deletions(-) diff --git a/Content.Client/ParticleAccelerator/UI/ParticleAcceleratorControlMenu.xaml.cs b/Content.Client/ParticleAccelerator/UI/ParticleAcceleratorControlMenu.xaml.cs index 9c2b51dcae..8b21e7d94b 100644 --- a/Content.Client/ParticleAccelerator/UI/ParticleAcceleratorControlMenu.xaml.cs +++ b/Content.Client/ParticleAccelerator/UI/ParticleAcceleratorControlMenu.xaml.cs @@ -3,6 +3,7 @@ using Content.Client.Message; using Content.Client.Resources; using Content.Client.UserInterface.Controls; using Content.Shared.Singularity.Components; +using Content.Shared.Access.Systems; using Robust.Client.Animations; using Robust.Client.AutoGenerated; using Robust.Client.Graphics; @@ -13,6 +14,7 @@ using Robust.Client.UserInterface.XAML; using Robust.Shared.Noise; using Robust.Shared.Prototypes; using Robust.Shared.Timing; +using Robust.Client.Player; namespace Content.Client.ParticleAccelerator.UI; @@ -21,6 +23,11 @@ public sealed partial class ParticleAcceleratorControlMenu : FancyWindow { [Dependency] private readonly IResourceCache _cache = default!; + [Dependency] private readonly IEntityManager _entityManager = default!; + [Dependency] private readonly IPlayerManager _player = default!; + + private readonly AccessReaderSystem _accessReader; + private readonly FastNoiseLite _drawNoiseGenerator; private readonly Animation _alarmControlAnimation; @@ -44,6 +51,7 @@ public sealed partial class ParticleAcceleratorControlMenu : FancyWindow RobustXamlLoader.Load(this); IoCManager.InjectDependencies(this); + _accessReader = _entityManager.System(); _drawNoiseGenerator = new(); _drawNoiseGenerator.SetFractalType(FastNoiseLite.FractalType.FBm); _drawNoiseGenerator.SetFrequency(0.5f); @@ -150,7 +158,7 @@ public sealed partial class ParticleAcceleratorControlMenu : FancyWindow private bool StrengthSpinBoxValid(int n) { - return n >= 0 && n <= _maxStrength ; + return n >= 0 && n <= _maxStrength; } protected override DragMode GetDragModeFor(Vector2 relativeMousePos) @@ -201,13 +209,16 @@ public sealed partial class ParticleAcceleratorControlMenu : FancyWindow private void UpdateUI(bool assembled, bool blocked, bool enabled, bool powerBlock) { + bool hasAccess = _player.LocalSession?.AttachedEntity is {} player + && _accessReader.IsAllowed(player, _entity); + OnButton.Pressed = enabled; OffButton.Pressed = !enabled; - var cantUse = !assembled || blocked || powerBlock; + var cantUse = !assembled || blocked || powerBlock || !hasAccess; OnButton.Disabled = cantUse; OffButton.Disabled = cantUse; - ScanButton.Disabled = blocked; + ScanButton.Disabled = blocked || !hasAccess; var cantChangeLevel = !assembled || blocked || !enabled || cantUse; StateSpinBox.SetButtonDisabled(cantChangeLevel); diff --git a/Resources/Prototypes/Entities/Structures/Power/Generation/PA/control_box.yml b/Resources/Prototypes/Entities/Structures/Power/Generation/PA/control_box.yml index 96392ecd00..ae3fc96774 100644 --- a/Resources/Prototypes/Entities/Structures/Power/Generation/PA/control_box.yml +++ b/Resources/Prototypes/Entities/Structures/Power/Generation/PA/control_box.yml @@ -25,6 +25,8 @@ - type: Wires boardName: wires-board-name-pa layoutId: ParticleAccelerator + - type: AccessReader + access: [["Engineering"]] # Unfinished From 04b7b802108d527e2a371cefdc2ddd266c521f60 Mon Sep 17 00:00:00 2001 From: PJBot Date: Tue, 30 Jul 2024 11:30:38 +0000 Subject: [PATCH 75/89] Automatic changelog update --- Resources/Changelog/Changelog.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 7d0c591658..7703e5baad 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: fujiwaranao - changes: - - message: Renault now has additional fox noises. - type: Add - id: 6512 - time: '2024-05-02T12:35:11.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/27578 - author: Doc-Michael changes: - message: CMO's Lab coat is now more resistant to chemical spills and minor cuts @@ -3783,3 +3776,10 @@ id: 7011 time: '2024-07-30T08:35:30.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/30257 +- author: to4no_fix + changes: + - message: Now engineering access is needed to interact with the particle accelerator + type: Tweak + id: 7012 + time: '2024-07-30T11:29:32.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/30394 From 247222beabacd3ad540b35c26c1101c0fdc7bd61 Mon Sep 17 00:00:00 2001 From: Cojoke <83733158+Cojoke-dot@users.noreply.github.com> Date: Tue, 30 Jul 2024 08:53:44 -0500 Subject: [PATCH 76/89] Remove Walking out of Containers while You can't Walk (#30391) * Require Standing to Exit Containers * whoops, forgot a not * You can't walk out if cuffed * GUAH(requested stuff) * bwomp(tiny cleanup) --- .../Disposal/Unit/EntitySystems/DisposalUnitSystem.cs | 7 +++---- Content.Server/Resist/ResistLockerSystem.cs | 5 +++++ Content.Shared/Burial/BurialSystem.cs | 6 +++++- .../Storage/EntitySystems/SharedEntityStorageSystem.cs | 10 +++++----- 4 files changed, 18 insertions(+), 10 deletions(-) diff --git a/Content.Server/Disposal/Unit/EntitySystems/DisposalUnitSystem.cs b/Content.Server/Disposal/Unit/EntitySystems/DisposalUnitSystem.cs index aa1ab3dacc..37a5ba2ef8 100644 --- a/Content.Server/Disposal/Unit/EntitySystems/DisposalUnitSystem.cs +++ b/Content.Server/Disposal/Unit/EntitySystems/DisposalUnitSystem.cs @@ -25,7 +25,6 @@ using Content.Shared.Interaction; using Content.Shared.Item; using Content.Shared.Movement.Events; using Content.Shared.Popups; -using Content.Shared.Throwing; using Content.Shared.Verbs; using Robust.Server.Audio; using Robust.Server.GameObjects; @@ -35,7 +34,6 @@ using Robust.Shared.Map.Components; using Robust.Shared.Physics.Components; using Robust.Shared.Physics.Events; using Robust.Shared.Player; -using Robust.Shared.Random; using Robust.Shared.Utility; namespace Content.Server.Disposal.Unit.EntitySystems; @@ -331,12 +329,13 @@ public sealed class DisposalUnitSystem : SharedDisposalUnitSystem { var currentTime = GameTiming.CurTime; + if (!_actionBlockerSystem.CanMove(args.Entity)) + return; + if (!TryComp(args.Entity, out HandsComponent? hands) || hands.Count == 0 || currentTime < component.LastExitAttempt + ExitAttemptDelay) - { return; - } component.LastExitAttempt = currentTime; Remove(uid, component, args.Entity); diff --git a/Content.Server/Resist/ResistLockerSystem.cs b/Content.Server/Resist/ResistLockerSystem.cs index 2ab277d0f1..8294ecc5f9 100644 --- a/Content.Server/Resist/ResistLockerSystem.cs +++ b/Content.Server/Resist/ResistLockerSystem.cs @@ -8,6 +8,7 @@ using Content.Shared.Popups; using Content.Shared.Resist; using Content.Shared.Tools.Components; using Content.Shared.Tools.Systems; +using Content.Shared.ActionBlocker; namespace Content.Server.Resist; @@ -18,6 +19,7 @@ public sealed class ResistLockerSystem : EntitySystem [Dependency] private readonly PopupSystem _popupSystem = default!; [Dependency] private readonly SharedDoAfterSystem _doAfterSystem = default!; [Dependency] private readonly WeldableSystem _weldable = default!; + [Dependency] private readonly ActionBlockerSystem _actionBlocker = default!; public override void Initialize() { @@ -34,6 +36,9 @@ public sealed class ResistLockerSystem : EntitySystem if (!TryComp(uid, out EntityStorageComponent? storageComponent)) return; + if (!_actionBlocker.CanMove(args.Entity)) + return; + if (TryComp(uid, out var lockComponent) && lockComponent.Locked || _weldable.IsWelded(uid)) { AttemptResist(args.Entity, uid, storageComponent, component); diff --git a/Content.Shared/Burial/BurialSystem.cs b/Content.Shared/Burial/BurialSystem.cs index 45a89f3be9..5cf7d8820e 100644 --- a/Content.Shared/Burial/BurialSystem.cs +++ b/Content.Shared/Burial/BurialSystem.cs @@ -1,3 +1,4 @@ +using Content.Shared.ActionBlocker; using Content.Shared.Burial; using Content.Shared.Burial.Components; using Content.Shared.DoAfter; @@ -8,7 +9,6 @@ using Content.Shared.Popups; using Content.Shared.Storage.Components; using Content.Shared.Storage.EntitySystems; using Robust.Shared.Audio.Systems; -using Robust.Shared.Player; namespace Content.Server.Burial.Systems; @@ -18,6 +18,7 @@ public sealed class BurialSystem : EntitySystem [Dependency] private readonly SharedEntityStorageSystem _storageSystem = default!; [Dependency] private readonly SharedAudioSystem _audioSystem = default!; [Dependency] private readonly SharedPopupSystem _popupSystem = default!; + [Dependency] private readonly ActionBlockerSystem _actionBlocker = default!; public override void Initialize() { @@ -162,6 +163,9 @@ public sealed class BurialSystem : EntitySystem if (component.HandDiggingDoAfter != null) return; + if (!_actionBlocker.CanMove(args.Entity)) + return; + var doAfterEventArgs = new DoAfterArgs(EntityManager, args.Entity, component.DigDelay / component.DigOutByHandModifier, new GraveDiggingDoAfterEvent(), uid, target: uid) { NeedHand = false, diff --git a/Content.Shared/Storage/EntitySystems/SharedEntityStorageSystem.cs b/Content.Shared/Storage/EntitySystems/SharedEntityStorageSystem.cs index bb49725e04..4932613d0e 100644 --- a/Content.Shared/Storage/EntitySystems/SharedEntityStorageSystem.cs +++ b/Content.Shared/Storage/EntitySystems/SharedEntityStorageSystem.cs @@ -16,16 +16,14 @@ using Content.Shared.Tools.Systems; using Content.Shared.Verbs; using Content.Shared.Wall; using Content.Shared.Whitelist; -using Robust.Shared.Audio; +using Content.Shared.ActionBlocker; using Robust.Shared.Audio.Systems; using Robust.Shared.Containers; using Robust.Shared.GameStates; using Robust.Shared.Map; using Robust.Shared.Network; using Robust.Shared.Physics; -using Robust.Shared.Physics.Components; using Robust.Shared.Physics.Systems; -using Robust.Shared.Prototypes; using Robust.Shared.Timing; using Robust.Shared.Utility; @@ -47,6 +45,7 @@ public abstract class SharedEntityStorageSystem : EntitySystem [Dependency] protected readonly SharedTransformSystem TransformSystem = default!; [Dependency] private readonly WeldableSystem _weldable = default!; [Dependency] private readonly EntityWhitelistSystem _whitelistSystem = default!; + [Dependency] private readonly ActionBlockerSystem _actionBlocker = default!; public const string ContainerName = "entity_storage"; @@ -132,6 +131,9 @@ public abstract class SharedEntityStorageSystem : EntitySystem if (!HasComp(args.Entity)) return; + if (!_actionBlocker.CanMove(args.Entity)) + return; + if (_timing.CurTime < component.NextInternalOpenAttempt) return; @@ -139,9 +141,7 @@ public abstract class SharedEntityStorageSystem : EntitySystem Dirty(uid, component); if (component.OpenOnMove) - { TryOpenStorage(args.Entity, uid); - } } protected void OnFoldAttempt(EntityUid uid, SharedEntityStorageComponent component, ref FoldAttemptEvent args) From 5607c357445b736871bc9468d894a7e08b38ad85 Mon Sep 17 00:00:00 2001 From: PJBot Date: Tue, 30 Jul 2024 13:54:51 +0000 Subject: [PATCH 77/89] Automatic changelog update --- Resources/Changelog/Changelog.yml | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 7703e5baad..5ca55be22d 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: Doc-Michael - changes: - - message: CMO's Lab coat is now more resistant to chemical spills and minor cuts - type: Tweak - id: 6513 - time: '2024-05-02T12:37:12.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/27551 - author: Vasilis changes: - message: Removed airtight flaps from the construction menu. @@ -3783,3 +3776,11 @@ id: 7012 time: '2024-07-30T11:29:32.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/30394 +- author: Cojoke-dot + changes: + - message: You can no longer get out of a disposal chute or container while knocked + over by trying to walk + type: Fix + id: 7013 + time: '2024-07-30T13:53:44.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/30391 From 1a672c9c6d726f3cdde77e90d677dd4514c269fb Mon Sep 17 00:00:00 2001 From: lzk <124214523+lzk228@users.noreply.github.com> Date: Tue, 30 Jul 2024 15:55:21 +0200 Subject: [PATCH 78/89] add more logic gates prototypes for mapping (#30385) * Add more logic gates types for mapping * i forgor * me stupid * nuh --- .../Prototypes/Entities/Structures/gates.yml | 68 ++++++++++++++++++- .../Construction/Graphs/tools/logic_gate.yml | 2 +- Resources/migration.yml | 3 + 3 files changed, 71 insertions(+), 2 deletions(-) diff --git a/Resources/Prototypes/Entities/Structures/gates.yml b/Resources/Prototypes/Entities/Structures/gates.yml index 22ab745a1e..6b02840ba0 100644 --- a/Resources/Prototypes/Entities/Structures/gates.yml +++ b/Resources/Prototypes/Entities/Structures/gates.yml @@ -15,9 +15,10 @@ - type: entity parent: BaseLogicItem - id: LogicGate + id: LogicGateOr name: logic gate description: A logic gate with two inputs and one output. Technicians can change its mode of operation using a screwdriver. + suffix: Or components: - type: Sprite layers: @@ -51,6 +52,71 @@ Nand: { state: nand } Xnor: { state: xnor } +- type: entity + parent: LogicGateOr + id: LogicGateAnd + suffix: And + components: + - type: Sprite + layers: + - state: base + - state: and + map: [ "enum.LogicGateLayers.Gate" ] + - type: LogicGate + gate: And + +- type: entity + parent: LogicGateOr + id: LogicGateXor + suffix: Xor + components: + - type: Sprite + layers: + - state: base + - state: xor + map: [ "enum.LogicGateLayers.Gate" ] + - type: LogicGate + gate: Xor + +- type: entity + parent: LogicGateOr + id: LogicGateNor + suffix: Nor + components: + - type: Sprite + layers: + - state: base + - state: nor + map: [ "enum.LogicGateLayers.Gate" ] + - type: LogicGate + gate: Nor + +- type: entity + parent: LogicGateOr + id: LogicGateNand + suffix: Nand + components: + - type: Sprite + layers: + - state: base + - state: nand + map: [ "enum.LogicGateLayers.Gate" ] + - type: LogicGate + gate: Nand + +- type: entity + parent: LogicGateOr + id: LogicGateXnor + suffix: Xnor + components: + - type: Sprite + layers: + - state: base + - state: xnor + map: [ "enum.LogicGateLayers.Gate" ] + - type: LogicGate + gate: Xnor + - type: entity parent: BaseLogicItem id: EdgeDetector diff --git a/Resources/Prototypes/Recipes/Construction/Graphs/tools/logic_gate.yml b/Resources/Prototypes/Recipes/Construction/Graphs/tools/logic_gate.yml index 6e64f061eb..d366a2ea59 100644 --- a/Resources/Prototypes/Recipes/Construction/Graphs/tools/logic_gate.yml +++ b/Resources/Prototypes/Recipes/Construction/Graphs/tools/logic_gate.yml @@ -34,7 +34,7 @@ state: icon name: a multitool - node: logic_gate - entity: LogicGate + entity: LogicGateOr - node: edge_detector entity: EdgeDetector - node: power_sensor diff --git a/Resources/migration.yml b/Resources/migration.yml index a4276c7f10..92b2ca6d3b 100644 --- a/Resources/migration.yml +++ b/Resources/migration.yml @@ -377,3 +377,6 @@ SignDrones: SignMaterials SignShield: null # what was this even for? SignHydro2: SignHydro1 SignHydro3: SignHydro1 + +# 2024-07-27 +LogicGate: LogicGateOr From 9e1e9b8c34598aaf463b8294ece53df5d9842aef Mon Sep 17 00:00:00 2001 From: chavonadelal <156101927+chavonadelal@users.noreply.github.com> Date: Tue, 30 Jul 2024 17:05:19 +0300 Subject: [PATCH 79/89] Localization of the Salvage Expedition Console (#30339) * Localization of the Salvage Expedition Console * Localization of the Salvage Expedition Console 2 --- ...vageExpeditionConsoleBoundUserInterface.cs | 21 ++++++++- .../Expeditions/Modifiers/ISalvageMod.cs | 2 +- .../Expeditions/Modifiers/SalvageAirMod.cs | 2 +- .../Modifiers/SalvageBiomeModPrototype.cs | 2 +- .../Modifiers/SalvageDungeonModPrototype.cs | 2 +- .../Expeditions/Modifiers/SalvageLightMod.cs | 2 +- .../Expeditions/Modifiers/SalvageMod.cs | 2 +- .../Modifiers/SalvageTemperatureMod.cs | 2 +- .../Modifiers/SalvageWeatherMod.cs | 2 +- .../Expeditions/SalvageFactionPrototype.cs | 2 +- Content.Shared/Salvage/SharedSalvageSystem.cs | 6 +-- .../Locale/en-US/procedural/expeditions.ftl | 31 +++++++++++++ .../en-US/procedural/salvage-faction.ftl | 2 + .../Procedural/salvage_factions.yml | 2 + .../Prototypes/Procedural/salvage_mods.yml | 43 ++++++++++++------- 15 files changed, 94 insertions(+), 29 deletions(-) create mode 100644 Resources/Locale/en-US/procedural/salvage-faction.ftl diff --git a/Content.Client/Salvage/UI/SalvageExpeditionConsoleBoundUserInterface.cs b/Content.Client/Salvage/UI/SalvageExpeditionConsoleBoundUserInterface.cs index 663bde15b0..fe48b042f3 100644 --- a/Content.Client/Salvage/UI/SalvageExpeditionConsoleBoundUserInterface.cs +++ b/Content.Client/Salvage/UI/SalvageExpeditionConsoleBoundUserInterface.cs @@ -102,12 +102,21 @@ public sealed class SalvageExpeditionConsoleBoundUserInterface : BoundUserInterf offering.AddContent(new Label { - Text = faction, + Text = string.IsNullOrWhiteSpace(Loc.GetString(_protoManager.Index(faction).Description)) + ? LogAndReturnDefaultFactionDescription(faction) + : Loc.GetString(_protoManager.Index(faction).Description), FontColorOverride = StyleNano.NanoGold, HorizontalAlignment = Control.HAlignment.Left, Margin = new Thickness(0f, 0f, 0f, 5f), }); + string LogAndReturnDefaultFactionDescription(string faction) + { + Logger.Error($"Description is null or white space for SalvageFactionPrototype: {faction}"); + return Loc.GetString(_protoManager.Index(faction).ID); + } + + // Duration offering.AddContent(new Label { @@ -132,12 +141,20 @@ public sealed class SalvageExpeditionConsoleBoundUserInterface : BoundUserInterf offering.AddContent(new Label { - Text = Loc.GetString(_protoManager.Index(biome).ID), + Text = string.IsNullOrWhiteSpace(Loc.GetString(_protoManager.Index(biome).Description)) + ? LogAndReturnDefaultBiomDescription(biome) + : Loc.GetString(_protoManager.Index(biome).Description), FontColorOverride = StyleNano.NanoGold, HorizontalAlignment = Control.HAlignment.Left, Margin = new Thickness(0f, 0f, 0f, 5f), }); + string LogAndReturnDefaultBiomDescription(string biome) + { + Logger.Error($"Description is null or white space for SalvageBiomeModPrototype: {biome}"); + return Loc.GetString(_protoManager.Index(biome).ID); + } + // Modifiers offering.AddContent(new Label { diff --git a/Content.Shared/Salvage/Expeditions/Modifiers/ISalvageMod.cs b/Content.Shared/Salvage/Expeditions/Modifiers/ISalvageMod.cs index aa27f83f03..6233b179b3 100644 --- a/Content.Shared/Salvage/Expeditions/Modifiers/ISalvageMod.cs +++ b/Content.Shared/Salvage/Expeditions/Modifiers/ISalvageMod.cs @@ -5,7 +5,7 @@ public interface ISalvageMod /// /// Player-friendly version describing this modifier. /// - string Description { get; } + LocId Description { get; } /// /// Cost for difficulty modifiers. diff --git a/Content.Shared/Salvage/Expeditions/Modifiers/SalvageAirMod.cs b/Content.Shared/Salvage/Expeditions/Modifiers/SalvageAirMod.cs index c9f038e38f..fda08281b0 100644 --- a/Content.Shared/Salvage/Expeditions/Modifiers/SalvageAirMod.cs +++ b/Content.Shared/Salvage/Expeditions/Modifiers/SalvageAirMod.cs @@ -17,7 +17,7 @@ public sealed partial class SalvageAirMod : IPrototype, IBiomeSpecificMod /// [DataField("desc")] - public string Description { get; private set; } = string.Empty; + public LocId Description { get; private set; } = string.Empty; /// [DataField("cost")] diff --git a/Content.Shared/Salvage/Expeditions/Modifiers/SalvageBiomeModPrototype.cs b/Content.Shared/Salvage/Expeditions/Modifiers/SalvageBiomeModPrototype.cs index 1d4efbd18d..3235741f11 100644 --- a/Content.Shared/Salvage/Expeditions/Modifiers/SalvageBiomeModPrototype.cs +++ b/Content.Shared/Salvage/Expeditions/Modifiers/SalvageBiomeModPrototype.cs @@ -12,7 +12,7 @@ public sealed partial class SalvageBiomeModPrototype : IPrototype, ISalvageMod { [IdDataField] public string ID { get; } = default!; - [DataField("desc")] public string Description { get; private set; } = string.Empty; + [DataField("desc")] public LocId Description { get; private set; } = string.Empty; /// /// Cost for difficulty modifiers. diff --git a/Content.Shared/Salvage/Expeditions/Modifiers/SalvageDungeonModPrototype.cs b/Content.Shared/Salvage/Expeditions/Modifiers/SalvageDungeonModPrototype.cs index ee3233c551..713bdf08b3 100644 --- a/Content.Shared/Salvage/Expeditions/Modifiers/SalvageDungeonModPrototype.cs +++ b/Content.Shared/Salvage/Expeditions/Modifiers/SalvageDungeonModPrototype.cs @@ -10,7 +10,7 @@ public sealed partial class SalvageDungeonModPrototype : IPrototype, IBiomeSpeci { [IdDataField] public string ID { get; } = default!; - [DataField("desc")] public string Description { get; private set; } = string.Empty; + [DataField("desc")] public LocId Description { get; private set; } = string.Empty; /// [DataField("cost")] diff --git a/Content.Shared/Salvage/Expeditions/Modifiers/SalvageLightMod.cs b/Content.Shared/Salvage/Expeditions/Modifiers/SalvageLightMod.cs index a7c38b258d..d744d5c308 100644 --- a/Content.Shared/Salvage/Expeditions/Modifiers/SalvageLightMod.cs +++ b/Content.Shared/Salvage/Expeditions/Modifiers/SalvageLightMod.cs @@ -8,7 +8,7 @@ public sealed partial class SalvageLightMod : IPrototype, IBiomeSpecificMod { [IdDataField] public string ID { get; } = default!; - [DataField("desc")] public string Description { get; private set; } = string.Empty; + [DataField("desc")] public LocId Description { get; private set; } = string.Empty; /// [DataField("cost")] diff --git a/Content.Shared/Salvage/Expeditions/Modifiers/SalvageMod.cs b/Content.Shared/Salvage/Expeditions/Modifiers/SalvageMod.cs index 3cc4488684..5226824ed5 100644 --- a/Content.Shared/Salvage/Expeditions/Modifiers/SalvageMod.cs +++ b/Content.Shared/Salvage/Expeditions/Modifiers/SalvageMod.cs @@ -10,7 +10,7 @@ public sealed partial class SalvageMod : IPrototype, ISalvageMod { [IdDataField] public string ID { get; } = default!; - [DataField("desc")] public string Description { get; private set; } = string.Empty; + [DataField("desc")] public LocId Description { get; private set; } = string.Empty; /// /// Cost for difficulty modifiers. diff --git a/Content.Shared/Salvage/Expeditions/Modifiers/SalvageTemperatureMod.cs b/Content.Shared/Salvage/Expeditions/Modifiers/SalvageTemperatureMod.cs index 17e9af038f..e8b7235511 100644 --- a/Content.Shared/Salvage/Expeditions/Modifiers/SalvageTemperatureMod.cs +++ b/Content.Shared/Salvage/Expeditions/Modifiers/SalvageTemperatureMod.cs @@ -8,7 +8,7 @@ public sealed partial class SalvageTemperatureMod : IPrototype, IBiomeSpecificMo { [IdDataField] public string ID { get; } = default!; - [DataField("desc")] public string Description { get; private set; } = string.Empty; + [DataField("desc")] public LocId Description { get; private set; } = string.Empty; /// [DataField("cost")] diff --git a/Content.Shared/Salvage/Expeditions/Modifiers/SalvageWeatherMod.cs b/Content.Shared/Salvage/Expeditions/Modifiers/SalvageWeatherMod.cs index 1629d02b08..fc704d49e4 100644 --- a/Content.Shared/Salvage/Expeditions/Modifiers/SalvageWeatherMod.cs +++ b/Content.Shared/Salvage/Expeditions/Modifiers/SalvageWeatherMod.cs @@ -10,7 +10,7 @@ public sealed partial class SalvageWeatherMod : IPrototype, IBiomeSpecificMod { [IdDataField] public string ID { get; } = default!; - [DataField("desc")] public string Description { get; private set; } = string.Empty; + [DataField("desc")] public LocId Description { get; private set; } = string.Empty; /// [DataField("cost")] diff --git a/Content.Shared/Salvage/Expeditions/SalvageFactionPrototype.cs b/Content.Shared/Salvage/Expeditions/SalvageFactionPrototype.cs index 4c594945f0..71be4f7bd0 100644 --- a/Content.Shared/Salvage/Expeditions/SalvageFactionPrototype.cs +++ b/Content.Shared/Salvage/Expeditions/SalvageFactionPrototype.cs @@ -7,7 +7,7 @@ public sealed partial class SalvageFactionPrototype : IPrototype { [IdDataField] public string ID { get; } = default!; - [DataField("desc")] public string Description { get; private set; } = string.Empty; + [DataField("desc")] public LocId Description { get; private set; } = string.Empty; [ViewVariables(VVAccess.ReadWrite), DataField("entries", required: true)] public List MobGroups = new(); diff --git a/Content.Shared/Salvage/SharedSalvageSystem.cs b/Content.Shared/Salvage/SharedSalvageSystem.cs index 5f5fc875d6..0c56f4f556 100644 --- a/Content.Shared/Salvage/SharedSalvageSystem.cs +++ b/Content.Shared/Salvage/SharedSalvageSystem.cs @@ -55,18 +55,18 @@ public abstract partial class SharedSalvageSystem : EntitySystem if (air.Description != string.Empty) { - mods.Add(air.Description); + mods.Add(Loc.GetString(air.Description)); } // only show the description if there is an atmosphere since wont matter otherwise if (temp.Description != string.Empty && !air.Space) { - mods.Add(temp.Description); + mods.Add(Loc.GetString(temp.Description)); } if (light.Description != string.Empty) { - mods.Add(light.Description); + mods.Add(Loc.GetString(light.Description)); } var duration = TimeSpan.FromSeconds(CfgManager.GetCVar(CCVars.SalvageExpeditionDuration)); diff --git a/Resources/Locale/en-US/procedural/expeditions.ftl b/Resources/Locale/en-US/procedural/expeditions.ftl index b7bbdbce2f..56776e351d 100644 --- a/Resources/Locale/en-US/procedural/expeditions.ftl +++ b/Resources/Locale/en-US/procedural/expeditions.ftl @@ -32,3 +32,34 @@ salvage-expedition-announcement-countdown-seconds = {$duration} seconds remainin salvage-expedition-announcement-dungeon = Dungeon is located {$direction}. salvage-expedition-completed = Expedition is completed. salvage-expedition-reward-description = Mission completion reward + +# Salvage biome mod +salvage-biome-mod-caves = Caves +salvage-biome-mod-grasslands = Grasslands +salvage-biome-mod-snow = Snow +salvage-biome-mod-lava = Lava + +# Salvage mods +salvage-light-mod-daylight = Daylight +salvage-light-mod-evening = Evening +salvage-light-mod-night = Night time + +salvage-temperature-mod-room-temperature = Room temperature +salvage-temperature-mod-hot = Hot +salvage-temperature-mod-high-temperature = High temperature +salvage-temperature-mod-extreme-heat = Extreme heat +salvage-temperature-mod-cold = Cold +salvage-temperature-mod-low-temperature = Low temperature +salvage-temperature-mod-extreme-cold = Extreme cold + +salvage-air-mod-no-atmosphere = No atmosphere +salvage-air-mod-breathable-atmosphere = Breathable atmosphere +salvage-air-mod-dangerous-atmosphere = Dangerous atmosphere +salvage-air-mod-toxic-atmosphere = Toxic atmosphere +salvage-air-mod-volatile-atmosphere = Volatile atmosphere + +salvage-dungeon-mod-lava-brig = Lava Brig +salvage-dungeon-mod-snowy-labs = Snowy labs +salvage-dungeon-mod-experiment = Experiment +salvage-dungeon-mod-haunted = Haunted +salvage-dungeon-mod-mineshaft = Mineshaft diff --git a/Resources/Locale/en-US/procedural/salvage-faction.ftl b/Resources/Locale/en-US/procedural/salvage-faction.ftl new file mode 100644 index 0000000000..d3bed816f6 --- /dev/null +++ b/Resources/Locale/en-US/procedural/salvage-faction.ftl @@ -0,0 +1,2 @@ +salvage-faction-xenos = Xenos +salvage-faction-carps = Carps diff --git a/Resources/Prototypes/Procedural/salvage_factions.yml b/Resources/Prototypes/Procedural/salvage_factions.yml index 847a40ac02..f1e29375aa 100644 --- a/Resources/Prototypes/Procedural/salvage_factions.yml +++ b/Resources/Prototypes/Procedural/salvage_factions.yml @@ -1,5 +1,6 @@ - type: salvageFaction id: Xenos + desc: salvage-faction-xenos entries: - proto: MobXeno - proto: MobXenoDrone @@ -24,6 +25,7 @@ - type: salvageFaction id: Carps + desc: salvage-faction-carps entries: - proto: MobCarpDungeon # These do too much damage for salvage, need nerfs diff --git a/Resources/Prototypes/Procedural/salvage_mods.yml b/Resources/Prototypes/Procedural/salvage_mods.yml index f03c926383..ca64d29a52 100644 --- a/Resources/Prototypes/Procedural/salvage_mods.yml +++ b/Resources/Prototypes/Procedural/salvage_mods.yml @@ -7,19 +7,23 @@ # Biome mods -> at least 1 required - type: salvageBiomeMod id: Caves + desc: salvage-biome-mod-caves biome: Caves - type: salvageBiomeMod id: Grasslands + desc: salvage-biome-mod-grasslands biome: Grasslands - type: salvageBiomeMod id: Snow + desc: salvage-biome-mod-snow cost: 1 biome: Snow - type: salvageBiomeMod id: Lava + desc: salvage-biome-mod-lava cost: 2 biome: Lava @@ -32,36 +36,38 @@ # Light mods -> required - type: salvageLightMod id: Daylight - desc: Daylight + desc: salvage-light-mod-daylight color: "#D8B059" biomes: - Grasslands - type: salvageLightMod id: Lavalight - desc: Daylight + desc: salvage-light-mod-daylight color: "#A34931" biomes: - Lava - type: salvageLightMod id: Evening - desc: Evening + desc: salvage-light-mod-evening color: "#2b3143" - type: salvageLightMod id: Night - desc: Night time + desc: salvage-light-mod-night cost: 1 color: null # Temperatures - type: salvageTemperatureMod id: RoomTemp + desc: salvage-temperature-mod-room-temperature cost: 0 - type: salvageTemperatureMod id: Hot + desc: salvage-temperature-mod-hot cost: 1 temperature: 323.15 # 50C biomes: @@ -72,7 +78,7 @@ - type: salvageTemperatureMod id: Burning - desc: High temperature + desc: salvage-temperature-mod-high-temperature cost: 2 temperature: 423.15 # 200C biomes: @@ -82,7 +88,7 @@ - type: salvageTemperatureMod id: Melting - desc: Extreme heat + desc: salvage-temperature-mod-extreme-heat cost: 4 temperature: 1273.15 # 1000C hot hot hot biomes: @@ -90,6 +96,7 @@ - type: salvageTemperatureMod id: Cold + desc: salvage-temperature-mod-cold cost: 1 temperature: 275.15 # 2C biomes: @@ -100,7 +107,7 @@ - type: salvageTemperatureMod id: Tundra - desc: Low temperature + desc: salvage-temperature-mod-low-temperature cost: 2 temperature: 263.15 # -40C biomes: @@ -109,7 +116,7 @@ - type: salvageTemperatureMod id: Frozen - desc: Extreme cold + desc: salvage-temperature-mod-extreme-cold cost: 4 temperature: 123.15 # -150C biomes: @@ -118,7 +125,7 @@ # Air mixtures - type: salvageAirMod id: Space - desc: No atmosphere + desc: salvage-air-mod-no-atmosphere space: true cost: 2 biomes: @@ -128,6 +135,7 @@ - type: salvageAirMod id: Breathable cost: 0 + desc: salvage-air-mod-breathable-atmosphere gases: - 21.824779 # oxygen - 82.10312 # nitrogen @@ -135,7 +143,7 @@ - type: salvageAirMod id: Sleepy cost: 1 - desc: Dangerous atmosphere + desc: salvage-air-mod-dangerous-atmosphere gases: - 21.824779 # oxygen - 72.10312 # nitrogen @@ -155,7 +163,7 @@ - type: salvageAirMod id: Poisoned cost: 2 - desc: Dangerous atmosphere + desc: salvage-air-mod-dangerous-atmosphere gases: - 21.824779 # oxygen - 77.10312 # nitrogen @@ -170,7 +178,7 @@ - type: salvageAirMod id: Poison cost: 3 - desc: Toxic atmosphere + desc: salvage-air-mod-toxic-atmosphere gases: - 21.824779 # oxygen - 0 @@ -183,7 +191,7 @@ - type: salvageAirMod id: Plasma cost: 4 - desc: Toxic atmosphere + desc: salvage-air-mod-toxic-atmosphere gases: - 0 - 0 @@ -196,7 +204,7 @@ - type: salvageAirMod id: Burnable cost: 5 - desc: Volatile atmosphere + desc: salvage-air-mod-volatile-atmosphere gases: - 21.824779 # oxygen - 0 @@ -220,6 +228,7 @@ # For now just simple 1-dungeon setups - type: salvageDungeonMod id: Experiment + desc: salvage-dungeon-mod-experiment proto: Experiment biomes: #- LowDesert @@ -227,24 +236,28 @@ - type: salvageDungeonMod id: LavaBrig + desc: salvage-dungeon-mod-lava-brig proto: LavaBrig biomes: - Lava - type: salvageDungeonMod id: Mineshaft + desc: salvage-dungeon-mod-mineshaft proto: Mineshaft biomes: - Caves - type: salvageDungeonMod id: SnowyLabs + desc: salvage-dungeon-mod-snowy-labs proto: SnowyLabs biomes: - Snow - + - type: salvageDungeonMod id: Haunted + desc: salvage-dungeon-mod-haunted proto: Haunted biomes: - Caves From ea136838c01eecc25df4d94128492f1b8b17d9c8 Mon Sep 17 00:00:00 2001 From: Cojoke <83733158+Cojoke-dot@users.noreply.github.com> Date: Tue, 30 Jul 2024 09:07:35 -0500 Subject: [PATCH 80/89] Another QSI Fix About Things Being in Places they Should not (#30241) * Another QSI Fix About Things Being in Places they Should not * cleanup --- .../Systems/SwapTeleporterSystem.cs | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) diff --git a/Content.Shared/Teleportation/Systems/SwapTeleporterSystem.cs b/Content.Shared/Teleportation/Systems/SwapTeleporterSystem.cs index 3852f260f7..0fbaefc31b 100644 --- a/Content.Shared/Teleportation/Systems/SwapTeleporterSystem.cs +++ b/Content.Shared/Teleportation/Systems/SwapTeleporterSystem.cs @@ -150,8 +150,11 @@ public sealed class SwapTeleporterSystem : EntitySystem return; } - var (teleEnt, cont) = GetTeleportingEntity((uid, xform)); - var (otherTeleEnt, otherCont) = GetTeleportingEntity((linkedEnt, Transform(linkedEnt))); + var teleEnt = GetTeleportingEntity((uid, xform)); + var otherTeleEnt = GetTeleportingEntity((linkedEnt, Transform(linkedEnt))); + + _container.TryGetOuterContainer(teleEnt, Transform(teleEnt), out var cont); + _container.TryGetOuterContainer(otherTeleEnt, Transform(otherTeleEnt), out var otherCont); if (otherCont != null && !_container.CanInsert(teleEnt, otherCont) || cont != null && !_container.CanInsert(otherTeleEnt, cont)) @@ -195,20 +198,18 @@ public sealed class SwapTeleporterSystem : EntitySystem DestroyLink(linked, user); // the linked one is shown globally } - private (EntityUid, BaseContainer?) GetTeleportingEntity(Entity ent) + private EntityUid GetTeleportingEntity(Entity ent) { var parent = ent.Comp.ParentUid; - if (_container.TryGetOuterContainer(ent, ent, out var container)) - parent = container.Owner; if (HasComp(parent) || HasComp(parent)) - return (ent, container); + return ent; if (!_xformQuery.TryGetComponent(parent, out var parentXform) || parentXform.Anchored) - return (ent, container); + return ent; if (!TryComp(parent, out var body) || body.BodyType == BodyType.Static) - return (ent, container); + return ent; return GetTeleportingEntity((parent, parentXform)); } From 0fddee233d37e9c957750cbb874780798581dbcc Mon Sep 17 00:00:00 2001 From: PJBot Date: Tue, 30 Jul 2024 14:08:41 +0000 Subject: [PATCH 81/89] Automatic changelog update --- Resources/Changelog/Changelog.yml | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 5ca55be22d..a2c320aedc 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: Vasilis - changes: - - message: Removed airtight flaps from the construction menu. - type: Remove - id: 6514 - time: '2024-05-02T14:49:54.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/27619 - author: Lamrr changes: - message: Wine and beer bottles can now be inserted into the booze dispenser. @@ -3784,3 +3777,11 @@ id: 7013 time: '2024-07-30T13:53:44.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/30391 +- author: Cojoke-dot + changes: + - message: QSI now swaps the top most valid container instead of QSI when placed + in an anchored container + type: Fix + id: 7014 + time: '2024-07-30T14:07:35.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/30241 From f501bd500c33f5020d7e0cfe29fddef9587a286f Mon Sep 17 00:00:00 2001 From: Roudenn <149893554+Roudenn@users.noreply.github.com> Date: Tue, 30 Jul 2024 17:26:18 +0300 Subject: [PATCH 82/89] Grappling gun's ReelRate can be changed (#30493) * Grappling gun ReelRate can be changed Moves ReelRate constant from SharedGrapplingGunSystem to GrapplingGunComponent, so it's Reel speed can be changed. * Add coment + remove redudant --- Content.Shared/Weapons/Misc/SharedGrapplingGunSystem.cs | 4 +--- .../Weapons/Ranged/Components/GrapplingGunComponent.cs | 6 ++++++ 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/Content.Shared/Weapons/Misc/SharedGrapplingGunSystem.cs b/Content.Shared/Weapons/Misc/SharedGrapplingGunSystem.cs index 6feffffbe3..75d5300fdb 100644 --- a/Content.Shared/Weapons/Misc/SharedGrapplingGunSystem.cs +++ b/Content.Shared/Weapons/Misc/SharedGrapplingGunSystem.cs @@ -31,8 +31,6 @@ public abstract class SharedGrapplingGunSystem : EntitySystem public const string GrapplingJoint = "grappling"; - public const float ReelRate = 2.5f; - public override void Initialize() { base.Initialize(); @@ -187,7 +185,7 @@ public abstract class SharedGrapplingGunSystem : EntitySystem } // TODO: This should be on engine. - distance.MaxLength = MathF.Max(distance.MinLength, distance.MaxLength - ReelRate * frameTime); + distance.MaxLength = MathF.Max(distance.MinLength, distance.MaxLength - grappling.ReelRate * frameTime); distance.Length = MathF.Min(distance.MaxLength, distance.Length); _physics.WakeBody(joint.BodyAUid); diff --git a/Content.Shared/Weapons/Ranged/Components/GrapplingGunComponent.cs b/Content.Shared/Weapons/Ranged/Components/GrapplingGunComponent.cs index d0af3e8b36..553f0c10f3 100644 --- a/Content.Shared/Weapons/Ranged/Components/GrapplingGunComponent.cs +++ b/Content.Shared/Weapons/Ranged/Components/GrapplingGunComponent.cs @@ -8,6 +8,12 @@ namespace Content.Shared.Weapons.Ranged.Components; [RegisterComponent, NetworkedComponent, AutoGenerateComponentState] public sealed partial class GrapplingGunComponent : Component { + /// + /// Hook's reeling force and speed - the higher the number, the faster the hook rewinds. + /// + [DataField, AutoNetworkedField] + public float ReelRate = 2.5f; + [DataField("jointId"), AutoNetworkedField] public string Joint = string.Empty; From 23b97bd8b5fe9b1762fb1ab4cbb540dd73168aff Mon Sep 17 00:00:00 2001 From: Ed <96445749+TheShuEd@users.noreply.github.com> Date: Tue, 30 Jul 2024 17:41:15 +0300 Subject: [PATCH 83/89] Added diamond into upgraded ore processor (#30499) Update lathe.yml --- Resources/Prototypes/Entities/Structures/Machines/lathe.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/Resources/Prototypes/Entities/Structures/Machines/lathe.yml b/Resources/Prototypes/Entities/Structures/Machines/lathe.yml index 8abcc657cd..b0bf0019b0 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/lathe.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/lathe.yml @@ -1208,6 +1208,7 @@ - IngotGold30 - IngotSilver30 - MaterialBananium10 + - MaterialDiamond - type: entity parent: BaseLathe From 7fefcbc6fb3cfbfb1bb7ba49d58a0f4ab8421181 Mon Sep 17 00:00:00 2001 From: PJBot Date: Tue, 30 Jul 2024 14:42:21 +0000 Subject: [PATCH 84/89] Automatic changelog update --- Resources/Changelog/Changelog.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index a2c320aedc..3763205030 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: Lamrr - changes: - - message: Wine and beer bottles can now be inserted into the booze dispenser. - type: Fix - id: 6515 - time: '2024-05-02T16:17:36.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/27626 - author: deltanedas changes: - message: "Ducky slippers now make you waddle. \U0001F986\U0001F986" @@ -3785,3 +3778,10 @@ id: 7014 time: '2024-07-30T14:07:35.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/30241 +- author: TheShuEd + changes: + - message: industrial ore processor can now process diamonds + type: Fix + id: 7015 + time: '2024-07-30T14:41:15.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/30499 From bea8c1a0b8b9c9915657ecaeafcac8b8eb31ebd7 Mon Sep 17 00:00:00 2001 From: TemporalOroboros Date: Tue, 30 Jul 2024 12:31:55 -0700 Subject: [PATCH 85/89] Relocate TemperatureProtectionComponent (#30437) Moves it from the atmos module to the temperature module where it is actually used. --- .../Components/TemperatureProtectionComponent.cs | 2 +- Content.Server/Temperature/Systems/TemperatureSystem.cs | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) rename Content.Server/{Atmos => Temperature}/Components/TemperatureProtectionComponent.cs (92%) diff --git a/Content.Server/Atmos/Components/TemperatureProtectionComponent.cs b/Content.Server/Temperature/Components/TemperatureProtectionComponent.cs similarity index 92% rename from Content.Server/Atmos/Components/TemperatureProtectionComponent.cs rename to Content.Server/Temperature/Components/TemperatureProtectionComponent.cs index bdee5ff514..437f0f8940 100644 --- a/Content.Server/Atmos/Components/TemperatureProtectionComponent.cs +++ b/Content.Server/Temperature/Components/TemperatureProtectionComponent.cs @@ -1,6 +1,6 @@ using Content.Server.Temperature.Systems; -namespace Content.Server.Atmos.Components; +namespace Content.Server.Temperature.Components; [RegisterComponent] [Access(typeof(TemperatureSystem))] diff --git a/Content.Server/Temperature/Systems/TemperatureSystem.cs b/Content.Server/Temperature/Systems/TemperatureSystem.cs index 23c8cb6783..d33bf6e025 100644 --- a/Content.Server/Temperature/Systems/TemperatureSystem.cs +++ b/Content.Server/Temperature/Systems/TemperatureSystem.cs @@ -1,6 +1,5 @@ using System.Linq; using Content.Server.Administration.Logs; -using Content.Server.Atmos.Components; using Content.Server.Atmos.EntitySystems; using Content.Server.Body.Components; using Content.Server.Temperature.Components; From 50fcde25ddc49cb3d4769d37d1c147189f9e1e4f Mon Sep 17 00:00:00 2001 From: Dvir <39403717+dvir001@users.noreply.github.com> Date: Wed, 31 Jul 2024 02:08:54 +0300 Subject: [PATCH 86/89] Fix Viper yaml (#30513) Update pistols.yml --- .../Entities/Objects/Weapons/Guns/Pistols/pistols.yml | 3 --- 1 file changed, 3 deletions(-) diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Pistols/pistols.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Pistols/pistols.yml index e14abcc9d1..07d59aadfa 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Pistols/pistols.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Pistols/pistols.yml @@ -76,9 +76,6 @@ components: - type: Sprite sprite: Objects/Weapons/Guns/Pistols/viper.rsi - availableModes: - - FullAuto - - SemiAuto - type: ItemSlots slots: gun_magazine: From 524dad566b4c1b8b7652f37d0e1b554fbf8631b9 Mon Sep 17 00:00:00 2001 From: Pieter-Jan Briers Date: Wed, 31 Jul 2024 02:14:23 +0200 Subject: [PATCH 87/89] Rename CLF3 to "chlorine trifluoride" (#30510) Other chemicals like sodium hydroxide are written in full too, why wouldn't ClF3 be. --- Resources/Locale/en-US/reagents/meta/pyrotechnic.ftl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Resources/Locale/en-US/reagents/meta/pyrotechnic.ftl b/Resources/Locale/en-US/reagents/meta/pyrotechnic.ftl index 87ebe38e21..07bb47678f 100644 --- a/Resources/Locale/en-US/reagents/meta/pyrotechnic.ftl +++ b/Resources/Locale/en-US/reagents/meta/pyrotechnic.ftl @@ -7,7 +7,7 @@ reagent-desc-napalm = It's just a little flammable. reagent-name-phlogiston = phlogiston reagent-desc-phlogiston = Catches you on fire and makes you ignite. -reagent-name-chlorine-trifluoride = CLF3 +reagent-name-chlorine-trifluoride = chlorine trifluoride reagent-desc-chlorine-trifluoride = You really, REALLY don't want to get this shit anywhere near you. reagent-name-foaming-agent = foaming agent From 0ceb99df1ce435bf238f8fdbb4464e6c3b2d6446 Mon Sep 17 00:00:00 2001 From: slarticodefast <161409025+slarticodefast@users.noreply.github.com> Date: Wed, 31 Jul 2024 02:14:49 +0200 Subject: [PATCH 88/89] Fix singularity overlay mouse position correction when zooming (#30509) fix singularity overlay mouse position correction when zooming --- Content.Client/Singularity/SingularityOverlay.cs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Content.Client/Singularity/SingularityOverlay.cs b/Content.Client/Singularity/SingularityOverlay.cs index c7c6aa2b5b..e71b6e96b8 100644 --- a/Content.Client/Singularity/SingularityOverlay.cs +++ b/Content.Client/Singularity/SingularityOverlay.cs @@ -100,6 +100,8 @@ namespace Content.Client.Singularity /// private void OnProjectFromScreenToMap(ref PixelToMapEvent args) { // Mostly copypasta from the singularity shader. + if (args.Viewport.Eye == null) + return; var maxDistance = MaxDistance * EyeManager.PixelsPerMeter; var finalCoords = args.VisiblePosition; @@ -112,10 +114,11 @@ namespace Content.Client.Singularity // and in local space 'Y' is measured in pixels from the top of the viewport. // As a minor optimization the locations of the singularities are transformed into fragment space in BeforeDraw so the shader doesn't need to. // We need to undo that here or this will transform the cursor position as if the singularities were mirrored vertically relative to the center of the viewport. + var localPosition = _positions[i]; localPosition.Y = args.Viewport.Size.Y - localPosition.Y; var delta = args.VisiblePosition - localPosition; - var distance = (delta / args.Viewport.RenderScale).Length(); + var distance = (delta / (args.Viewport.RenderScale * args.Viewport.Eye.Scale)).Length(); var deformation = _intensities[i] / MathF.Pow(distance, _falloffPowers[i]); From 61e87cb43aa4be57c19c1f7766227a90339011e4 Mon Sep 17 00:00:00 2001 From: PJBot Date: Wed, 31 Jul 2024 00:15:55 +0000 Subject: [PATCH 89/89] Automatic changelog update --- Resources/Changelog/Changelog.yml | 30 +++++++++++++++--------------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 3763205030..13464e833d 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,19 +1,4 @@ Entries: -- author: deltanedas - changes: - - message: "Ducky slippers now make you waddle. \U0001F986\U0001F986" - type: Tweak - id: 6516 - time: '2024-05-02T17:09:38.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/27628 -- author: ElectroJr - changes: - - message: Fixed various interactions not prioritizing opening a UI. No more trying - to eat mission critical faxes. - type: Fix - id: 6517 - time: '2024-05-02T23:37:21.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/27631 - author: Plykiya changes: - message: Blast grenades have had their manufacturing cost tripled. @@ -3785,3 +3770,18 @@ id: 7015 time: '2024-07-30T14:41:15.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/30499 +- author: PJB3005 + changes: + - message: CLF3 is now called "chlorine trifluoride" + type: Tweak + id: 7016 + time: '2024-07-31T00:14:23.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/30510 +- author: slarticodefast + changes: + - message: Fixed the mouse position when it is over a singularity distortion effect + while zoomed in or out. + type: Fix + id: 7017 + time: '2024-07-31T00:14:49.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/30509